/* ============================================
   NetGarden - Premium Fiber Broadband Website
   Modern, Responsive Design
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Scheme - Orange, Red, Green Gradients */
    --primary-orange: #FF6B35;
    --primary-red: #E63946;
    --primary-green: #06A77D;
    --orange-dark: #E85A2B;
    --orange-light: #FF8C5A;
    --red-dark: #C1121F;
    --red-light: #F77F7F;
    --green-dark: #048A6B;
    --green-light: #2EC4B6;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6B7280;
    --dark-gray: #1F2937;
    --text-dark: #111827;
    --text-light: #6B7280;
    --success: #10B981;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #E63946 50%, #06A77D 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(230, 57, 70, 0.9) 50%, rgba(6, 167, 125, 0.9) 100%);
    --gradient-orange-red: linear-gradient(135deg, #FF6B35 0%, #E63946 100%);
    --gradient-red-green: linear-gradient(135deg, #E63946 0%, #06A77D 100%);
    --gradient-orange-green: linear-gradient(135deg, #FF6B35 0%, #06A77D 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(230, 57, 70, 0.1) 50%, rgba(6, 167, 125, 0.1) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-gradient: 0 10px 30px rgba(255, 107, 53, 0.2), 0 4px 12px rgba(230, 57, 70, 0.15);
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Premium Modern Box Design */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 20px;
    z-index: 1000;
    transition: box-shadow 0.2s ease;
    margin: 0 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.navbar.scrolled {
    top: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    transition: box-shadow 0.2s ease, color 0.2s ease;
    position: relative;
    display: block;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-menu a.active {
    color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.5);
}

.btn-portal {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: box-shadow 0.2s ease, color 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-portal::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: left 0.5s ease;
}

.btn-portal:hover::before {
    left: 100%;
}

.btn-portal:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(230, 57, 70, 0.15) 100%);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: box-shadow 0.2s ease, color 0.2s ease;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg-corporate.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero-background::before {
    display: none;
    /* Remove the previous gradient overlay pattern */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.2) 100%);
    /* Increased transparency for crystal clear view */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    color: var(--white);
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #FF6B35 0%, #E63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-orange);
}

.btn-primary:hover {
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Sections */
.intro-section,
.mission-section {
    padding: 5rem 0;
    background: var(--white);
}

.intro-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.intro-image {
    width: 100%;
    height: auto;
    display: block;
}

.intro-content,
.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2,
.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-text,
.mission-statement {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.mission-section {
    background: var(--light-gray);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.2s ease;
    text-align: center;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
}

.feature-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 50%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.use-cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.use-case-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
    position: relative;
}

.use-case-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.use-case-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.use-case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.use-case-overlay {
    display: none;
}

.use-case-content {
    padding: 1.5rem;
    text-align: left;
}

.use-case-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.use-case-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.use-case-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.use-case-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-features li {
    color: var(--text-dark);
    font-size: 0.85rem;
    padding: 0.4rem 0;
    line-height: 1.5;
}

/* Speed Test Section */
.speed-test-section {
    padding: 5rem 0;
    background: var(--white);
}

.speed-test-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.speed-test-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.speed-test-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.speed-results {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.speed-metric {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.speed-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.speed-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.speed-unit {
    font-size: 1rem;
    color: var(--text-light);
}

/* Coverage Section */
.coverage-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.coverage-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.coverage-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.coverage-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.coverage-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.coverage-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.coverage-result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.coverage-result.success {
    background: #D1FAE5;
    color: #065F46;
}

.coverage-result.error {
    background: #FEE2E2;
    color: #991B1B;
}

/* Service Areas Section */
.service-areas-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(230, 57, 70, 0.03) 50%, rgba(6, 167, 125, 0.03) 100%);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-area-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.service-area-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-area-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.service-area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-area-content {
    padding: 1.25rem;
    text-align: center;
}

.service-area-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-area-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pin-codes {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pin-code-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.coverage-info-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(230, 57, 70, 0.1) 50%, rgba(6, 167, 125, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-orange);
}

.coverage-info-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.pin-codes-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pin-code-item {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-orange);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Plans Section */
.plans-section {
    padding: 3rem 0;
    background: var(--light-gray);
}

.plans-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.plans-intro .section-title {
    margin-bottom: 0.75rem;
}

.plans-intro .section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.plan-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.plan-card:hover {
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border: 2px solid var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(0, 102, 255, 0.02) 100%);
    transform: scale(1.02);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--light-gray);
}

.plan-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.plan-speed {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.plan-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--light-gray);
    line-height: 1.5;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 0;
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table tbody tr:hover {
    background: var(--light-gray);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Value Section */
.value-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Value for Money Section */
.value-money-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 50%, #F8F9FA 100%);
    position: relative;
}

.value-money-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.value-money-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.value-money-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.value-money-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.value-money-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.value-stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 12px;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-money-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.value-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.value-benefits li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--light-gray);
}

.value-benefits li:last-child {
    border-bottom: none;
}

.value-savings {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #065F46;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.comparison-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item.highlight {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-orange);
}

.comparison-label {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.savings-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.value-proposition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-proposition-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.value-proposition-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.infrastructure-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.infrastructure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.infrastructure-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.infrastructure-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.infrastructure-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Coverage About Section */
.coverage-about-section {
    padding: 5rem 0;
    background: var(--white);
}

.coverage-content {
    max-width: 800px;
    margin: 0 auto;
}

.coverage-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.coverage-features {
    margin: 2rem 0;
}

.coverage-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.125rem;
}

.check-icon {
    color: var(--success);
    font-weight: 700;
    font-size: 1.5rem;
}

.coverage-note {
    margin-top: 2rem;
}

.coverage-note a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.coverage-note a:hover {
    text-decoration: underline;
}

.service-areas-list {
    margin: 2rem 0;
}

.service-area-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.service-area-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(230, 57, 70, 0.05) 50%, rgba(6, 167, 125, 0.05) 100%);
}

.service-area-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-area-item p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.area-pin-codes {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    color: #FBBF24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-text a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-text p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.contact-hours {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.contact-hours h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-hours p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    display: block;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    display: block;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.map-placeholder {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
}

.office-address-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(230, 57, 70, 0.05) 50%, rgba(6, 167, 125, 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-orange);
}

.office-address-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.office-address {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.office-hours {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.office-contact {
    margin-top: 1.5rem;
}

.office-contact p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.office-contact a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.office-contact a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.map-note {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 1.5rem;
}

/* Quick Actions */
.quick-actions-section {
    padding: 5rem 0;
    background: var(--white);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-action-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.quick-action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-action-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-action-card p {
    color: var(--text-light);
}

/* Footer - Modern Compact Design */
.footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-section:first-child {
    max-width: 300px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-section h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-section:hover h4::after {
    width: 50px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer-section ul li:hover {
    padding-left: 5px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.footer-section ul li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.footer-bottom.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom p span {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Footer Animation Delays */
.footer-section:nth-child(1) {
    transition-delay: 0.1s;
}

.footer-section:nth-child(2) {
    transition-delay: 0.2s;
}

.footer-section:nth-child(3) {
    transition-delay: 0.3s;
}

.footer-section:nth-child(4) {
    transition-delay: 0.4s;
}

.footer-section:nth-child(5) {
    transition-delay: 0.5s;
}

.footer-section:nth-child(6) {
    transition-delay: 0.6s;
}

/* Policy Pages Styles */
.policy-section {
    padding: 4rem 0;
    background: var(--white);
    opacity: 1 !important;
    /* Ensure policy sections are always visible */
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 1 !important;
    /* Ensure content is always visible */
}

.policy-intro {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-blue);
}

.policy-intro p {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-intro p:last-child {
    margin-bottom: 0;
}

.policy-section-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.policy-section-item:last-child {
    border-bottom: none;
}

.policy-section-item h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.policy-section-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section-item p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section-item ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section-item li {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.policy-section-item li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-details-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-blue);
}

.contact-details-box p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.contact-details-box p:last-child {
    margin-bottom: 0;
}

.contact-details-box a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-details-box a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        margin: 0 10px;
        top: 10px;
        border-radius: 16px;
    }

    .nav-wrapper {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: calc(100% - 20px);
        margin: 0 10px;
        text-align: center;
        transition: box-shadow 0.2s ease;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        gap: 0.5rem;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--gradient-primary);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--gradient-primary);
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .value-money-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-proposition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .coverage-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .infrastructure-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-areas-grid {
        grid-template-columns: 1fr;
    }

    .speed-results {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .use-case-image-wrapper {
        height: 150px;
    }

    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .value-money-grid {
        grid-template-columns: 1fr;
    }

    .value-proposition-grid {
        grid-template-columns: 1fr;
    }

    .value-stats {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section:first-child {
        max-width: 100%;
    }
}


/* NetGarden Benefits Section */
.benefits-section {
    padding: 4rem 0 2rem 0;
    background: linear-gradient(135deg, #fdf6ef 0%, #faf8ff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(230, 57, 70, 0.10);
    padding: 2rem 1.5rem 2rem 1.5rem;
    text-align: center;
    border: 1.5px solid #F4F1EC;
    transition: box-shadow 0.16s cubic-bezier(.45, .05, .55, .95);
}

.benefit-card:hover {
    box-shadow: 0 6px 22px 0 rgba(230, 57, 70, 0.18);
    border-color: #fbeee1;
}

.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Advertising Banner */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    /* Hidden by default, shown by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.promo-banner.active {
    display: flex;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promo-banner.active .promo-overlay {
    opacity: 1;
}

.promo-content {
    position: relative;
    background: #111827;
    /* Dark background for gaming theme */
    width: 100%;
    max-width: 800px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-banner.active .promo-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.close-banner {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-banner:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.promo-image-col {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-content:hover .promo-img {
    transform: scale(1.05);
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.promo-text-col {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: left;
}

.promo-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-offer-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-main-offer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.promo-sub-offer {
    font-size: 1.1rem;
    color: #9CA3AF;
}

.promo-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.price-note {
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.promo-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.promo-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    color: #D1D5DB;
    font-size: 0.95rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B35 0%, #E63946 100%);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile Responsiveness for Banner */
@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-image-col {
        height: 200px;
        min-height: auto;
    }

    .promo-text-col {
        padding: 1.5rem;
    }

    .promo-title {
        font-size: 1.5rem;
    }

    .promo-main-offer {
        font-size: 1.2rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }
}

/* OTT Page Specific Styles */
body.ott-page {
    background: linear-gradient(135deg, #fff1eb 0%, #ace0f9 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #1e293b;
    min-height: 100vh;
    position: relative;
}

/* Interactive Background Element */
.ott-bg-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at var(--bg-x, 50%) var(--bg-y, 50%), rgba(255, 255, 255, 0.8) 0%, transparent 50%);
    mix-blend-mode: overlay;
}

/* OTT Hero - Light Theme */
.ott-hero {
    padding: 120px 0 60px;
    /* Reduced padding */
    position: relative;
    overflow: hidden;
}

.ott-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    /* Reduced gap */
}

.ott-hero-text {
    flex: 1;
    z-index: 2;
    padding-right: 2rem;
}

.ott-hero-text h1 {
    font-size: 3rem;
    /* Slightly smaller */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ea580c, #2563eb);
    /* Orange to Blue text */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.ott-hero-text p {
    font-size: 1.1rem;
    color: #334155;
    /* Dark Slate */
    margin-bottom: 1.5rem;
    max-width: 480px;
    line-height: 1.5;
}

.ott-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: #ea580c;
    /* Orange */
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ott-hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.floating-image {
    width: 100%;
    max-width: 450px;
    /* Reduced max-width */
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    /* Softer shadow */
}

/* App Showcase - Premium Side-by-Side */
.app-showcase {
    padding: 4rem 0;
    background: transparent;
}

.app-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.app-showcase-text {
    text-align: left;
}

.app-showcase .section-title {
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 2.5rem;
}

.app-showcase .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 100%;
    text-align: left;
    margin-left: 0;
}

.app-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.app-features-list li {
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
}

.app-showcase-image {
    max-width: 100%;
    padding: 0;
}

.ott-grid-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

/* OTT Cards Redesign - Premium Compact */
.plans-grid.square-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Tighter grid */
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ott-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    /* Slightly sharper corners */
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    transform-style: preserve-3d;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.ott-card:hover {
    transform: translateY(-5px);
    border-color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.85);
}

.card-inner {
    padding: 1.5rem;
    /* Tighter padding */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.card-header h3 {
    color: #64748b;
    /* Muted slate for title */
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header .price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-body .speed {
    color: #0284c7;
    font-size: 1.1rem;
    font-weight: 700;
}

.card-body .apps {
    color: #334155;
    font-size: 0.95rem;
    font-weight: 600;
}

.card-body .highlight {
    color: #db2777;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.card-footer .btn-outline {
    background: #1e293b;
    /* Solid dark button for contrast */
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    /* Rounded rect */
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-block;
}

.card-footer .btn-outline:hover {
    background: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .app-showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .app-showcase .section-title,
    .app-showcase .section-subtitle {
        text-align: center;
    }

    .app-features-list {
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* Plan Specific Accents */
.plan-lite:hover {
    border-color: #10b981;
}

.plan-starter:hover {
    border-color: #8b5cf6;
}

.plan-pro:hover {
    border-color: #3b82f6;
}

.plan-max:hover {
    border-color: #ec4899;
}

/* App Showcase - Light Theme Updates */
.app-showcase {
    background: transparent;
    /* Remove solid bg to show gradient */
}

/* Footer Updates for Light Page */
body.ott-page .footer {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body.ott-page .footer h3,
body.ott-page .footer h4,
body.ott-page .footer p,
body.ott-page .footer ul li,
body.ott-page .footer ul li a {
    color: #1e293b;
}

body.ott-page .footer-bottom p {
    color: #64748b;
}

/* Navbar Updates for Light Page */
body.ott-page .navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 249, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.ott-page .logo h1 {
    color: #1e293b;
}

body.ott-page .nav-menu li a {
    color: #334155;
}

body.ott-page .nav-menu li a:hover,
body.ott-page .nav-menu li a.active {
    color: #ea580c;
    /* Orange accent */
}

/* Vibrant Menu Updates */
.nav-menu a {
    position: relative;
    overflow: hidden;
}

.nav-menu a:hover {
    color: #8338EC;
    text-shadow: 0 0 20px rgba(131, 56, 236, 0.3);
}

.nav-menu a::before {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
}

.nav-menu a.active {
    color: #8338EC;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.1) 0%, rgba(255, 0, 110, 0.05) 100%);
}

.nav-menu a.active::after {
    background: linear-gradient(90deg, #8338EC, #FF006E);
    box-shadow: 0 0 10px rgba(131, 56, 236, 0.6);
}

/* Homepage OTT Ad Section */
.ott-ad-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #10002b 0%, #240046 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ott-ad-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.ott-ad-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #e0aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ott-ad-features {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.ott-ad-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {

    .ott-hero-content,
    .ott-ad-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .ott-hero-text h1 {
        font-size: 2.5rem;
    }

    .ott-ad-features {
        justify-content: center;
    }
}