/* ==========================================================================
   Base & Variables (PREMIUM UPGRADE)
   ========================================================================== */
:root {
    --primary-navy: #0f172a;
    --primary-orange: #f59e0b;
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --premium-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1), 0 0 20px rgba(245, 158, 11, 0.05);
    --hover-shadow: 0 30px 60px -15px rgba(245, 158, 11, 0.2);
    --text-gray: #475569;
    --bg-light: #fafaf9;
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--text-gray);
    line-height: 1.7;
    
    background-color: #fcfcfc; 
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(245, 158, 11, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(15, 23, 42, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 40%, rgba(245, 158, 11, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 15% 80%, rgba(245, 158, 11, 0.10) 0%, transparent 40%);
    
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    
    overflow-x: hidden;
    padding-top: 80px; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==========================================================================
   Buttons (Glowing Premium)
   ========================================================================== */
.btn-primary {
    background: var(--gold-gradient);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(245, 158, 11, 0.6);
}

.btn-tint {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-orange);
    font-size: 28px;
}

.logo h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: -4px;
}

.logo p {
    font-size: 10px;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--primary-navy);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a.active {
    color: var(--primary-orange);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-bar {
    font-size: 24px;
    color: var(--primary-navy);
    cursor: pointer;
    display: none;
}

/* ==========================================================================
   Transparent Sections for Parallax
   ========================================================================== */
.hero, .services, .advantages, .reviews, .booking, .faq {
    background: transparent !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
    position: relative;
}

.badge {
    background-color: #fef3c7;
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-orange);
}

.hero > .hero-container > .hero-content > p {
    font-size: 16px;
    margin-bottom: 35px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-navy);
    max-width: 100px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-image {
    position: absolute;
    right: 0;
    z-index: 1;
}

/* ==========================================================================
   Section Headers (Premium Elegance)
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px !important;
    margin-bottom: 10px;
}

.section-subtitle::before, .section-subtitle::after {
    content: '';
    height: 1px;
    width: 40px;
    background: var(--primary-orange);
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 15px;
}

/* ==========================================================================
   Premium Glassmorphism Cards (Global)
   ========================================================================== */
.service-card, .review-card, .faq-item, .booking-form, .contact-item {
    background-color: rgba(255, 255, 255, 0.4) !important; 
    backdrop-filter: blur(24px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important; 
    border-right: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05), inset 0 0 15px rgba(255, 255, 255, 0.5) !important;
    border-radius: 20px !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-card:hover, .review-card:hover, .faq-item:hover, .contact-item:hover {
    transform: translateY(-8px) scale(1.02) !important;
    background-color: rgba(255, 255, 255, 0.6) !important; 
    box-shadow: 0 35px 60px rgba(245, 158, 11, 0.15), inset 0 0 25px rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(245, 158, 11, 0.4) !important; 
}

/* Premium Gradient Icons */
.s-icon, .adv-icon, .stat-icon {
    background: linear-gradient(135deg, #fff8eb, #fef3c7) !important;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.5), 0 4px 10px rgba(245, 158, 11, 0.1) !important;
    color: var(--primary-orange) !important;
}

/* ==========================================================================
   Services Section Layout
   ========================================================================== */
.services { padding: 80px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    padding: 35px 30px;
}
.service-icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.s-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.service-card h3 { font-size: 18px; }
.service-card p { font-size: 14px; margin-bottom: 25px; min-height: 65px; }

/* ==========================================================================
   Advantages Section
   ========================================================================== */
.advantages {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}
.adv-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}
.adv-item {
    text-align: center;
    max-width: 140px;
    flex: 1 1 120px;
}
.adv-item .adv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}
.adv-item h4 { font-size: 15px; margin-bottom: 5px; }
.adv-item p { font-size: 12px; }

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews { padding: 80px 0; }
.review-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
}
.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.reviews-grid {
    display: flex;
    gap: 20px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0px 60px 0px;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    padding: 30px;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.reviewer-info h4 { font-size: 15px; margin-bottom: 3px; }
.stars { color: var(--primary-orange); font-size: 12px; }
.review-card p { font-size: 13px; font-style: italic; margin-bottom: 20px; }
.location { font-size: 12px; color: #94a3b8; }
.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
}
.dot.active { background: var(--primary-orange); }

/* ==========================================================================
   Booking Section
   ========================================================================== */
.booking { padding: 80px 0; }
.booking-container {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    align-items: stretch;
    width: 100%;
}
.contact-item i {
    color: var(--primary-orange);
    font-size: 24px;
    margin-bottom: 5px;
}
.contact-item h4 { font-size: 16px; word-break: break-all; overflow-wrap: break-word; }
.contact-item p { font-size: 14px; }
.booking-form {
    flex: 1;
    padding: 30px;
    width: 100%;
}
.booking-form input, .booking-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
    font-family: var(--font-body);
    color: var(--primary-navy);
    outline: none;
}
.booking-form button {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq { padding: 80px 0; }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}
.faq-item {
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 500;
    color: var(--primary-navy);
    user-select: none;
    transition: color 0.3s;
}
.faq-question i { color: var(--text-gray); transition: transform 0.3s; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: transparent;
}
.faq-answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}
.faq-item.active .faq-question, .faq-item.active .faq-question i {
    color: var(--primary-orange);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #0f172a; /* Premium Dark Navy */
    color: #94a3b8;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.logo.footer-logo img {
    height: 40px;
    width: 40px;
    background-color: white;
    border-radius: 50%;
    object-fit: cover;
    padding: 3px;
}
.footer-logo h2 { color: #fff; }
.footer-grid h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a:hover { color: var(--primary-orange); }
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s;
}
.social-icons a:hover { background: var(--primary-orange); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}

/* ==========================================================================
   Utilities (Back to Top & Toast)
   ========================================================================== */
.back-to-top {
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245,158,11,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.back-to-top:hover { transform: translateY(-5px); }
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.toast-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 25px 20px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 10000;
    transform: translateX(150%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    border-left: 6px solid var(--primary-orange);
}
.toast-box.active { transform: translateX(0%); }
.toast-box.success { border-left-color: #22c55e; }
.toast-box.success #toastIcon { color: #22c55e; }
.toast-box.error { border-left-color: #ef4444; }
.toast-box.error #toastIcon { color: #ef4444; }
.toast-content { display: flex; align-items: center; gap: 15px; }
.toast-content i { font-size: 26px; }
.toast-box .message { display: flex; flex-direction: column; }
.toast-box .text-title { font-weight: 600; color: var(--primary-navy); font-size: 16px; }
.toast-box .text-desc { font-size: 13px; color: var(--text-gray); }
.close-toast {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    color: #a1a1aa;
    font-size: 14px;
}
.close-toast:hover { color: #000; }

/* ==========================================================================
   Media Queries (Responsive Layouts - PRESERVED)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        align-items: flex-start; 
    }
    .hero-content {
        max-width: 100%;
        padding-bottom: 40px;
    }
    .hero-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.15; 
        z-index: 0;
        pointer-events: none;
    }
    .hero-image img {
        height: auto !important;
        max-height: 70vh !important;
        width: 100% !important;
        max-width: 500px;
        object-fit: contain;
    }
    .hero h1 { font-size: 42px; }
    .hero > .hero-container > .hero-content > p { font-size: 15px; }
    .hero-stats { justify-content: flex-start; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .review-card { flex: 0 0 calc(50% - 10px); }
    .booking-container { gap: 30px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .glass-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }
    .nav-links, .lang-btn { display: none; }
    .menu-bar { display: block; transition: transform 0.3s ease; }
    .menu-bar.active-icon { transform: rotate(90deg); }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.65); 
        backdrop-filter: blur(16px); 
        -webkit-backdrop-filter: blur(16px); 
        border-top: 1px solid rgba(255, 255, 255, 0.5); 
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); 
        padding: 20px;
        gap: 20px;
        text-align: center;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links a { font-size: 18px; display: block; padding: 10px 0; }
    
    .hero h1 { font-size: 34px; }
    .hero > .hero-container > .hero-content > p { font-size: 14px; }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
    }
    .stat-item {
        max-width: 100%;
        align-items: flex-start;
        justify-self: start;
        text-align: left;
    }
    .services-grid { grid-template-columns: 1fr; }
    .adv-features { flex-direction: column; align-items: center; gap: 30px; }
    .review-card { flex: 0 0 100%; }
    .booking-container { flex-direction: column; }
    .contact-info { width: 100%; text-align: center; align-items: center; }
    .booking-form { width: 100%; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .carousel-btn { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 34px; }
    .hero > .hero-container > .hero-content > p { font-size: 13px; }
    .section-header h2 { font-size: 26px; }
    .btn-primary { width: 100%; justify-content: center; }
    .carousel-btn { display: none; }
}


/* ==========================================================================
   Premium Spiritual Box Banner (Background Image + Gradient Blend)
   ========================================================================== */
.spiritual-promo {
    padding: 40px 0 80px 0;
    position: relative;
    z-index: 5;
}

.promo-glass-wrapper {
    position: relative;
    /* Yahan box ki Image Path daliye */
    background-image: url('../assets/srv-custom.jpg'); 
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    border-radius: 24px;
    box-shadow: var(--premium-shadow);
    border: 0px solid rgba(255, 255, 255, 0.6) !important;
    overflow: hidden;
    display: flex;
    justify-content: flex-end; /* Text aur checklist ko right side push karega */
    align-items: center;
    padding: 40px;
    gap: 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.promo-glass-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.promo-glass-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 35%, rgba(255, 255, 255, 0.98) 55%, #ffffff 100%);
    z-index: 1;
}

/* Content ko gradient ke upar rakhne ke liye Z-index */
.promo-text-col, .promo-list-col {
    position: relative;
    z-index: 2; 
}

/* Text Section */
.promo-text-col {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-text-col h3 {
    font-size: 30px;
    color: var(--primary-navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.promo-tagline {
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 15px;
}

.promo-text-col p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 25px;
}

/* Checklist Section */
.promo-list-col {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset 0 0 15px rgba(255,255,255,0.8), 0 10px 20px rgba(0,0,0,0.05);
}

.promo-list-col h4 {
    font-size: 16px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(245, 158, 11, 0.2);
    padding-bottom: 10px;
}

.promo-list-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-list-col ul li {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Gradient checkmarks */
.promo-list-col ul li i {
    color: var(--primary-orange);
    font-size: 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-list-col ul li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Mobile Responsiveness
   ========================================================================== */
@media (max-width: 992px) {
    .promo-glass-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        background-position: center top;
    }
    .promo-glass-wrapper::before {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 30%, #ffffff 50%);
    }
    .promo-text-col {
        max-width: 100%;
        margin-top: 150px; 
        text-align: center;
    }
    .promo-list-col {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .promo-glass-wrapper {
        padding: 30px 20px;
    }
    .promo-text-col {
        margin-top: 120px;
    }
    .promo-text-col h3 {
        font-size: 26px;
    }
    .promo-btn {
        width: 100%;
        justify-content: center;
    }
    .promo-text-col div a{font-size: 13px;}
}

/* ==========================================================================
   Language Toggle Button
   ========================================================================== */
.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1px solid var(--primary-orange);
    border-radius: 50px;
    background-color: transparent;
    color: var(--primary-navy);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-toggle-btn:hover {
    background-color: var(--primary-orange);
    color: #fff;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.lang-toggle-btn i {
    font-size: 18px;
}

.lang-toggle-btn:hover i {
    color: #fff;
}

@media (max-width: 768px) {
    .lang-toggle-btn {
        padding: 8px 10px;
        gap: 0;
    }
    
    .lang-text {
        display: none; 
    }
    
    .lang-toggle-btn i {
        font-size: 18px;
    }
}