/* 
    INCOM TELECOME - OFFICIAL COLORS & PREMIUM LAYOUT
    Brand Colors: Cyan-Blue (#28AAE1) & Lime-Green (#A0C922)
*/

:root {
    --brand-blue: #28AAE1;
    --brand-green: #A0C922;
    --dark-bg: #04080F;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --white: #F8F9FA;
    --text-dim: #A8B2C1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
}

.text-center { text-align: center; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(4, 8, 15, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px; /* Logo is important */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('im/hero-bg.png') center/cover no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--dark-bg) 0%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(160, 201, 34, 0.15);
    border: 1px solid var(--brand-green);
    color: var(--brand-green);
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 25px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.gradient-brand {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 45px;
    max-width: 600px;
}

.btn {
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
}

.btn-primary { background: var(--brand-blue); color: #000; }
.btn-primary:hover { background: var(--brand-green); transform: translateY(-5px); }

.btn-secondary { background: transparent; color: white; border: 1px solid var(--border); margin-left: 20px; }
.btn-secondary:hover { background: var(--card-bg); }

.brand-strip {
    margin-top: 70px;
    display: flex;
    gap: 40px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--brand-green);
    opacity: 0.6;
}

/* Sections General */
section { padding: 120px 0; }
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.highlight { color: var(--brand-blue); }

/* About */
.section-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 20px; }

.experience-card {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--brand-green);
    padding: 30px;
    border-radius: 12px;
    color: #000;
    text-align: center;
}

.experience-card h3 { font-size: 2.2rem; font-weight: 900; }
.experience-card p { font-weight: 700; font-size: 0.8rem; }

.verbatim { color: var(--text-dim); margin-bottom: 30px; font-size: 1.1rem; }

/* Products Showcase */
.products-showcase { background: #060B14; }
.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.p-card {
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.4s;
}

.p-card:hover { border-color: var(--brand-green); transform: translateY(-10px); }
.p-card i { font-size: 3rem; color: var(--brand-blue); margin-bottom: 30px; }

/* Services */
.service-list-verbatim { margin-top: 30px; }
.service-list-verbatim li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-list-verbatim i { color: var(--brand-green); }
.rounded-30 { border-radius: 30px; width: 100%; }

/* Contact Section */
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
}

.contact-flex { display: grid; grid-template-columns: 1fr 1fr; }
.contact-details { padding: 60px; }
.info-box { margin-top: 40px; }
.info-item { display: flex; gap: 20px; margin-bottom: 35px; }
.info-item i { color: var(--brand-blue); font-size: 1.5rem; margin-top: 5px; }

/* Direct Contacts Styling */
.direct-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.contact-person {
    background: rgba(40, 170, 225, 0.05);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 12px;
}

.contact-person h4 {
    color: var(--brand-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-person p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-person i {
    font-size: 0.8rem;
    color: var(--brand-green);
    width: 15px;
}
.quick-form { margin-top: 40px; }
.quick-form input, .quick-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
}
.quick-form input:focus, .quick-form textarea:focus { border-color: var(--brand-blue); outline: none; }
.quick-form .btn { width: 100%; cursor: pointer; }

/* Footer */
.main-footer { padding: 40px 0; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-dim); }

/* Responsive */
@media (max-width: 992px) {
    .section-grid, .contact-flex { grid-template-columns: 1fr; }
    h1 { font-size: 3rem; }
    .product-cards { grid-template-columns: 1fr; }
    .hero { height: auto; padding: 150px 0 100px; }
    .nav-links { display: none; }
}
