/* --- Import Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* --- V2.0 Color Palette & Design Tokens --- */
:root {
    --bg-light: #f0f4f8; /* Light, clean background */
    --bg-dark-teal: #0d2c3b; /* Dark, rich teal for footer */
    --primary-accent: #ff4757; /* Vibrant red/pink for buttons */
    --text-dark: #192a32;
    --text-light: #ffffff;
    --container-bg: #ffffff;
    --border-radius-md: 12px;
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* --- Global Reset & Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
}
.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #55666f;
}

p {
    margin-bottom: 15px;
    color: #55666f;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* --- Full-Width Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo img {
    height: 45px;
}
.nav-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}
.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent);
    transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-contact-btn {
    background-color: var(--primary-accent);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.nav-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}
.nav-contact-btn i { margin-left: 8px; }
.nav-toggle { display: none; }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.video-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
}
.video-background video {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: rgba(10, 20, 30, 0.6);
}
.hero-content { z-index: 2; }
.hero-content h1 {
    font-size: 3.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-button {
    display: inline-block;
    background: var(--primary-accent);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.4);
}
.cta-button:hover {
    background: var(--text-light);
    color: var(--primary-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
}

/* --- About Section Styling --- */
#about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.why-choose-list { list-style: none; padding: 0; }
.why-choose-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.why-choose-list li::before {
    content: '?';
    position: absolute;
    left: 0; top: 0;
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 1.2rem;
}
.why-choose-list li strong { color: var(--text-dark); }

/* --- Services Section Styling --- */
#services {
    background-color: #e9eef2;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--container-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.service-card h3 { margin-bottom: 20px; }
.service-card ul { list-style: none; padding-left: 0; }
.service-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.service-card li::before {
    content: '»';
    position: absolute;
    left: 0; top: -2px;
    color: var(--primary-accent);
    font-weight: 600;
}

/* --- Networking Section Styling --- */
.networking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.infra-card {
    background: var(--container-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.infra-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

/* --- AMC Section Styling --- */
#amc {
    background-color: #e9eef2;
}
.amc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.amc-card {
    background: var(--container-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.amc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.amc-card h3 { font-size: 1.5rem; color: var(--text-dark); }
.amc-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin: 10px 0;
}
.amc-card .price span { font-size: 1rem; color: #55666f; }
.amc-card .discount-info {
    font-size: 0.9rem;
    color: #55666f;
    font-style: italic;
    margin-top: 15px;
}

/* --- NEW: Offers CTA Section Styling --- */
.offers-cta {
    background-color: var(--container-bg);
    text-align: center;
    padding: 80px 20px;
}
.offers-icon {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
}
.offers-cta h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}
.offers-cta p {
    font-size: 1.1rem;
    color: #55666f;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* --- Contact Section Styling --- */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 50px;
}
.contact-form-container {
    background: var(--container-bg);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}
.contact-form-container h3 { font-size: 1.8rem; }

/* MODIFIED: Real iframe style */
.contact-form-container iframe {
    width: 100%;
    border-radius: var(--border-radius-md);
    border: 1px solid #e0e0e0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.contact-item {
    background: var(--container-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.contact-icon {
    font-size: 2rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
}
.contact-item a {
    color: var(--primary-accent);
    font-weight: 500;
    text-decoration: none;
}

/* MODIFIED: Real map style */
.map-container {
    margin-top: 50px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    line-height: 0; /* Fixes gap under iframe */
}
.map-container iframe {
    width: 100%;
    border: 0;
}

/* --- NEW: Enhanced Footer Styling --- */
.footer {
    background-color: var(--bg-dark-teal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 20px 0;
}
.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    /* 4-column layout */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Column 1: About */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}
.footer-logo img { height: 45px; }
.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
}
.footer-slogan {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}
.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}
.social-links a:hover { color: var(--primary-accent); }

/* Column 2 & 3: Links */
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--text-light); }

/* Column 4: Contact */
.footer-col address { font-style: normal; }
.footer-col address p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-col address i {
    color: var(--primary-accent);
    margin-top: 5px;
}
.footer-col address a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.footer-col address a:hover { color: var(--text-light); }


/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1100px;
    margin: 0 auto;
}
.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}
.footer-back-to-top {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.footer-back-to-top:hover { color: var(--text-light); }
.footer-back-to-top i { margin-left: 8px; }


/* --- Responsive (Mobile) --- */
@media(max-width: 992px) {
    .section-title { font-size: 2.2rem; }
    #about .about-content { grid-template-columns: 1fr; }
    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-info-grid { margin-top: 40px; }
    
    .nav-links {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 76px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        background: var(--container-bg);
        box-shadow: var(--shadow-md);
        transition: right 0.5s ease-in-out;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; }
    
    .nav-contact-btn { display: none; }
    .nav-toggle { display: block; font-size: 1.8rem; cursor: pointer; color: var(--text-dark); }
}
@media(max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.2rem; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-col { text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-col address p { justify-content: center; }
    .social-links { margin-bottom: 30px; }
    
    .footer-bottom { justify-content: center; text-align: center; gap: 15px;}
    .footer-back-to-top { margin: auto; }
}