/* ========================================
   WAARFE - Premium Arabic Landing Page
   Light beige/cream background + Dark green
======================================== */

/* CSS Variables */
:root {
    --primary-dark: #09382E;
    --primary-medium: #0d4a3d;
    --primary-light: #1a5c4d;
    --bg-cream: #FAF8F5;
    --bg-cream-dark: #F5F1EA;
    --bg-cream-light: #FDFCFA;
    --text-dark: #09382E;
    --text-body: #3d5a53;
    --text-light: #6b8a82;
    --gold-accent: #C9A962;
    --gold-subtle: rgba(201, 169, 98, 0.15);
    --white: #FFFFFF;
    --shadow-soft: rgba(9, 56, 46, 0.08);
    --shadow-medium: rgba(9, 56, 46, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(9, 56, 46, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}

/* Hide scrollbar during intro */
body.intro-active {
    overflow: hidden;
}

/* Selection */
::selection {
    background: var(--primary-dark);
    color: var(--white);
}

/* ========================================
   CINEMATIC INTRO
   ======================================== */
.cinematic-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.cinematic-intro.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    pointer-events: none;
}

.cinematic-intro.hidden,
.cinematic-intro[style*="display: none"] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.intro-mist {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-cream) 70%);
    animation: mistPulse 2s ease-in-out infinite;
}

@keyframes mistPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.intro-content {
    position: relative;
    z-index: 2;
    animation: introZoom 1s ease-out forwards;
}

@keyframes introZoom {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.intro-logo {
    width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px var(--shadow-medium));
    /* NO circle, NO border - matches header logo */
}

/* Skip Button on Intro Overlay */
.intro-skip-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(9, 56, 46, 0.15);
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.intro-skip-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ========================================
   DEMO BANNER (Slim & Premium)
   ======================================== */
.demo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 15px;
    z-index: 9999;
    box-shadow: 0 2px 10px var(--shadow-soft);
}

.demo-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.demo-banner .demo-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
}

.demo-banner p {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .demo-banner p {
        font-size: 0.65rem;
    }
    .demo-banner {
        padding: 5px 10px;
    }
}

/* ========================================
   PARALLAX BACKGROUND
   ======================================== */
.parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.parallax-texture {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(9, 56, 46, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(9, 56, 46, 0.03) 0%, transparent 50%);
}

.parallax-shapes {
    opacity: 0.4;
}

.organic-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(9, 56, 46, 0.06) 0%, transparent 70%);
    filter: blur(40px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    animation: floatShape1 20s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    animation: floatShape2 25s ease-in-out infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 20%;
    animation: floatShape3 18s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(10deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(-10deg); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}

/* Particles */
.parallax-particles {
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-dark);
    border-radius: 50%;
    opacity: 0.12;
    animation: floatParticle 15s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.12;
    }
    25% {
        opacity: 0.2;
    }
    50% {
        transform: translateY(-100px) translateX(30px);
        opacity: 0.08;
    }
    75% {
        opacity: 0.15;
    }
}

@keyframes particleRise {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(-10vh) scale(1);
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

/* ========================================
   BREEZE EFFECT
   ======================================== */
.breeze-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.breeze-trail {
    position: absolute;
    width: 300%;
    height: 150px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(9, 56, 46, 0.015) 20%,
        rgba(9, 56, 46, 0.03) 50%,
        rgba(9, 56, 46, 0.015) 80%,
        transparent 100%
    );
    transform: rotate(-5deg);
    animation: breezeMove 15s ease-in-out infinite;
}

.breeze-1 {
    top: 20%;
    animation-delay: 0s;
}

.breeze-2 {
    top: 45%;
    animation-delay: -5s;
    opacity: 0.7;
}

.breeze-3 {
    top: 70%;
    animation-delay: -10s;
    opacity: 0.5;
}

@keyframes breezeMove {
    0% { transform: translateX(-100%) rotate(-5deg); }
    100% { transform: translateX(50%) rotate(-5deg); }
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    position: relative;
    z-index: 2;
    padding-top: 40px; /* Space for slim demo banner */
}

/* ========================================
   HERO SECTION - 3 Column Layout
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Logo - Normal Image (No Circle) */
.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.hero-logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px var(--shadow-soft));
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px var(--shadow-soft);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 20px;
}

/* Hero Header */
.hero-header {
    text-align: center;
    margin-bottom: 30px;
}

/* ========================================
   HERO 3-COLUMN LAYOUT
   RIGHT: Bottle | CENTER: Leaves | LEFT: Price+CTA
   ======================================== */
.hero-columns {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* RIGHT Column: Bottle */
.hero-col-bottle {
    position: relative;
    justify-self: end;
    /* Keep bottle steady - no position changes on scroll */
    will-change: auto;
}

/* 3D Bottle Container */
.bottle-3d-wrapper {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.bottle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(9, 56, 46, 0.1) 0%, transparent 60%);
    filter: blur(40px);
    animation: bottleGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bottleGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

.bottle-image {
    position: relative;
    z-index: 2;
    width: 420px;
    max-width: 420px;
    height: auto;
    /* Sharp image rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* 3D subtle tilt effect */
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    /* Premium shadow */
    filter: drop-shadow(0 40px 60px rgba(9, 56, 46, 0.35))
            drop-shadow(0 15px 25px rgba(9, 56, 46, 0.2));
    /* Gentle idle float only */
    animation: bottleIdleFloat 5s ease-in-out infinite;
    transition: filter 0.5s ease;
}

/* Subtle highlight sheen overlay */
.bottle-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Premium Bottle Stand/Shadow Effect */
.bottle-stand {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 40px;
    z-index: 1;
}

/* Oval shadow under bottle */
.bottle-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 25px;
    background: radial-gradient(ellipse, rgba(9, 56, 46, 0.25) 0%, rgba(9, 56, 46, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    animation: shadowPulse 5s ease-in-out infinite;
}

/* Faint reflection under bottle */
.bottle-reflection {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleY(-0.15) scaleX(0.7);
    width: 120px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(9, 56, 46, 0.08) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.5;
    pointer-events: none;
}

@keyframes shadowPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.05); }
}

/* Gentle idle float - bottle stays steady, only subtle vertical movement */
@keyframes bottleIdleFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(-10px); }
}

/* Highlight sheen that moves subtly */
.bottle-sheen {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 60%;
    height: 80%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.08) 45%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.08) 55%, 
        transparent 100%);
    pointer-events: none;
    z-index: 3;
    border-radius: 20%;
    animation: sheenMove 8s ease-in-out infinite;
}

@keyframes sheenMove {
    0%, 100% { opacity: 0.6; transform: translateX(0) translateY(0); }
    50% { opacity: 0.9; transform: translateX(5px) translateY(-5px); }
}

.hero-col-bottle:hover .bottle-image {
    filter: drop-shadow(0 45px 70px rgba(9, 56, 46, 0.4))
            drop-shadow(0 20px 30px rgba(9, 56, 46, 0.25));
}

/* CENTER Column: Leaves Stacked Vertically */
.hero-col-leaves {
    padding: 0 20px;
}

.scent-notes-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* LEFT Column: Price + CTA */
.hero-col-cta {
    justify-self: start;
    align-items: center;
    gap: 0;
}

/* ========================================
   SCENT NOTES - Vertical Stacked Icons
   ======================================== */
.scent-notes-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.scent-note {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: noteFloat 4s ease-in-out infinite;
}

.scent-note:nth-child(1) { animation-delay: 0s; }
.scent-note:nth-child(2) { animation-delay: -1.3s; }
.scent-note:nth-child(3) { animation-delay: -2.6s; }

@keyframes noteFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.scent-note:hover {
    transform: scale(1.2);
}

.scent-note.collected {
    animation: none;
}

.scent-note.collected .leaf-icon {
    color: var(--gold-accent);
    filter: drop-shadow(0 0 10px var(--gold-accent));
}

.leaf-icon {
    width: 42px;
    height: 42px;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px var(--shadow-soft));
}

/* Note Tooltip */
.note-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 130px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow-medium);
    z-index: 100;
}

.note-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--glass-bg);
}

.scent-note.show-tooltip .note-tooltip,
.scent-note:hover .note-tooltip,
.scent-note.collected .note-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.note-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.note-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* ========================================
   PRICE BLOCK - Compact with CTA
   ======================================== */
.price-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 6px;
}

.price-old {
    font-size: 1.1rem;
    color: #cc3333;
    text-decoration: line-through;
    text-decoration-color: #cc3333;
    text-decoration-thickness: 2px;
    font-weight: 500;
}

.price-new {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--bg-cream-light), var(--gold-subtle));
    padding: 10px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

/* ========================================
   CTA BUTTON
   ======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(9, 56, 46, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(9, 56, 46, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button.glow-active {
    animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(9, 56, 46, 0.3), 0 0 0 0 rgba(201, 169, 98, 0.3); 
    }
    50% { 
        box-shadow: 0 10px 40px rgba(9, 56, 46, 0.3), 0 0 30px 5px rgba(201, 169, 98, 0.2); 
    }
}

.cta-icon {
    font-size: 1.3rem;
}

/* Ready Label (appears when all notes collected) */
.ready-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(9, 56, 46, 0.1), rgba(201, 169, 98, 0.15));
    padding: 8px 20px;
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ready-label.visible {
    opacity: 1;
    transform: scale(1);
    animation: readyPulse 2s ease-in-out infinite;
}

@keyframes readyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(9, 56, 46, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(9, 56, 46, 0); }
}

/* Demo Notice */
.demo-notice {
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--gold-accent));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ========================================
   FEATURES SECTION - Dark Green Background
   ======================================== */
.features-section {
    padding: 80px 20px;
    background: var(--primary-dark);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-title-light {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title-light::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), rgba(201, 169, 98, 0.5));
    margin: 15px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-card-full {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   DESCRIPTION SECTION
   ======================================== */
.description-section {
    padding: 80px 20px;
}

.description-card {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-soft);
    position: relative;
}

.description-ornament {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin: 15px 0;
    opacity: 0.7;
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 2;
    margin: 20px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Typewriter Effect for Description */
.typewriter-text {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 2;
    margin: 20px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    min-height: 3em;
    direction: rtl;
    text-align: center;
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: var(--primary-dark);
    margin-right: 3px;
    vertical-align: text-bottom;
    animation: cursorBlink 0.7s ease-in-out infinite;
}

.typewriter-cursor.hidden {
    display: none;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ========================================
   ABOUT DEMO SECTION
   ======================================== */
.about-demo-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-cream-dark) 50%, transparent 100%);
}

.about-card {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(9, 56, 46, 0.1), rgba(9, 56, 46, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.about-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-dark);
}

.about-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-text-highlight {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 20px 0;
}

/* Contact Buttons for About Demo Section */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #09382E;
}

.contact-btn svg {
    width: 20px;
    height: 20px;
    color: #09382E;
    flex-shrink: 0;
}

.contact-btn-store {
    background: #09382E;
    color: #fff;
}

.contact-btn-store svg {
    color: #fff;
}

.contact-btn-store:hover {
    background: #0d4a3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 56, 46, 0.3);
}

.contact-btn-whatsapp {
    background: #fff;
    color: #09382E;
}

.contact-btn-whatsapp:hover {
    background: #09382E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 56, 46, 0.3);
}

.contact-btn-whatsapp:hover svg {
    color: #fff;
}

/* ========================================
   POLICY SECTION - Light Background with Dark Cards
   ======================================== */
.policy-section {
    padding: 80px 20px;
    background: var(--bg-cream);
    position: relative;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(9, 56, 46, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(9, 56, 46, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Section title for policy - dark text on light bg */
.policy-section .section-title-light {
    color: var(--primary-dark);
}

.policy-section .section-title-light::after {
    background: linear-gradient(90deg, var(--primary-dark), var(--gold-accent));
}

.policy-accordion {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.accordion-item {
    background: #09382E;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(9, 56, 46, 0.15);
}

.accordion-item:hover {
    background: #09382E;
    box-shadow: 0 6px 25px rgba(9, 56, 46, 0.2);
}

.accordion-item.active {
    background: #09382E;
    border-color: rgba(255, 255, 255, 0.2);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F9F9F9;
    margin: 0;
}

.accordion-title svg {
    width: 24px;
    height: 24px;
    color: #F9F9F9;
    flex-shrink: 0;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: #F9F9F9;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    opacity: 0.8;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #F9F9F9;
    opacity: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    opacity: 1;
}

.accordion-body {
    padding: 0 22px 20px 60px;
    color: #F9F9F9;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.policy-note {
    font-size: 0.9rem;
    color: var(--text-body);
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* ========================================
   FOOTER - Professional Layout
   ======================================== */
.footer {
    background: var(--bg-cream-dark);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.footer-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px var(--shadow-soft));
    /* NO circle, NO border - matches header logo exactly */
}

.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.footer-text,
.footer-description {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 300px;
}

.footer-links {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.footer-links-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px var(--shadow-soft);
}

.social-link:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.business-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 8px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px var(--shadow-soft);
}

.business-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

/* Official Saudi Business Logo */
.saudi-business-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Version Tag for deployment verification */
.version-tag {
    font-size: 0.65rem;
    color: var(--text-light);
    opacity: 0.5;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links {
        align-items: center;
    }
}

/* ========================================
   TOAST MODAL
   ======================================== */
.toast-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 56, 46, 0.15);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.toast-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.toast-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 35px;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 25px 80px var(--shadow-medium);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.toast-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(9, 56, 46, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    background: rgba(9, 56, 46, 0.2);
    transform: rotate(90deg);
}

.toast-content {
    text-align: center;
}

.toast-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(9, 56, 46, 0.1), rgba(201, 169, 98, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.toast-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-dark);
}

.toast-message {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

/* Tablet: Keep 3-column layout, reduce sizes */
@media (max-width: 900px) {
    /* HARD LOCK: FORCE 3-column grid on tablet - DO NOT STACK */
    .hero-columns {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        gap: 25px !important;
    }
    
    .hero-col-bottle {
        justify-self: end !important;
    }
    
    .hero-col-leaves {
        justify-self: center !important;
    }
    
    .hero-col-cta {
        justify-self: start !important;
    }
    
    .bottle-image {
        width: 400px !important;
        max-width: 400px !important;
    }
    
    .bottle-shadow {
        width: 120px;
        height: 20px;
    }
    
    .leaf-icon {
        width: 34px !important;
        height: 34px !important;
    }
    
    .scent-notes-vertical {
        gap: 16px !important;
    }
    
    .price-new {
        font-size: 1.9rem;
        padding: 8px 22px;
    }
    
    .price-old {
        font-size: 1rem;
    }
    
    .price-cta-wrapper {
        gap: 6px;
    }
    
    .cta-button {
        padding: 14px 35px;
        font-size: 1.1rem;
    }
}

/* Mobile: FORCE 3-column layout, BIGGER bottle */
@media (max-width: 768px) {
    .hero {
        padding: 45px 10px;
        min-height: auto;
    }
    
    .hero-logo-img {
        width: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-header {
        margin-bottom: 20px;
    }
    
    /* HARD LOCK: FORCE 3-column grid on mobile - DO NOT STACK */
    .hero-columns {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        flex-direction: unset !important;
        gap: 12px !important;
        align-items: center !important;
    }
    
    .hero-col {
        display: flex !important;
        flex-direction: column !important;
        order: unset !important;
    }
    
    .hero-col-bottle {
        justify-self: end !important;
        order: unset !important;
    }
    
    .hero-col-leaves {
        justify-self: center !important;
        order: unset !important;
    }
    
    .hero-col-cta {
        justify-self: start !important;
        order: unset !important;
    }

    /* BIGGER bottle on mobile - prioritize bottle size */
    .bottle-image {
        width: 220px !important;
        max-width: 220px !important;
    }
    
    .bottle-shadow {
        width: 100px;
        height: 18px;
    }
    
    .bottle-sheen {
        display: none;
    }
    
    .scent-notes-vertical {
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* Smaller leaves to give more space to bottle */
    .leaf-icon {
        width: 26px !important;
        height: 26px !important;
    }
    
    .note-tooltip {
        display: none !important;
    }
    
    /* Compact price+CTA wrapper */
    .price-cta-wrapper {
        gap: 5px;
    }
    
    .price-block {
        margin-bottom: 4px;
        gap: 1px;
    }

    .price-new {
        font-size: 1.3rem;
        padding: 5px 14px;
        border-radius: 10px;
    }
    
    .price-old {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 9px 18px;
        font-size: 0.9rem;
        border-radius: 30px;
    }
    
    .cta-icon {
        font-size: 0.95rem;
    }

    .section-title,
    .section-title-light {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 22px;
    }

    .description-card {
        padding: 30px 25px;
    }

    .description-text {
        font-size: 1rem;
    }
    
    .accordion-header {
        padding: 18px 20px;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 0 20px 20px 50px;
    }
}

/* Small Mobile: BIGGER bottle, still 3-column */
@media (max-width: 480px) {
    .hero {
        padding: 40px 6px;
    }
    
    .demo-banner-content {
        flex-direction: column;
        gap: 5px;
    }

    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-logo-img {
        width: 65px;
    }
    
    /* HARD LOCK: FORCE 3-column grid on small mobile - DO NOT STACK */
    .hero-columns {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        flex-direction: unset !important;
        gap: 6px !important;
    }
    
    .hero-col-bottle {
        justify-self: end !important;
    }
    
    .hero-col-leaves {
        justify-self: center !important;
    }
    
    .hero-col-cta {
        justify-self: start !important;
    }

    /* MUCH BIGGER bottle on small mobile */
    .bottle-image {
        width: 180px !important;
        max-width: 180px !important;
    }
    
    .bottle-shadow {
        width: 80px;
        height: 15px;
    }
    
    /* Smaller leaves on small mobile to prioritize bottle */
    .leaf-icon {
        width: 20px !important;
        height: 20px !important;
    }
    
    .scent-notes-vertical {
        gap: 6px !important;
    }
    
    /* Compact price+CTA */
    .price-cta-wrapper {
        gap: 4px;
    }
    
    .price-block {
        margin-bottom: 3px;
    }
    
    .price-new {
        font-size: 0.95rem;
        padding: 4px 10px;
    }
    
    .price-old {
        font-size: 0.7rem;
    }
    
    .cta-button {
        padding: 7px 12px;
        font-size: 0.72rem;
        gap: 4px;
    }
    
    .cta-icon {
        font-size: 0.75rem;
    }
    
    .accordion-title {
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 0 15px 18px 40px;
        font-size: 0.9rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 4px;
}

/* Section Fade-In Animations */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ========================================
   TYPEWRITER EFFECT
   ======================================== */
.typewriter-container {
    font-size: 1.2rem;
    color: var(--text-body);
    line-height: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    min-height: 150px;
    direction: rtl;
}

.typewriter-text {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.typewriter-cursor {
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 300;
    animation: cursorBlink 0.7s ease-in-out infinite;
    margin-right: 2px;
}

.typewriter-cursor.hidden {
    opacity: 0;
    animation: none;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ========================================
   BUSINESS BADGE - Saudi Platform Logo
   Match WAARFE logo sizing exactly
   ======================================== */
.business-badge-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    box-shadow: 0 3px 15px var(--shadow-soft);
}

.business-badge-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.business-badge-text {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 500;
    text-align: center;
}

.business-badge-float {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}

/* ========================================
   BUSINESS BADGE IMAGE - FINAL FIX
   Same size as WAARFE footer-logo (100px)
   ======================================== */
.business-badge-img,
img.business-badge-img-float,
.business-badge-img-float {
    width: 100px !important;
    height: auto !important;
    max-width: 100px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    padding: 0 !important;
}

/* Desktop - same as footer-logo */
@media (min-width: 769px) {
    .business-badge-img,
    img.business-badge-img-float,
    .business-badge-img-float {
        width: 100px !important;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .business-badge-img,
    img.business-badge-img-float,
    .business-badge-img-float {
        width: 80px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .business-badge-img,
    img.business-badge-img-float,
    .business-badge-img-float {
        width: 65px !important;
    }
}

/* Force Saudi Business Badge Size */
img[class*="business-badge"]:not(.bottle-image),
img[src*="saudibusiness"]:not(.bottle-image),
img[src*="top4top"]:not(.bottle-image),
img[alt*="منصة الأعمال"]:not(.bottle-image),
.footer img[class*="badge"]:not(.bottle-image),
a[href*="saudibusiness"] img:not(.bottle-image) {
    width: 100px !important;
    min-width: 100px !important;
    height: auto !important;
    max-width: none !important;
}

@media (max-width: 768px) {
    img[class*="business-badge"]:not(.bottle-image),
    img[src*="saudibusiness"]:not(.bottle-image),
    img[src*="top4top"]:not(.bottle-image),
    img[alt*="منصة الأعمال"]:not(.bottle-image),
    .footer img[class*="badge"]:not(.bottle-image),
    a[href*="saudibusiness"] img:not(.bottle-image) {
        width: 80px !important;
        min-width: 80px !important;
    }
}

/* FIX: Saudi Business Badge - Override all */
img.business-badge-img-float {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: auto !important;
}

@media (max-width: 768px) {
    img.business-badge-img-float {
        width: 80px !important;
        min-width: 80px !important;
        max-width: 80px !important;
    }
}

@media (max-width: 480px) {
    img.business-badge-img-float {
        width: 65px !important;
        min-width: 65px !important;
        max-width: 65px !important;
    }
}