/* ========== BASE STYLES ========== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --light-gray: #e2e8f0;
    --danger-color: #ef4444;
    --success-color: #10b981;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 30px rgba(0,0,0,0.12);
    --border-radius: 12px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2);
}

.btn-accent:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(245, 158, 11, 0.3);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.25rem;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 1.25rem auto 0;
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

/* ========== UTILITY CLASSES ========== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* ========== COMPONENTS ========== */
/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.announcement-bar:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.announcement-bar p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.announcement-bar i {
    color: var(--accent-color);
}

/* Header */
.main-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.85);
}

.header-scrolled {
    box-shadow: var(--shadow-md);
}

.logo-container {
    padding: 1rem 0;
    transition: var(--transition);
}

.logo {
    transition: var(--transition);
    height: 40px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu li a.active,
.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a.active:after,
.nav-menu li a:hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

.nav-cta .btn-primary {
    padding: 0.75rem 1.5rem;
    margin-left: 0.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    z-index: 1001;
    position: relative;
    width: 48px;
    height: 48px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-color);
    margin: 5px auto;
    transition: var(--transition);
    transform-origin: center;
}

/* Mobile menu active state */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #1a237e, #283593);
}

/* Animated background gradient */
.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        45deg,
        rgba(37, 99, 235, 0.8) 0%,
        rgba(245, 158, 11, 0.6) 20%,
        rgba(16, 185, 129, 0.4) 40%,
        rgba(37, 99, 235, 0.8) 60%,
        rgba(245, 158, 11, 0.6) 80%,
        rgba(16, 185, 129, 0.4) 100%
    );
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
    z-index: 1;
}

@keyframes gradientFlow {
    0% { transform: translateX(-50%) translateY(-50%); }
    50% { transform: translateX(0%) translateY(0%); }
    100% { transform: translateX(-50%) translateY(-50%); }
}

/* Data particles animation */
.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><circle cx="1" cy="1" r="0.5" fill="white" opacity="0.1"/></svg>');
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
    color: white; /* Added this line to make text white */
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Speed test widget */
.speed-test-widget {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.speed-test-result {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.speed-test-box {
    flex: 1;
    max-width: 200px;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.speed-test-box:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.speed-value {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-primary);
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.speed-unit {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-left: 0.25rem;
}

.speed-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.speed-test-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.speed-test-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.speed-test-btn:hover:before {
    left: 100%;
}

/* CTA buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta .btn {
    min-width: 220px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

.hero-cta .btn i {
    margin-right: 0.5rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: white;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-indicator:hover i {
    opacity: 1;
    transform: translateY(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .speed-test-result {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .speed-test-box {
        width: 100%;
        max-width: 180px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .speed-test-widget {
        padding: 1.5rem;
    }
    
    .speed-value {
        font-size: 2.5rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}

/* ========== TRUST INDICATORS BAR ========== */
.trust-indicators {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.trust-indicators:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.trust-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-item:hover:before {
    width: 100%;
    opacity: 0.1;
}

.trust-item i {
    font-size: 1.75rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    z-index: 2;
    transition: var(--transition);
}

.trust-item:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.trust-item span {
    font-weight: 600;
    color: var(--dark-color);
    z-index: 2;
    transition: var(--transition);
}

.trust-item:hover span {
    color: var(--primary-dark);
}

/* Animated background elements */
.trust-indicators:after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.5rem 1rem;
    }
    
    .trust-item:before {
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-item {
        flex-direction: row;
        text-align: left;
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--light-color);
    position: relative;
}

.services-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}
/* ========== COVERAGE MAP SECTION ========== */
.coverage-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.coverage-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%232563eb" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.1"/></svg>');
    background-size: 40px 40px;
    pointer-events: none;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-title p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.coverage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.coverage-map {
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--light-gray);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.coverage-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    color: var(--gray-color);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.map-placeholder p {
    font-size: 1.1rem;
}

.coverage-check {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.coverage-check:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.coverage-check h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

#coverageCheckForm {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
}

.form-group input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group button {
    padding: 0 1.5rem;
    border-radius: var(--border-radius);
}

.coverage-result {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    margin-bottom: 2rem;
    align-items: center;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.result-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.result-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.coverage-notify {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--light-gray);
}

.coverage-notify p {
    margin-bottom: 0.5rem;
    color: var(--gray-color);
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover i {
    transform: scale(1.2);
}

/* Dynamic States */
.coverage-result.available {
    background: rgba(16, 185, 129, 0.05);
    border-left-color: var(--success-color);
}

.coverage-result.available .result-icon i {
    color: var(--success-color);
}

.coverage-result.unavailable {
    background: rgba(239, 68, 68, 0.05);
    border-left-color: var(--danger-color);
}

.coverage-result.unavailable .result-icon i {
    color: var(--danger-color);
}

.coverage-map {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    z-index: 1;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2563eb;
    opacity: 0.5;
}

.map-placeholder p {
    font-size: 1.1rem;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .coverage-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .coverage-container {
        grid-template-columns: 1fr;
    }
    
    .coverage-map {
        height: 400px;
    }
    
    .coverage-check {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .form-group {
        flex-direction: column;
    }
    
    .form-group button {
        width: 100%;
        padding: 1rem;
    }
    
    .coverage-result {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* ========== ISOLATED DYNAMIC PROMO BANNER ========== */
.promo-banner {
    /* Base styles */
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    isolation: isolate; /* Critical for containment */
}

/* Scoped animated background */
.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15) 0%, transparent 30%);
    animation: promo-float 15s infinite linear;
    z-index: -1;
}

@keyframes promo-float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-5%, -5%) rotate(5deg); }
    50% { transform: translate(5%, -10%) rotate(-5deg); }
    75% { transform: translate(-5%, 5%) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Scoped glitter effect */
.promo-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="2" height="2" x="9" y="9" fill="white" opacity="0.3"/></svg>');
    background-size: 20px 20px;
    animation: promo-sparkle 2s linear infinite;
    z-index: -1;
}

@keyframes promo-sparkle {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

/* Scoped container - now specific to promo-banner */
.promo-banner > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

/* Scoped content */
.promo-banner .promo-content {
    flex: 1;
    min-width: 300px;
    position: relative;
}

/* Scoped badge */
.promo-banner .promo-badge {
    position: absolute;
    top: -1.5rem;
    left: 0;
    background: #f59e0b;
    color: #1e293b;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    animation: promo-pulse 2s infinite;
}

@keyframes promo-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Scoped heading - now more specific */
.promo-banner .promo-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    background: linear-gradient(to right, white, #e0e7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: promo-textGlow 3s ease-in-out infinite alternate;
}

@keyframes promo-textGlow {
    from { text-shadow: 0 0 5px rgba(255,255,255,0.3); }
    to { text-shadow: 0 0 15px rgba(255,255,255,0.6); }
}

/* Scoped text */
.promo-banner .promo-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Scoped CTA */
.promo-banner .promo-cta {
    flex-shrink: 0;
}

/* Scoped button - now specific to promo-banner */
.promo-banner .btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(to right, #f59e0b, #f97316);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.promo-banner .btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.promo-banner .btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.promo-banner .btn-accent:hover::before {
    left: 100%;
}

.promo-banner .btn-accent i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.promo-banner .btn-accent:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Responsive Design - now properly scoped */
@media (max-width: 768px) {
    .promo-banner > .container {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-banner .promo-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .promo-banner .promo-content {
        text-align: center;
    }
    
    .promo-banner .promo-content p {
        margin: 0 auto;
    }
    
    .promo-banner .btn-accent {
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 2.5rem 0;
    }
    
    .promo-banner .promo-content h2 {
        font-size: 1.8rem;
    }
    
    .promo-banner .promo-content p {
        font-size: 1rem;
    }
}
/* ========== MODERN TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%232563eb" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-title p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.testimonial-slide {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin: 0 1rem;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.9;
    transform: scale(0.95);
}

.testimonial-slide.slick-current {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.testimonial-slide::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 5rem;
    font-family: serif;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
    z-index: 0;
}

.testimonial-slide p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--dark-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-slide:hover .testimonial-author img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: normal;
    margin-bottom: 0;
}

/* Slider Navigation */
.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    list-style: none;
    gap: 0.5rem;
}

.slick-dots button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots .slick-active button {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scale(1.2);
}

/* Arrows */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slick-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-slide {
        padding: 2.5rem;
    }
    
    .slick-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slick-prev {
        left: -15px;
    }
    
    .slick-next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonial-slide {
        padding: 2rem;
        margin: 0 0.5rem;
    }
    
    .testimonial-slide p {
        font-size: 1rem;
    }
    
    .testimonial-author img {
        width: 60px;
        height: 60px;
    }
    
    .slick-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .slick-dots {
        margin-top: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Animation for testimonials */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slick-active .testimonial-slide {
    animation: fadeInSlide 0.6s ease-out;
}
/* Slider Navigation */
.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    list-style: none;
    gap: 0.5rem;
}

.slick-dots button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slick-dots .slick-active button {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ========== MODERN INSTALLATION GALLERY ========== */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%232563eb" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.05"/></svg>');
    pointer-events: none;
}

.gallery-section .section-title h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gallery-section .section-title p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

.gallery-section .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.gallery-section .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.gallery-section .btn-secondary i {
    transition: transform 0.3s ease;
}

.gallery-section .btn-secondary:hover i {
    transform: scale(1.2);
}

/* Floating animation for gallery items */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: floatIn 0.6s ease-out forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-caption {
        padding: 1.5rem;
    }
    
    .gallery-caption h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .gallery-section .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}


/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0 0;
    position: relative;
}

.main-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-size: 1.25rem;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--light-gray);
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

.copyright p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: var(--light-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    font-size: 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.whatsapp-float a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition);
}

.whatsapp-float a:hover:before {
    transform: scale(1.5);
    opacity: 0;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* ========== PAGE SPECIFIC STYLES ========== */
/* Packages Page */
.packages-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/packages-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-plans {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.plan-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.plan-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.plan-card.popular {
    border: 2px solid var(--accent-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.popular:before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.plan-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--dark-color);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
    margin-top: 0.5rem;
}

.plan-card .features {
    margin: 2rem 0;
    text-align: left;
}

.plan-card .features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.plan-card .features li:before {
    content: '\2713';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.plan-comparison {
    padding: 3rem 0 5rem;
    background-color: white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    font-weight: 500;
    width: 30%;
}

.comparison-table .feature-value {
    text-align: center;
}

.comparison-table .fa-check {
    color: var(--success-color);
}

.comparison-table .fa-times {
    color: var(--danger-color);
}

/* How We Work Page */
.how-we-work-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/process-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.process-steps {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.step-content {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    flex-grow: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -3rem;
    width: 2px;
    background-color: var(--light-gray);
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/contact-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.contact-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-info-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Case Study Page */
.case-study-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/case-study-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.case-studies {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.case-study-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.case-study-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-content {
    padding: 1.75rem;
}

.case-study-content .meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-color);
    flex-wrap: wrap;
}

.case-study-content .meta i {
    color: var(--primary-color);
}

.case-study-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.case-study-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Connect Page */
.connect-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/connect-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.connect-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-top: -3rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group .required {
    color: var(--danger-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Login Page */
.login-section {
    display: flex;
    min-height: 80vh;
    align-items: center;
    background-color: var(--light-color);
}

.login-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header img {
    width: 150px;
    margin-bottom: 1.5rem;
}

.login-header h1 {
    font-size: 1.75rem;
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
}

.form-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        padding: 8rem 0;
    }
    
    .services-grid,
    .gallery-grid,
    .footer-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1000;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
    }
    
    .nav-cta {
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    /* Hero Section */
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    /* Steps */
    .step {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step:not(:last-child):after {
        left: 30px;
        top: 60px;
        bottom: -1.5rem;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Cards */
    .service-card,
    .plan-card,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    /* Forms */
    .contact-form,
    .connect-form,
    .login-container {
        padding: 1.5rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Back to Top */
    #backToTop {
        bottom: 4rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}
/* ========== PACKAGES PAGE STYLES ========== */
.packages-page {
    background-color: #f8fafc;
    color: #1e293b;
}

/* Packages Hero Section */
.packages-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.packages-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1" stroke-dasharray="5,5"/></svg>');
    background-size: 40px 40px;
}

.packages-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.packages-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Billing Toggle */
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-container span {
    font-weight: 500;
    font-size: 0.95rem;
}

.toggle-container small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background: linear-gradient(90deg, #38b6ff, #ec4899);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 5rem 0;
    position: relative;
}

.pricing-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%232563eb" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.05"/></svg>');
    background-size: 40px 40px;
    pointer-events: none;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.plan-card.popular {
    border: 2px solid #ec4899;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
}

.plan-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(90deg, #38b6ff, #ec4899);
    color: white;
    padding: 0.25rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #1e293b;
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
    margin-top: 0.5rem;
    margin-left: 0.25rem;
}

.plan-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    min-height: 3em;
}

.features {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
}

.plan-card .btn-primary,
.plan-card .btn-secondary {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.hidden {
    display: none;
}

/* Plan Comparison Section */
.plan-comparison {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-title p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background-color: #2563eb;
    color: white;
    font-weight: 500;
    text-align: center;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    font-weight: 500;
    width: 25%;
}

.comparison-table td {
    text-align: center;
}

.comparison-table .fa-check {
    color: #10b981;
}

.comparison-table .fa-times {
    color: #ef4444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .plan-cards {
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .pricing-plans,
    .plan-comparison {
        padding: 4rem 0;
    }
    
    .plan-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .packages-hero {
        padding: 4rem 0 3rem;
    }
    
    .plan-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .toggle-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}
/* Contact Page Styles */
.contact-page {
    background: #f9fbfd;
    color: #2d3748;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.7);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-info-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-info-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.contact-info-card .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-info-card .btn-secondary:hover {
    background: rgba(79, 70, 229, 0.2);
    text-decoration: none;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border: 1px solid rgba(226, 232, 240, 0.7);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-form-container p {
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #334155;
}

.contact-form .required {
    color: #ef4444;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #a5b4fc;
    box-shadow: 0 0 0 3px rgba(199, 210, 254, 0.5);
    background: white;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .form-submit {
    text-align: right;
}

.contact-form .btn-primary {
    background: #4f46e5;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-form .btn-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

/* Alerts */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.alert i {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border-left: 4px solid #ef4444;
}

/* Map Container */
.map-container {
    margin: 4rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    height: 400px;
    background: #e2e8f0;
    position: relative;
}

#map {
    height: 100%;
    width: 100%;
}

.map-container::before {
    content: 'Loading map...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #64748b;
    z-index: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.25rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 4rem 0 3rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
}
/* Case Study Hero Section */
.case-study-hero {
    position: relative;
    padding: 8rem 0 6rem;
    color: white;
    text-align: center;
    overflow: hidden;
    background-color: #0a2540; /* Fallback color */
}

.case-study-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), 
                url('../images/beautiful-optical-fiber-detail.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.case-study-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.case-study-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.case-study-hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .case-study-hero {
        padding: 6rem 0 4rem;
    }
    
    .case-study-hero h1 {
        font-size: 2.8rem;
    }
    
    .case-study-hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .case-study-hero {
        padding: 5rem 0 3rem;
    }
    
    .case-study-hero h1 {
        font-size: 2.2rem;
    }
    
    .case-study-hero p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .case-study-hero::before {
        background-attachment: scroll; /* Disable parallax on mobile */
    }
}

/* For ultra-wide screens */
@media (min-width: 2000px) {
    .case-study-hero::before {
        background-size: 100% auto;
    }
}
/* Connect Page Styles */
.connect-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2d3748;
    line-height: 1.6;
    background: #f8fafc;
}

/* Hero Section */
.connect-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.connect-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
    z-index: 1;
}

.connect-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.connect-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.connect-hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Form Section */
.connect-form-section {
    padding: 4rem 0;
}

.connect-form-section .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.connect-form {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border: 1px solid rgba(226, 232, 240, 0.7);
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.connect-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.form-intro {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #334155;
}

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a5b4fc;
    box-shadow: 0 0 0 3px rgba(199, 210, 254, 0.5);
    background: white;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
}

/* Checkbox Styling */
.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-weight: normal;
    font-size: 0.95rem;
}

.form-checkbox a {
    color: #4f46e5;
    text-decoration: underline;
}

/* Submit Button */
.form-submit {
    margin-top: 2rem;
}

.btn-primary {
    background: #4f46e5;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}

.btn-primary i {
    margin-left: 0.5rem;
}

/* Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border: 1px solid rgba(226, 232, 240, 0.7);
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.sidebar-card h3 i {
    margin-right: 0.75rem;
    color: #4f46e5;
}

.sidebar-card ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card ol li {
    margin-bottom: 0.75rem;
    color: #475569;
}

.sidebar-card p {
    color: #475569;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
    width: 100%;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(79, 70, 229, 0.2);
    text-decoration: none;
}

.btn-secondary i {
    margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .connect-hero h1 {
        font-size: 2.8rem;
    }
    
    .connect-hero p {
        font-size: 1.3rem;
    }
    
    .connect-form-section .container {
        grid-template-columns: 1fr;
    }
    
    .form-sidebar {
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .connect-hero {
        padding: 6rem 0 4rem;
    }
    
    .connect-hero h1 {
        font-size: 2.2rem;
    }
    
    .connect-hero p {
        font-size: 1.1rem;
    }
    
    .connect-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .connect-hero {
        padding: 5rem 0 3rem;
    }
    
    .connect-hero h1 {
        font-size: 2rem;
    }
    
    .connect-form {
        padding: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
}

/* Date Picker Customization */
input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

/* Select Arrow Customization */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}