/* Variables */
:root {
    --primary: #FF6B35;
    --secondary: #FFD166;
    --accent: #4ECDC4;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #666666;
    --light-gray: #f9f7f3;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 8px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
header, .navbar, .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.4s ease, box-shadow 0.3s ease;
}

.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.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;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--dark);
}

.logo-img {
    height: 45px;
    width: auto;
    margin-right: 10px;
    display: block;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: var(--transition);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-column h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links li {
    margin-bottom: 12px;
}

.mega-links a {
    text-decoration: none;
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.mega-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.mega-links a i {
    margin-right: 8px;
    font-size: 0.7rem;
    color: var(--secondary);
}

/* Experience Dropdown (2 column) */
.exp-dropdown {
    width: 600px;
    grid-template-columns: repeat(2, 1fr);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.search-btn:hover {
    color: var(--primary);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    font-size: 0.95rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.language-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.current-lang {
    font-weight: 600;
    min-width: 50px;
    text-align: center;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    padding: 10px 0;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(255, 107, 53, 0.1);
}

.lang-option i {
    color: var(--primary);
    font-size: 0.8rem;
    opacity: 0;
}

.lang-option.active i {
    opacity: 1;
}

.lang-option span {
    font-size: 1rem;
    font-weight: 500;
    flex-grow: 1;
}

.lang-option small {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Hindi Typography Support */
body.hindi-lang .logo-text,
body.hindi-lang .nav-link,
body.hindi-lang .hero-title,
body.hindi-lang .hero-subtitle,
body.hindi-lang .hero-btn,
body.hindi-lang .cta-btn {
    font-family: 'Noto Sans Devanagari', 'Montserrat', sans-serif;
}

/* Language Notification */
.lang-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    z-index: 10000;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    animation: slideIn 0.3s ease;
}

.cta-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ========== NEW HERO SECTION ========== */

.hero {
    height: 100vh;
    min-height: 560px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: -1;
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 110px;
}

.hero-text {
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.8s;
}

.hero-btn {
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.video-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.video-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ========== NEW FOOTER STYLES ========== */
.footer {
    background: var(--dark);
    color: white;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.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;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-text span {
    color: var(--primary);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 25px;
    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);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.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.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info i {
    color: var(--primary);
    font-size: 1.2rem;
    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);
}

/* Newsletter */
.newsletter h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: white;
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.newsletter-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Hindi Typography Support for Footer */
body.hindi-lang .footer-logo-text,
body.hindi-lang .footer-column h4,
body.hindi-lang .footer-links a,
body.hindi-lang .contact-info,
body.hindi-lang .newsletter h4,
body.hindi-lang .newsletter p,
body.hindi-lang .copyright,
body.hindi-lang .footer-bottom-links a {
    font-family: 'Noto Sans Devanagari', 'Montserrat', sans-serif;
}

/* ========== PAGE-SPECIFIC STYLES ========== */

/* Page Container */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px 50px;
}

/* Breadcrumb */
.page-breadcrumb {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0 25px 0;
    border-left: 4px solid var(--primary);
}

.page-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.page-breadcrumb .separator {
    margin: 0 8px;
    color: #95a5a6;
}

/* Price Highlight Box - UPDATED WITH YOLK COLOR */
.page-price-box {
    background: linear-gradient(135deg, #FFD166 0%, #FF6B35 100%);
    border-radius: 15px;
    color: #1a1a1a;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.page-price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    z-index: 1;
    animation: shimmer 3s infinite;
}

.page-price-box > * {
    position: relative;
    z-index: 2;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.page-price-box h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

/* City Price Cards */
.page-city-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.page-city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.page-city-card h5 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.page-city-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
}

/* Stats Box */
.page-stat-box {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.page-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.page-stat-label {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Price Change Indicator */
.page-price-change {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-left: 10px;
}

.page-price-up {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.page-price-down {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Live Timestamp */
.page-live-timestamp {
    background: #e8f4fc;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
}

.page-live-timestamp i {
    animation: page-pulse 1.5s infinite;
}

@keyframes page-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* FAQ Section */
.page-faq-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}

.page-faq-header {
    background: #f8f9fa;
    border: none;
    border-radius: 8px !important;
}

.page-faq-header button {
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}

.page-faq-body {
    border-top: 1px solid #e9ecef;
    padding: 15px;
    color: #34495e;
    line-height: 1.6;
}

/* Special Section */
.page-special-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 5px solid var(--primary);
}

/* Chart Container */
.page-chart-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    height: 100%;
}

/* Table Styling */
.page-data-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.page-data-table thead {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #1a1a1a;
}

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    backdrop-filter: blur(10px);
}

.search-container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--border-radius);
    padding: 15px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-modal-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.2rem;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
}

.search-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px 10px;
}

.search-close-btn:hover {
    color: var(--primary);
}

.suggestions-container-modal {
    background: white;
    border-radius: var(--border-radius);
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.suggestion-item-modal {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark);
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
}

.suggestion-item-modal:hover {
    background: rgba(255, 107, 53, 0.1);
    text-decoration: none;
}

.suggestion-item-modal:last-child {
    border-bottom: none;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* --------------- RESPONSIVE STYLES ---------------- */

@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1.5fr repeat(2, 1fr);
        gap: 40px;
    }
    
    .newsletter {
        grid-column: 1 / -1;
        max-width: 500px;
    }
}

@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;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0 0 20px 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
    }

    .mega-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 20px 0 0 20px;
        display: block;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .language-dropdown {
        position: fixed;
        top: 80px;
        right: 20px;
        left: 20px;
        min-width: auto;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    
    .footer-tagline {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Page Responsive */
    .page-price-box h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }
    
    /* Footer Responsive */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 20px;
    }
    
    /* Page Responsive */
    .page-price-box h1 {
        font-size: 2.2rem;
    }
    
    .page-city-price {
        font-size: 1.5rem;
    }
    
    .page-stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        gap: 35px;
        padding: 0 15px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form {
        gap: 10px;
    }
    
    .page-container {
        padding: 100px 15px 40px;
    }
    
    .page-price-box {
        padding: 20px;
    }
    
    .page-price-box h1 {
        font-size: 2rem;
    }
}