/* ==========================================================================
   GENENA CITY SHARM EL SHEIKH - LIGHT PHARAONIC LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Royal Pharaonic Gold Accents */
    --gold-primary: #C59B27;
    --gold-bright: #D4AF37;
    --gold-light: #F6E6B8;
    --gold-dark: #8F6E16;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5DE93 50%, #B8860B 100%);
    --gold-gradient-hover: linear-gradient(135deg, #F5DE93 0%, #D4AF37 50%, #8F6E16 100%);
    
    /* Light Pharaonic Alabaster & Sandstone Palette */
    --bg-main: #FAF7F2;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FCFAF6;
    --bg-surface: #F3ECE0;
    --bg-glass: rgba(255, 255, 255, 0.92);
    --border-gold: rgba(197, 155, 39, 0.3);
    --border-gold-strong: #C59B27;
    --border-soft: rgba(0, 0, 0, 0.08);

    /* Egyptian Accents */
    --lapis-blue: #0F2B48;
    --lapis-light: #1E466F;
    --turquoise: #008B7A;
    --sandstone: #8C7355;
    --sandstone-light: #E8DEC8;
    
    /* High-Contrast Luxury Typography */
    --text-dark: #161A22;
    --text-body: #333B48;
    --text-muted: #6B7688;
    --text-gold: #9B7814;

    /* Fonts */
    --font-en-title: 'Cinzel', serif;
    --font-en-dec: 'Cinzel Decorative', serif;
    --font-en-body: 'Outfit', sans-serif;
    --font-ar-title: 'Amiri', serif;
    --font-ar-body: 'Cairo', sans-serif;

    /* Shadows & Glows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 8px 25px rgba(140, 115, 85, 0.10);
    --shadow-hover: 0 12px 35px rgba(197, 155, 39, 0.20);
    --glow-gold: 0 0 15px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 15px; /* Scaled down base font size for crisp modern UI */
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
    font-family: var(--font-en-body);
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(197, 155, 39, 0.04) 0%, transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(15, 43, 72, 0.03) 0%, transparent 40%),
        linear-gradient(180deg, #FAF7F2 0%, #F5EFE4 100%);
    background-attachment: fixed;
}

body.is-rtl {
    font-family: var(--font-ar-body);
    font-size: 0.95rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-gold { color: var(--gold-primary) !important; }
.text-lapis { color: var(--lapis-blue) !important; }
.gold-icon { color: var(--gold-primary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* Section Header & Pharaonic Badges */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.royal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    background: #FFF;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
    border-radius: 30px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: var(--font-en-title);
    letter-spacing: 0.4px;
}

body.is-rtl .section-title {
    font-family: var(--font-ar-title);
    font-size: 1.95rem;
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 10px auto;
}

.ornament-line {
    height: 1.5px;
    width: 45px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.ornament-symbol {
    color: var(--gold-primary);
    font-size: 1.1rem;
    animation: pulseGlow 3s infinite;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Topbar */
.royal-topbar {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-soft);
    padding: 6px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-left .divider {
    color: var(--border-gold);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-switcher a {
    color: var(--text-muted);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.78rem;
    border: 1px solid transparent;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: var(--gold-dark);
    border-color: var(--border-gold);
    background: var(--gold-light);
}

.topbar-user-link {
    color: var(--lapis-blue);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-user-link:hover {
    color: var(--gold-primary);
}

/* Header & Nav */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

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

.logo-symbol {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #FAF4E6 0%, #FFFFFF 100%);
    border: 1.5px solid var(--gold-primary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(197, 155, 39, 0.15);
}

.gold-crown {
    color: var(--gold-primary);
    font-size: 1rem;
}

.hieroglyph-ornament {
    color: var(--gold-dark);
    font-size: 0.85rem;
    line-height: 1;
}

.brand-title {
    font-family: var(--font-en-title);
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--lapis-blue);
    letter-spacing: 2px;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.72rem;
    color: var(--gold-dark);
    letter-spacing: 1px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-item.active .nav-link,
.nav-link:hover {
    color: var(--gold-primary);
}

.nav-item.active .nav-link::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-chalets-link {
    color: var(--turquoise) !important;
    font-weight: 800;
}

.nav-merchant-link {
    color: var(--lapis-blue) !important;
    background: var(--bg-surface);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
}

.btn-gold:hover {
    background: var(--gold-gradient-hover);
    box-shadow: 0 8px 25px rgba(197, 155, 39, 0.45);
    transform: translateY(-2px);
    color: #000;
}

.btn-lapis {
    background: var(--lapis-blue);
    color: #FFF;
    box-shadow: 0 4px 15px rgba(15, 43, 72, 0.25);
}

.btn-lapis:hover {
    background: var(--lapis-light);
    color: #FFF;
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: #FFF;
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-dark);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #FFF;
    transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn-lg { padding: 15px 32px; font-size: 1.08rem; }

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #FFF;
    border-bottom: 2px solid var(--border-gold);
}

.slider-container {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0.3) 100%);
}

body.is-rtl .slide-overlay {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 60px 0;
}

.slide-title {
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-en-title);
    letter-spacing: 0.3px;
}

body.is-rtl .slide-title {
    font-family: var(--font-ar-title);
    font-size: 2.15rem;
}

.slide-caption {
    font-size: 0.98rem;
    color: var(--text-body);
    margin-bottom: 22px;
    line-height: 1.6;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(197, 155, 39, 0.3);
    border: 1px solid var(--gold-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--gold-primary);
    width: 32px;
    border-radius: 10px;
}

/* Ad Banners & Promotional Deals Spotlight */
.ads-spotlight-section {
    padding: 60px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-gold);
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.ad-card {
    background: #FFF;
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.ad-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-bright);
}

.ad-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.ad-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.ad-card:hover .ad-card-img img {
    transform: scale(1.06);
}

.ad-discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #E63946;
    color: #FFF;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
}

body.is-rtl .ad-discount-badge {
    right: auto;
    left: 15px;
}

.ad-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ad-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Chalets Cards & Listing Grid */
.chalets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.chalet-card {
    background: #FFF;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.chalet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-bright);
}

.chalet-img-wrap {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.chalet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.chalet-card:hover .chalet-img-wrap img {
    transform: scale(1.08);
}

.chalet-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 43, 72, 0.9);
    color: #FFF;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

body.is-rtl .chalet-type-badge {
    left: auto;
    right: 15px;
}

.chalet-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #FFF;
    color: var(--gold-dark);
    border: 1px solid var(--gold-primary);
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

body.is-rtl .chalet-price-badge {
    right: auto;
    left: 15px;
}

.chalet-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.chalet-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.chalet-features-row {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    padding: 12px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.chalet-features-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Pharaoh Card (Museum, Theater, Stores) */
.section-pad {
    padding: 80px 0;
}

.treasures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.pharaoh-card {
    background: #FFF;
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.pharaoh-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-bright);
    box-shadow: var(--shadow-hover);
}

.card-img-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #FAF4E6;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.pharaoh-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFF;
    border: 1px solid var(--gold-primary);
    color: var(--gold-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

body.is-rtl .card-badge {
    right: auto;
    left: 15px;
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-soft);
}

.card-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold-dark);
}

/* Forms & Modal */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-row {
    display: flex;
    gap: 15px;
}

.col-half { flex: 1; }

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: #FFF;
    border: 1px solid rgba(197, 155, 39, 0.4);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(197, 155, 39, 0.2);
}

/* Modals */
.royal-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(22, 26, 34, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.royal-modal-backdrop.open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.royal-modal-dialog {
    background: #FFF;
    border: 1.5px solid var(--gold-primary);
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface);
}

.modal-title-box h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-body {
    padding: 25px;
}

/* Footer */
.royal-footer {
    background: #FFFFFF;
    position: relative;
    border-top: 1px solid var(--border-gold);
    padding-top: 70px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.03);
}

.pharaoh-border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 0.95rem;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: #FFF;
    transform: translateY(-3px);
}

.footer-title {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(4px);
}

body.is-rtl .footer-links a:hover {
    transform: translateX(-4px);
}

.footer-bottom {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-gold);
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Floating WhatsApp */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-wa-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Price Estimate Card */
.price-estimate-card {
    background: var(--bg-surface);
    border: 1px dashed var(--gold-primary);
    border-radius: 10px;
    padding: 18px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-calc-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.price-calc-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-dark);
}

/* Shimmer Animation */
.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 80%);
    transform: rotate(30deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: translate(-100%, -100%) rotate(30deg); }
    100% { transform: translate(100%, 100%) rotate(30deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 6px #C59B27); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .mobile-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 84px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 84px);
        background: #FFF;
        border-left: 1px solid var(--border-gold);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: var(--transition-smooth);
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    body.is-rtl .nav-menu {
        right: auto;
        left: -100%;
        border-left: none;
        border-right: 1px solid var(--border-gold);
    }
    .nav-menu.active { right: 0; }
    body.is-rtl .nav-menu.active { left: 0; }
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }
    .slide-title { font-size: 2.4rem; }
}

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .slide-title { font-size: 1.85rem; }
    .topbar-content { flex-direction: column; gap: 6px; }
}
