
    /* ============================================================
       IMPROVED COLOR SCHEME - Warm Egg Theme (Same as Homepage)
       ============================================================ */
    :root {
        /* Primary Colors - Warm Orange/Egg Theme */
        --primary: #E67E22;
        --primary-dark: #D35400;
        --primary-light: #F39C12;
        
        /* Secondary Colors */
        --secondary: #F5B041;
        --accent: #27AE60;
        --accent-light: #2ECC71;
        
        /* Neutral Colors */
        --dark: #2C3E50;
        --text: #34495E;
        --text-light: #7F8C8D;
        --light: #FDFEFE;
        --cream: #FEF9E7;
        --cream-dark: #FCF3CF;
        
        /* Background Colors */
        --bg-warm: linear-gradient(135deg, #FEF9E7 0%, #FDFEFE 50%, #FEF5E7 100%);
        --bg-card: #FFFFFF;
        
        /* Border Colors */
        --border: #F5CBA7;
        --border-light: #FDEBD0;
        
        /* Shadow */
        --shadow: 0 4px 15px rgba(230, 126, 34, 0.1);
        --shadow-hover: 0 8px 25px rgba(230, 126, 34, 0.2);
        
        /* Transitions */
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --border-radius: 12px;
    }

    /* ============================================================
       IMPROVED BASE STYLES
       ============================================================ */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background: var(--bg-warm);
        color: var(--text);
        line-height: 1.7;
        overflow-x: hidden;
    }

    /* ============================================================
       IMPROVED HEADER STYLES (Same as Homepage)
       ============================================================ */
    header, .navbar, .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1000;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
        transition: var(--transition);
    }

    header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .logo-img {
        height: 48px;
        width: auto;
        margin-right: 12px;
    }

    .logo-text {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .logo-text span {
        color: var(--dark);
    }

    /* Navigation */
    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 8px;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        text-decoration: none;
        color: var(--dark);
        font-weight: 600;
        font-size: 0.95rem;
        padding: 10px 16px;
        border-radius: 8px;
        position: relative;
        transition: var(--transition);
    }

    .nav-link:hover {
        color: var(--primary);
        background: var(--cream);
    }

    .nav-link i {
        font-size: 0.75rem;
        margin-left: 4px;
        transition: var(--transition);
    }

    .nav-item:hover .nav-link i {
        transform: rotate(180deg);
    }

    /* Mega Dropdown */
    .mega-dropdown {
        position: absolute;
        top: 100%;
        left: -180px;
        width: 720px;
        background: white;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        border-radius: 16px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: var(--transition);
        z-index: 100;
        padding: 28px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        border: 1px solid var(--border-light);
    }

    .nav-item:hover .mega-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(5px);
    }

    .mega-column h4 {
        font-size: 0.9rem;
        color: var(--primary);
        margin-bottom: 16px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--border-light);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
    }

    .mega-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-links li {
        margin-bottom: 10px;
    }

    .mega-links a {
        text-decoration: none;
        color: var(--text);
        font-size: 0.9rem;
        transition: var(--transition);
        display: flex;
        align-items: center;
        padding: 6px 0;
    }

    .mega-links a:hover {
        color: var(--primary);
        transform: translateX(6px);
    }

    .mega-links a i {
        margin-right: 10px;
        font-size: 0.75rem;
        color: var(--secondary);
        width: 18px;
    }

    .exp-dropdown {
        width: 560px;
        grid-template-columns: repeat(2, 1fr);
    }

    /* Header Actions */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .search-btn {
        background: none;
        border: none;
        font-size: 1.1rem;
        color: var(--dark);
        cursor: pointer;
        transition: var(--transition);
        padding: 8px;
        border-radius: 8px;
    }

    .search-btn:hover {
        color: var(--primary);
        background: var(--cream);
    }

    /* Language Selector */
    .language-selector {
        position: relative;
    }

    .language-btn {
        background: var(--cream);
        border: 1px solid var(--border);
        font-size: 0.9rem;
        color: var(--dark);
        cursor: pointer;
        transition: var(--transition);
        padding: 8px 14px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
    }

    .language-btn:hover {
        background: var(--cream-dark);
        border-color: var(--primary);
    }

    .current-lang {
        font-weight: 600;
        font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    }

    .language-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        min-width: 180px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
        z-index: 1001;
        padding: 8px 0;
        border: 1px solid var(--border-light);
    }

    .language-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .lang-option {
        padding: 12px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        transition: var(--transition);
    }

    .lang-option:hover {
        background: var(--cream);
    }

    .lang-option i {
        color: var(--primary);
        font-size: 0.75rem;
        opacity: 0;
    }

    .lang-option.active i {
        opacity: 1;
    }

    .lang-option span {
        font-size: 0.95rem;
        font-weight: 500;
        flex-grow: 1;
    }

    .lang-option small {
        color: var(--text-light);
        font-size: 0.8rem;
    }

    .cta-btn {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        border: none;
        padding: 10px 22px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        font-size: 0.9rem;
        box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
    }

    .cta-btn:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    }

    .mobile-toggle {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark);
        padding: 8px;
    }

    /* ============================================================
       IMPROVED HERO SECTION (Same as Homepage)
       ============================================================ */
    .hero {
        height: 70vh;
        min-height: 500px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        margin-top: 80px;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: -2;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            135deg,
            rgba(44, 62, 80, 0.85) 0%,
            rgba(44, 62, 80, 0.6) 40%,
            rgba(230, 126, 34, 0.3) 100%
        );
        z-index: -1;
    }

    .hero-content {
        height: 100%;
        display: flex;
        align-items: center;
        color: white;
    }

    .hero-text {
        max-width: 700px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1s forwards 0.3s;
    }

    .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 24px;
        text-transform: uppercase;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-tag i {
        color: var(--secondary);
    }

    /* Dynamic price display in hero */
    .hero-price-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        padding: 12px 24px;
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    }

    .hero-price-badge .price-label {
        font-size: 0.85rem;
        opacity: 0.9;
    }

    .hero-price-badge .price-value {
        font-size: 1.8rem;
        font-weight: 800;
    }

    .hero-title {
        font-size: 3.2rem;
        line-height: 1.15;
        margin-bottom: 20px;
        font-weight: 800;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-title span {
        color: var(--secondary);
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 32px;
        font-weight: 400;
        max-width: 580px;
        opacity: 0.95;
        line-height: 1.7;
    }

    .hero-cta {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 1s forwards 0.6s;
    }

    .hero-btn {
        padding: 16px 32px;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: var(--transition);
        cursor: pointer;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(230, 126, 34, 0.5);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: white;
        transform: translateY(-3px);
    }

    /* Video Controls */
    .video-controls {
        position: absolute;
        bottom: 40px;
        right: 40px;
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 10;
    }

    .video-btn {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }

    .video-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.1);
    }

    /* ============================================================
       BREADCRUMB
       ============================================================ */
    .breadcrumb-container {
        background: white;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-light);
        margin-top: 80px;
    }

    .breadcrumb {
        margin-bottom: 0;
        background: transparent;
        padding: 0;
    }

    .breadcrumb-item a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
    }

    .breadcrumb-item.active {
        color: var(--text);
        font-weight: 600;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: var(--text-light);
    }

    /* ============================================================
       MAIN CONTENT SECTION
       ============================================================ */
    .main-content {
        padding: 50px 0;
    }

    .main-card {
        background: white;
        border-radius: 20px;
        padding: 32px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
        margin-bottom: 30px;
    }

    .main-card h1 {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .main-card .lead {
        font-size: 1.1rem;
        color: var(--text);
        margin-bottom: 24px;
        padding: 16px;
        background: var(--cream);
        border-radius: 12px;
        border-left: 4px solid var(--primary);
    }

    .main-card h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary);
        margin: 30px 0 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--border-light);
    }

    .main-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--dark);
        margin: 25px 0 15px;
    }

    /* ============================================================
       PRICE HIGHLIGHT CARD
       ============================================================ */
    .price-highlight-card {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 30px;
        box-shadow: 0 10px 40px rgba(230, 126, 34, 0.3);
    }

    .price-highlight-card h1 {
        color: white;
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .price-highlight-card .state-title {
        font-size: 1.8rem;
        opacity: 0.9;
        margin-bottom: 30px;
    }

    .price-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .price-stat {
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .price-stat-value {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .price-stat-label {
        font-size: 0.9rem;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ============================================================
       DISTRICT CARDS
       ============================================================ */
    .district-card {
        background: white;
        border-radius: 15px;
        padding: 20px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .district-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary);
    }

    .district-card h5 {
        color: var(--primary);
        font-size: 1.1rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .district-price {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--dark);
        margin: 10px 0;
    }

    .district-type {
        font-size: 0.85rem;
        color: var(--text-light);
        margin-bottom: 15px;
    }

    .district-link {
        margin-top: auto;
        text-align: right;
    }

    .district-link a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .district-link a:hover {
        color: var(--primary-dark);
    }

    /* ============================================================
       CHART CONTAINER
       ============================================================ */
    .chart-container {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
        margin-bottom: 30px;
    }

    .chart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
    }

    .chart-header h3 {
        margin: 0;
        color: var(--dark);
    }

    .chart-period {
        display: flex;
        gap: 10px;
    }

    .chart-period-btn {
        padding: 8px 16px;
        border: 2px solid var(--border);
        background: white;
        color: var(--text);
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }

    .chart-period-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    .chart-period-btn.active {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
    }

    .chart-wrapper {
        height: 400px;
        position: relative;
    }

    /* ============================================================
       DATA TABLE
       ============================================================ */
    .data-table-container {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
        margin-bottom: 30px;
        overflow: hidden;
    }

    .data-table-container h3 {
        color: var(--dark);
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--border-light);
    }

    .table-responsive {
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--border-light);
    }

    .table {
        margin-bottom: 0;
    }

    .table thead th {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        font-weight: 600;
        font-size: 0.85rem;
        padding: 15px 12px;
        border: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: none;
    }

    .table tbody td {
        padding: 12px;
        vertical-align: middle;
        border-color: var(--border-light);
        color: var(--text);
    }

    .table tbody tr:hover {
        background: var(--cream);
    }

    .table tbody td a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
    }

    .table tbody td a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    /* Badge Styles */
    .badge {
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.75rem;
    }

    .badge.bg-primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    }

    .badge.bg-success {
        background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
    }

    .badge.bg-warning {
        background: linear-gradient(135deg, var(--secondary), var(--primary-light)) !important;
        color: var(--dark) !important;
    }

    .badge.bg-info {
        background: linear-gradient(135deg, #3498DB, #2980B9) !important;
    }

    /* ============================================================
       STATE INFO SECTION
       ============================================================ */
    .state-info-section {
        background: var(--cream);
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 30px;
        border: 1px solid var(--border);
    }

    .state-info-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .state-info-header h2 {
        color: var(--primary);
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .state-info-header p {
        color: var(--text);
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .state-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .state-info-item {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
        transition: var(--transition);
    }

    .state-info-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .state-info-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: white;
        font-size: 1.5rem;
    }

    .state-info-item h4 {
        color: var(--dark);
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .state-info-item p {
        color: var(--text);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    /* ============================================================
       FAQ SECTION
       ============================================================ */
    .faq-section {
        margin-bottom: 50px;
    }

    .faq-section h2 {
        color: var(--primary);
        text-align: center;
        margin-bottom: 40px;
        font-size: 2.2rem;
    }

    .faq-accordion {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border-radius: 15px;
        margin-bottom: 15px;
        border: 1px solid var(--border-light);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .faq-header {
        padding: 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--transition);
    }

    .faq-header:hover {
        background: var(--cream);
    }

    .faq-header h3 {
        margin: 0;
        color: var(--dark);
        font-size: 1.1rem;
        font-weight: 600;
        flex: 1;
    }

    .faq-icon {
        color: var(--primary);
        font-size: 1.2rem;
        transition: var(--transition);
    }

    .faq-header[aria-expanded="true"] .faq-icon {
        transform: rotate(180deg);
    }

    .faq-body {
        padding: 0 25px 25px;
        color: var(--text);
        line-height: 1.7;
        border-top: 1px solid var(--border-light);
    }

    /* ============================================================
       COMPARISON SECTION
       ============================================================ */
    .comparison-section {
        margin-bottom: 50px;
    }

    .comparison-section h2 {
        color: var(--primary);
        text-align: center;
        margin-bottom: 40px;
        font-size: 2.2rem;
    }

    .comparison-card {
        background: white;
        border-radius: 15px;
        padding: 25px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
        height: 100%;
        transition: var(--transition);
        text-align: center;
    }

    .comparison-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary);
    }

    .comparison-card h4 {
        color: var(--dark);
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .comparison-price {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary);
        margin: 15px 0;
    }

    .comparison-city {
        color: var(--text-light);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .comparison-link {
        margin-top: 15px;
    }

    .comparison-link a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .comparison-link a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    /* ============================================================
       FOOTER (Same as Homepage)
       ============================================================ */
    .footer {
        background: var(--dark);
        color: white;
        padding: 70px 0 30px;
        position: relative;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: 50px;
    }

    .footer-logo-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-logo-img {
        height: 45px;
        width: auto;
        margin-right: 12px;
    }

    .footer-logo-text {
        font-size: 1.8rem;
        font-weight: 800;
        color: white;
    }

    .footer-logo-text span {
        color: var(--primary);
    }

    .footer-tagline {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 24px;
        max-width: 300px;
    }

    .footer-social {
        display: flex;
        gap: 12px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: var(--transition);
    }

    .social-icon:hover {
        background: var(--primary);
        transform: translateY(-3px);
        color: white;
    }

    .footer-column h4 {
        font-size: 1rem;
        color: white;
        margin-bottom: 24px;
        padding-bottom: 12px;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
    }

    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--primary);
        border-radius: 2px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
    }

    .footer-links a:hover {
        color: var(--primary);
        transform: translateX(5px);
    }

    .footer-links a i {
        font-size: 0.7rem;
        color: var(--secondary);
    }

    .contact-info {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .contact-info li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 18px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .contact-info i {
        color: var(--primary);
        font-size: 1.1rem;
        min-width: 20px;
        margin-top: 3px;
    }

    .contact-info a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }

    .contact-info a:hover {
        color: var(--primary);
    }

    .footer-bottom {
        margin-top: 60px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .copyright {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-bottom-links {
        display: flex;
        gap: 28px;
    }

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: var(--transition);
        font-size: 0.9rem;
    }

    .footer-bottom-links a:hover {
        color: var(--primary);
    }

    /* ============================================================
       ANIMATIONS
       ============================================================ */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* ============================================================
       RESPONSIVE STYLES
       ============================================================ */
    @media (max-width: 1200px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .hero-title {
            font-size: 2.8rem;
        }
        
        .price-stats {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 992px) {
        .nav-menu {
            position: fixed;
            top: 80px;
            left: -100%;
            flex-direction: column;
            background: white;
            width: 100%;
            height: calc(100vh - 80px);
            transition: var(--transition);
            padding: 30px;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-menu.active {
            left: 0;
        }

        .mobile-toggle {
            display: block;
        }

        .mega-dropdown {
            position: static;
            width: 100%;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            padding: 20px 0 0 20px;
            display: block;
            border: none;
        }
        
        .hero {
            height: 60vh;
            min-height: 400px;
        }
        
        .hero-title {
            font-size: 2.4rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .price-highlight-card h1 {
            font-size: 2.5rem;
        }
        
        .state-info-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 0.95rem;
        }

        .hero-cta {
            flex-direction: column;
        }
        
        .hero-btn {
            width: 100%;
            justify-content: center;
        }
        
        .hero-price-badge {
            flex-direction: column;
            text-align: center;
            gap: 4px;
        }
        
        .price-stats {
            grid-template-columns: 1fr;
        }
        
        .main-card {
            padding: 20px;
        }
        
        .main-card h1 {
            font-size: 1.8rem;
        }
        
        .chart-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        .chart-period {
            width: 100%;
            justify-content: space-between;
        }
        
        .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        .footer-column h4::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer-links a,
        .contact-info li {
            justify-content: center;
        }
        
        .footer-social {
            justify-content: center;
        }
        
        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }
        
        .footer-bottom-links {
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.8rem;
        }
        
        .hero {
            height: 50vh;
            min-height: 350px;
        }
        
        .price-highlight-card {
            padding: 25px;
        }
        
        .price-highlight-card h1 {
            font-size: 2rem;
        }
        
        .price-stat-value {
            font-size: 1.8rem;
        }
        
        .district-price {
            font-size: 1.5rem;
        }
        
        .comparison-price {
            font-size: 1.6rem;
        }
        
        .video-controls {
            bottom: 20px;
            right: 20px;
        }
    }
