/* CSS Custom Properties for Professional Theme */
:root {
    /* Richer, deeper brand colors */
    --brand-orange: #EC522A; 
    --brand-orange-light: #FFEDE6;
    --brand-orange-grad: linear-gradient(135deg, #FF6B35 0%, #EC522A 100%);
    
    /* Elegant neutrals */
    --text-primary: #111111;
    --text-secondary: #5A5A66;
    --text-muted: #8E8E99;
    
    /* Backgrounds */
    --bg-page: #FAFAF8; /* Soft warm ivory, ultra premium */
    --bg-card: #FFFFFF;
    
    /* Accents & Effects */
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 50px rgba(236, 82, 42, 0.12); /* Subtle orange luxury tint */
    --border-radius-lg: 32px;
    --border-radius-md: 20px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    
    --font-main: 'Alexandria', sans-serif;
}

html {
    font-size: 15px; /* Slightly scaled down from 16px default to make text smaller */
}

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

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-page);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--brand-orange-light);
    color: var(--brand-orange);
}

/* Base Typography */
h1, h2, h3 { line-height: 1.3; font-weight: 800; }
a { text-decoration: none; color: inherit; }

/* ---------------- Navbar ---------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 100;
    transition: all 0.5s var(--ease-out-expo);
    background: rgba(250, 250, 248, 0.4);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

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

.logo-mark {
    background: var(--brand-orange-grad);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 900;
    font-family: sans-serif;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-en { font-size: 0.65rem; font-weight: 700; color: var(--text-primary); letter-spacing: 2px;}
.logo-ar { font-size: 1.05rem; font-weight: 800; color: var(--brand-orange); }

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

/* Underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--brand-orange);
    border-radius: 5px;
    transition: width 0.4s var(--ease-out-expo);
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.search-icon i {
    font-size: 1.1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: 0.3s;
}
.search-icon i:hover { color: var(--brand-orange); }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-primary {
    background: var(--brand-orange-grad);
    color: white;
    box-shadow: 0 10px 20px rgba(236, 82, 42, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(236, 82, 42, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* ---------------- Hero Section ---------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 100px;
    gap: 8%;
    position: relative;
}

.hero-bg-blob {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236,82,42,0.06) 0%, rgba(250,250,248,0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
}
.hero-content h1 span {
    color: var(--brand-orange);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-main-img img {
    width: 100%;
    max-width: 550px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.animate-levitate {
    animation: levitate 8s ease-in-out infinite alternate;
}
@keyframes levitate {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}

/* ---------------- Enhanced Hero Badges Constellation ---------------- */
.constellation-wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.constellation-icon {
    font-size: 14rem;
    color: var(--brand-orange);
    opacity: 0.05;
    animation: pulseGlow 4s infinite alternate;
}
.hero-badge-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    box-shadow: 0 15px 35px rgba(236, 82, 42, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(236, 82, 42, 0.15);
    transition: all 0.4s var(--ease-out-expo);
    white-space: nowrap;
    z-index: 2;
}
.hero-badge-item i {
    color: var(--brand-orange);
    font-size: 1.3rem;
}
.hero-badge-item:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 20px 45px rgba(236, 82, 42, 0.2);
    border-color: var(--brand-orange);
    z-index: 3;
    background: white;
}

/* Specific floating positions and distinct animations */
.hb-1 { top: -10%; right: 5%; animation: floatA 6s ease-in-out infinite; }
.hb-2 { top: 35%; left: -10%; animation: floatB 7s ease-in-out infinite; }
.hb-3 { bottom: 0%; right: 10%; animation: floatC 8s ease-in-out infinite; }
.hb-4 { top: 85%; left: 10%; animation: floatA 5s ease-in-out infinite reverse; }

@keyframes floatA {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -20px); }
}
@keyframes floatB {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, 15px); }
}
@keyframes floatC {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 10px); }
}
@keyframes pulseGlow {
    0% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(236,82,42,0.0)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(236,82,42,0.4)); color: var(--brand-orange); opacity: 0.15;}
}

/* ---------------- Categories Section ---------------- */
.categories {
    padding: 120px 0;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.premium-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--text-muted) 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.3;
    z-index: -1;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.premium-card {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(236, 82, 42, 0.05); /* very soft orange border */
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(236, 82, 42, 0.08); /* glowing orange shadow */
    border-color: rgba(236, 82, 42, 0.15);
}

.card-img {
    height: 320px;
    overflow: hidden;
    margin: 12px;
    border-radius: 32px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.premium-card:hover .card-img img {
    transform: scale(1.1); /* Sophisticated inside zoom */
}

.card-content {
    padding: 30px 40px 50px;
    text-align: center;
    background: linear-gradient(to top, rgba(255,255,255,1) 70%, rgba(255,255,255,0));
    margin-top: -40px; /* pull content up slightly for overlap effect */
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #111;
    font-weight: 800;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ---------------- Stats Section ---------------- */
.stats {
    position: relative;
    padding: 120px 0;
    margin: 60px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    /* Deep rich elegant gradient instead of just plain image */
    background: linear-gradient(135deg, #111111 0%, #2a110a 100%);
    z-index: -2;
}
.stats-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1621303837174-89787a7d4729?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15; /* Extremely subtle texture */
    z-index: -1;
}

.stats-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.stats-content h2 {
    font-size: 3rem;
    margin-bottom: 80px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-box {
    text-align: center;
}

.counter-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 600;
    color: var(--brand-orange-light);
}

.counter {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    font-variant-numeric: tabular-nums;
}

.stat-desc {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
}

/* ---------------- CTA Section ---------------- */
.cta {
    padding: 120px 0;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.cta-inner {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
}

.cta-image-wrapper {
    flex: 1;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.cta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* A soft gradient overlay bridging image to white background */
.cta-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 40%);
}

.cta-content {
    flex: 1.2;
    padding: 60px 80px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ---------------- Extras ---------------- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-5px);
    background: #20C25D;
}

/* ---------------- Partners Marquee ---------------- */
.partners-marquee {
    padding: 80px 0;
    text-align: center;
    background: white;
    overflow: hidden;
}

.partners-marquee h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee-content {
    display: flex;
    gap: 60px;
    padding-left: 60px;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-content img {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s var(--ease-out-expo);
}

.marquee-content img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); } /* RTL scroll direction */
}

/* Animations */
.pb-reveal, .pb-stagger > * {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 1s var(--ease-out-expo);
}

.pb-reveal.visible, .pb-stagger.visible > * {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger delays */
.pb-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.pb-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.pb-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.pb-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .mobile-menu-btn { display: block; }
    
    .nav-links { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 80px; left: 0; width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        text-align: center;
        gap: 15px;
        z-index: 999;
    }
    .nav-links.active { display: flex !important; }
    
    .logo-en { display: none; }
    
    /* Mobile Constellation Adjustments */
    .constellation-wrapper { min-height: 480px; margin-top: 30px; }
    .hero-badge-item { font-size: 0.85rem; padding: 12px 20px; white-space: normal; text-align: center; line-height: 1.3; }
    .hb-1 { top: -10%; right: auto; left: 5%; }
    .hb-2 { top: 25%; left: auto; right: 5%; }
    .hb-3 { bottom: 25%; right: auto; left: 5%; }
    .hb-4 { top: 90%; left: auto; right: 10%; }
    
    .hero, .cta-inner { flex-direction: column; text-align: center; }
    .hero { gap: 50px; padding-top: 150px;}
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-actions { justify-content: center; }
    
    .cards-grid, .stats-container { grid-template-columns: 1fr; flex-direction: column; gap: 40px;}
    
    .cta-image-wrapper { width: 100%; height: 350px;}
    .cta-image-overlay {
        background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 40%);
    }
    .cta-content { padding: 40px 20px;}
}

/* ========================================================
   1. Page Loader & Transitions
   ======================================================== */
.page-loader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--bg-page);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-mark {
    font-size: 5rem;
    font-weight: 800;
    color: var(--brand-orange);
    animation: loaderPulse 1.5s infinite var(--ease-out-expo);
}
@keyframes loaderPulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 20px rgba(236,82,42,0.3)); }
    100% { transform: scale(1); opacity: 0.6; }
}

/* ========================================================
   2. Mobile Navigation Base Styles
   ======================================================== */
.mobile-menu-btn {
    display: none; /* Crucial: hides on desktop! */
    font-size: 1.6rem;
    color: var(--text-primary);
    cursor: pointer;
}
.lang-switcher a {
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: white;
}
.lang-switcher a:hover {
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    border-color: var(--brand-orange);
}

/* EN LTR Adjustments */
html[lang="en"] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
html[lang="en"] .logo-text { letter-spacing: 1px; }
html[lang="en"] .logo-en { display: block !important; }
html[lang="en"] .badge-1 { left: auto; right: -30px; }

/* ========================================================
   3. Corporate Luxury Footer
   ======================================================== */
.corporate-footer {
    background: #0f0f11; /* Royal deep dark */
    color: #ffffff;
    padding: 80px 0 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-container h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--brand-orange);
    position: relative;
    display: inline-block;
}

.footer-brand .logo-text span {
    color: #fff;
}

.brand-promise {
    margin-top: 20px;
    color: #a0a0ab;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 350px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #a0a0ab;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--brand-orange);
    transform: translateX(-5px); /* RTL */
}

html[lang="en"] .footer-links a:hover {
    transform: translateX(5px); /* LTR */
}

.footer-contact p {
    color: #a0a0ab;
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact i {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

.legal-box {
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.08);
}

.legal-label {
    display: block;
    font-size: 0.8rem;
    color: #a0a0ab;
    margin-bottom: 5px;
}

.legal-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif; /* numbers strictly LTR styling */
    color: white;
    letter-spacing: 2px;
    direction: ltr; /* Force left-to-right for numbers */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #5a5a66;
    font-size: 0.85rem;
}

/* Mobile Footer adjustments */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links a:hover { transform: translateX(0); }
    html[lang="en"] .footer-links a:hover { transform: translateX(0); }
}

/* ========================================================
   4. Wizard Configurator UI
   ======================================================== */
.wizard-progress {
    background: #f1f2f6;
    height: 8px;
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}
.progress-bar-fill {
    background: var(--brand-orange);
    height: 100%;
    transition: width 0.4s ease;
}
.progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 600;
}
.wizard-step {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: translateX(15px);
    transition: all 0.4s ease;
}
.wizard-step.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
    transform: translateX(0);
}
.step-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.option-card input, .option-pill input {
    display: none;
}
.option-card .card-content {
    background: #fff;
    border: 2px solid #eaeaea;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}
.option-card .card-content i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.option-card input:checked + .card-content {
    border-color: var(--brand-orange);
    box-shadow: 0 15px 30px rgba(236, 82, 42, 0.1);
}
.option-card input:checked + .card-content i {
    color: var(--brand-orange);
}

.options-pill-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.option-pill .pill-text {
    display: block;
    padding: 20px;
    background: #fff;
    border: 2px solid #eaeaea;
    border-radius: 40px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.option-pill input:checked + .pill-text {
    background: var(--brand-orange);
    color: white;
    border-color: var(--brand-orange);
}

.wizard-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
}
.wizard-actions.right-align { text-align: left; } 
.wizard-actions.split { display: flex; justify-content: space-between; }
html[lang="en"] .wizard-actions.right-align { text-align: right; }

.final-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 20px; }

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

/* ========================================================
   5. Lead Gen & Modal UI
   ======================================================== */
.lead-gen {
    margin: 80px auto 40px;
    width: 90%;
    max-width: 1000px;
    background: linear-gradient(135deg, #111, #1a1a20);
    border-radius: var(--border-radius-lg);
    padding: 50px 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.lead-content h2 { margin-bottom: 10px; color: var(--brand-orange); }
.lead-content p { color: #ccc; max-width: 500px; line-height: 1.6; }

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    width: 90%; max-width: 550px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}
.modal-overlay.active .modal-content { transform: scale(1); }
.close-modal {
    position: absolute; top: 15px; right: 25px;
    font-size: 2rem; cursor: pointer; color: #888; transition: color 0.3s;
}
.close-modal:hover { color: var(--brand-orange); }
.modal-content h3 { color: var(--text-primary); margin-bottom: 5px; font-size: 1.4rem; font-weight: 800; }
.modal-content p { color: var(--text-muted); margin-bottom: 25px; font-size: 0.95rem; }

/* Customizing inputs and buttons inside modal */
.modal-content .form-control {
    padding: 15px 20px;
    font-size: 0.95rem;
    background: #fdfdfd;
    border: 2px solid #eaeaea;
    border-radius: 14px;
    margin-bottom: 15px;
    width: 100%;
}
.modal-content .form-control:focus {
    border-color: #111;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.03);
}

.modal-content .btn-primary {
    padding: 15px;
    font-size: 1rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    background: #0f0f11 !important;
    border-radius: 14px;
    margin-top: 10px;
    display: inline-block;
}
.modal-content .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

html[lang="en"] .close-modal { right: auto; left: 25px; }

@media (max-width: 768px) {
    .lead-gen { flex-direction: column; text-align: center; gap: 30px; padding: 40px 20px; }
}

/* ========================================================
   6. Tasting Box Section
   ======================================================== */
.tasting-box {
    margin: 60px auto;
    width: 90%;
    max-width: 1300px;
    background: var(--brand-orange-grad);
    border-radius: var(--border-radius-lg);
    padding: 50px 60px;
    box-shadow: 0 20px 40px rgba(236, 82, 42, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.tasting-box::after {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.tasting-content {
    position: relative; z-index: 2;
}

.tasting-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
}

.tasting-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    line-height: 1.6;
}

.tasting-action {
    position: relative; z-index: 2;
}

.tasting-box .btn-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
    color: var(--brand-orange);
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .tasting-box { flex-direction: column; text-align: center; gap: 30px; padding: 40px 20px; }
}
