/* ============================================================
   AL JAWDA — Premium Sponge & Mattress Manufacturing
   Luxury "Dreamscape" Design System
   ============================================================ */

/* ============ Variables ============ */
:root {
    /* Colors - Exact Logo Colors */
    --primary: #0D2B3E;
    --primary-mid: #133548;
    --primary-light: #1C4460;
    --teal: #3AAFBF;
    --teal-light: #5EBCC8;
    --teal-dark: #2A97A6;
    --gold: #D4A843;
    --gold-light: #E0BD5E;
    --gold-dark: #B88E2E;
    --green: #6AAE3D;
    --green-light: #82C556;
    --accent: #3AAFBF;
    --accent-light: #5EBCC8;
    --accent-dark: #2A97A6;
    --cream: #F2F9FA;
    --cream-dark: #E4F1F3;
    --white: #FFFFFF;
    --text: #0D2B3E;
    --text-sec: #4A7080;
    --text-muted: #7AA0B0;
    --bg: #FFFFFF;
    --bg-warm: #F2F9FA;
    --bg-card: #FFFFFF;
    --bg-dark: #091E2C;
    --shadow-sm: 0 2px 8px rgba(13,43,62,.06);
    --shadow-md: 0 8px 24px rgba(13,43,62,.08);
    --shadow-lg: 0 16px 48px rgba(13,43,62,.1);
    --shadow-xl: 0 24px 64px rgba(13,43,62,.14);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --ease: cubic-bezier(.25,.46,.45,.94);
    --ease-out: cubic-bezier(.16,1,.3,1);
    --ease-smooth: cubic-bezier(.4,0,.2,1);
    --teal-grad: linear-gradient(135deg, #3AAFBF, #5EBCC8, #7DD0DA);
    --gold-grad: linear-gradient(135deg, #D4A843, #E0BD5E, #ECCE78);
    --night-grad: linear-gradient(135deg, #0D2B3E, #133548, #1C4460);
}

/* Dark Mode */
[data-theme="dark"] {
    --bg: #091E2C;
    --bg-warm: #0D2B3E;
    --bg-card: #133548;
    --text: #E4F1F3;
    --text-sec: #7AA0B0;
    --text-muted: #4A7080;
    --cream: #133548;
    --cream-dark: #1C4460;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.2);
    --shadow-md: 0 8px 24px rgba(0,0,0,.25);
    --shadow-lg: 0 16px 48px rgba(0,0,0,.3);
    --shadow-xl: 0 24px 64px rgba(0,0,0,.4);
}

/* ============ Reset & Base ============ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; }
body { font-family:var(--font-ar); background:var(--bg); color:var(--text); line-height:1.7; overflow-x:hidden; transition:background .5s, color .5s; }
[lang="en"] body, [lang="en"] { font-family:var(--font-en); }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }

/* ============ Preloader ============ */
.preloader { position:fixed; inset:0; background:var(--white); display:flex; align-items:center; justify-content:center; z-index:99999; transition:opacity .8s var(--ease-out), visibility .8s; }
[data-theme="dark"] .preloader { background:var(--bg-dark); }
.preloader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.preloader-inner { text-align:center; position:relative; }
.preloader-logo { width:100px; height:100px; margin:0 auto 1.5rem; animation:preloaderReveal 1.2s var(--ease-out) forwards, preloaderPulse 2s ease-in-out 1.2s infinite; opacity:0; transform:scale(.7); }
.preloader-logo img { width:100%; height:100%; object-fit:contain; filter:drop-shadow(0 4px 20px rgba(13,43,62,.12)); }
@keyframes preloaderReveal { to { opacity:1; transform:scale(1); } }
@keyframes preloaderPulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.04); } }
.preloader-tagline { font-size:.95rem; font-weight:700; color:var(--teal); letter-spacing:4px; text-transform:uppercase; margin-bottom:1.5rem; opacity:0; animation:preloaderFadeUp .8s var(--ease-out) .6s forwards; }
@keyframes preloaderFadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.preloader-dots { display:flex; justify-content:center; gap:6px; }
.preloader-dots span { width:6px; height:6px; border-radius:50%; background:var(--teal); opacity:.2; animation:dotBounce 1.4s ease-in-out infinite; }
.preloader-dots span:nth-child(2) { animation-delay:.15s; }
.preloader-dots span:nth-child(3) { animation-delay:.3s; }
@keyframes dotBounce { 0%,80%,100% { opacity:.2; transform:scale(.8); } 40% { opacity:1; transform:scale(1.2); } }

/* ============ Navbar ============ */
.navbar { position:fixed; top:0; left:0; width:100%; padding:1rem 0; z-index:1000; transition:all .5s var(--ease-smooth); }
.navbar.scrolled { background:rgba(255,255,255,.97); backdrop-filter:blur(20px) saturate(180%); padding:.65rem 0; box-shadow:0 1px 24px rgba(13,43,62,.06); border-bottom:1px solid rgba(13,43,62,.04); }
[data-theme="dark"] .navbar.scrolled { background:rgba(9,30,44,.97); border-bottom-color:rgba(58,175,191,.08); }
.navbar .container { display:flex; align-items:center; justify-content:space-between; }
.nav-brand { display:flex; align-items:center; gap:.85rem; z-index:10; }
.brand-logo { width:48px; height:48px; background:var(--white); border-radius:14px; display:flex; align-items:center; justify-content:center; overflow:hidden; padding:4px; box-shadow:0 2px 12px rgba(0,0,0,.1); border:1.5px solid rgba(58,175,191,.2); transition:all .4s; }
.brand-logo img { width:100%; height:100%; object-fit:contain; }
.brand-text { display:flex; flex-direction:column; gap:.1rem; }
.brand-name { font-weight:900; font-size:1.15rem; color:var(--white); letter-spacing:1px; transition:color .4s; }
.brand-sub { font-size:.65rem; color:rgba(255,255,255,.5); transition:color .4s; font-weight:500; }
.navbar.scrolled .brand-name { color:var(--primary); }
.navbar.scrolled .brand-sub { color:var(--text-muted); }
[data-theme="dark"] .navbar.scrolled .brand-name { color:var(--accent); }
[data-theme="dark"] .navbar.scrolled .brand-sub { color:var(--text-sec); }
.nav-menu { display:flex; align-items:center; gap:.35rem; }
.nav-link { padding:.55rem 1rem; font-size:.88rem; font-weight:600; color:rgba(255,255,255,.7); border-radius:var(--radius-full); transition:all .3s; position:relative; }
.nav-link::after { content:''; position:absolute; bottom:4px; left:50%; transform:translateX(-50%) scaleX(0); width:18px; height:2.5px; background:var(--gold-grad); border-radius:3px; transition:transform .35s var(--ease-smooth); }
.nav-link:hover { color:var(--white); background:rgba(255,255,255,.08); }
.nav-link.active { color:var(--white); }
.nav-link.active::after { transform:translateX(-50%) scaleX(1); }
.navbar.scrolled .nav-link { color:var(--text-sec); }
.navbar.scrolled .nav-link:hover { color:var(--primary); background:rgba(13,43,62,.04); }
.navbar.scrolled .nav-link.active { color:var(--primary); }
.navbar.scrolled .nav-link.active::after { background:var(--teal-grad); }
[data-theme="dark"] .navbar.scrolled .nav-link { color:var(--text-sec); }
[data-theme="dark"] .navbar.scrolled .nav-link:hover, [data-theme="dark"] .navbar.scrolled .nav-link.active { color:var(--accent); }
.nav-end { display:flex; align-items:center; gap:.75rem; }
.theme-toggle, .lang-toggle { width:42px; height:42px; border-radius:12px; border:1.5px solid rgba(255,255,255,.15); background:rgba(255,255,255,.06); color:var(--white); cursor:pointer; transition:all .3s; display:flex; align-items:center; justify-content:center; backdrop-filter:blur(8px); }
.theme-toggle svg { width:18px; height:18px; }
.theme-toggle .icon-moon { display:none; }
[data-theme="dark"] .theme-toggle .icon-sun { display:none; }
[data-theme="dark"] .theme-toggle .icon-moon { display:block; }
.theme-toggle:hover, .lang-toggle:hover { background:var(--accent); color:var(--white); border-color:var(--accent); transform:translateY(-1px); }
.navbar.scrolled .theme-toggle, .navbar.scrolled .lang-toggle { border-color:rgba(13,43,62,.1); color:var(--text); background:transparent; }
.navbar.scrolled .theme-toggle:hover, .navbar.scrolled .lang-toggle:hover { background:var(--accent); color:var(--white); border-color:var(--accent); }
[data-theme="dark"] .navbar.scrolled .theme-toggle, [data-theme="dark"] .navbar.scrolled .lang-toggle { border-color:rgba(58,175,191,.15); color:var(--text-sec); }
.lang-toggle { font-family:var(--font-en); font-size:.75rem; font-weight:800; letter-spacing:1px; }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; z-index:100; }
.nav-toggle span { width:24px; height:2.5px; background:var(--white); border-radius:4px; transition:all .35s var(--ease-smooth); }
.navbar.scrolled .nav-toggle span { background:var(--text); }
[data-theme="dark"] .navbar.scrolled .nav-toggle span { background:var(--text-sec); }
.nav-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ============ Buttons ============ */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:.5rem; font-family:inherit; font-weight:700; border:none; border-radius:var(--radius-full); cursor:pointer; transition:all .4s var(--ease-smooth); text-decoration:none; position:relative; overflow:hidden; }
.btn svg { width:18px; height:18px; flex-shrink:0; }
.btn-primary { background:var(--gold-grad); color:var(--primary); box-shadow:0 4px 20px rgba(212,168,67,.3); font-weight:800; }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(212,168,67,.45); }
.btn-glass { background:rgba(255,255,255,.08); color:var(--white); border:1.5px solid rgba(255,255,255,.15); backdrop-filter:blur(12px); }
.btn-glass:hover { background:rgba(255,255,255,.15); transform:translateY(-2px); }
.btn-lg { padding:.9rem 2.2rem; font-size:.95rem; }

/* ============ Hero ============ */
.hero { position:relative; min-height:100vh; display:flex; flex-direction:column; justify-content:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; }
.hero-gradient { position:absolute; inset:0; background:linear-gradient(160deg, rgba(9,30,44,.97) 0%, rgba(13,43,62,.93) 30%, rgba(19,53,72,.85) 60%, rgba(9,30,44,.96) 100%); }
.hero-pattern { position:absolute; inset:0; background-image:radial-gradient(rgba(58,175,191,.04) 1px, transparent 1px); background-size:50px 50px; }

/* Dream Elements */
.dream-elements { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.dream-cloud { position:absolute; color:rgba(58,175,191,.04); }
.dream-cloud svg { width:100%; height:100%; }
.cloud-1 { width:300px; top:15%; left:-5%; animation:cloudFloat 40s linear infinite; }
.cloud-2 { width:220px; top:55%; right:-10%; animation:cloudFloat 55s linear infinite reverse; }
@keyframes cloudFloat { 0% { transform:translateX(0); } 50% { transform:translateX(120px); } 100% { transform:translateX(0); } }
.dream-star { position:absolute; width:3px; height:3px; background:var(--gold); border-radius:50%; animation:twinkle 2s ease-in-out infinite alternate; }
@keyframes twinkle { from { opacity:.2; transform:scale(.5); } to { opacity:1; transform:scale(1); } }
.star-1 { top:12%; left:15%; animation-delay:0s; }
.star-2 { top:25%; right:20%; animation-delay:.4s; width:2px; height:2px; }
.star-3 { top:40%; left:60%; animation-delay:.8s; }
.star-4 { top:18%; left:75%; animation-delay:1.2s; width:4px; height:4px; }
.star-5 { top:65%; left:25%; animation-delay:1.6s; width:2px; height:2px; }
.dream-moon { position:absolute; top:8%; right:10%; width:80px; height:80px; color:rgba(212,168,67,.2); animation:moonGlow 4s ease-in-out infinite alternate; }
.dream-moon svg { width:100%; height:100%; }
@keyframes moonGlow { from { opacity:.6; filter:drop-shadow(0 0 20px rgba(212,168,67,.15)); } to { opacity:1; filter:drop-shadow(0 0 40px rgba(212,168,67,.3)); } }

.hero-content { position:relative; z-index:2; padding-top:8rem; }
.hero-badge { display:inline-flex; align-items:center; gap:.5rem; background:rgba(212,168,67,.1); border:1px solid rgba(212,168,67,.2); color:var(--gold-light); padding:.45rem 1.2rem; border-radius:var(--radius-full); font-size:.78rem; font-weight:600; margin-bottom:1.5rem; }
.hero-badge svg { width:14px; height:14px; color:var(--gold); }
.hero-title { margin-bottom:1.5rem; }
.hero-line { display:block; font-weight:800; line-height:1.15; }
.line-1, .line-2 { font-size:3.2rem; color:var(--white); }
.line-accent { font-size:3.8rem; background:var(--gold-grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; font-family:var(--font-display), var(--font-ar); }
.hero-desc { max-width:560px; color:rgba(255,255,255,.55); font-size:1rem; line-height:1.9; margin-bottom:2rem; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:3.5rem; }
.hero-stats { display:flex; align-items:center; gap:2rem; }
.hero-stat { text-align:center; }
.hs-num { font-size:2.2rem; font-weight:900; color:var(--gold); display:inline; font-family:var(--font-en); }
.hs-plus { font-size:1.4rem; font-weight:700; color:var(--gold); }
.hs-label { display:block; font-size:.78rem; color:rgba(255,255,255,.4); margin-top:.2rem; }
.hero-stat-divider { width:1px; height:40px; background:rgba(255,255,255,.1); }

/* Scroll Indicator */
.scroll-indicator { position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); z-index:2; }
.scroll-mouse { width:24px; height:38px; border:2px solid rgba(255,255,255,.2); border-radius:12px; display:flex; justify-content:center; padding-top:6px; }
.scroll-wheel { width:3px; height:8px; background:var(--gold); border-radius:3px; animation:scrollAnim 1.5s ease-in-out infinite; }
@keyframes scrollAnim { 0% { transform:translateY(0); opacity:1; } 100% { transform:translateY(12px); opacity:0; } }

/* ============ Sections Common ============ */
.section-label { display:flex; align-items:center; gap:.75rem; margin-bottom:1rem; }
.section-label.center { justify-content:center; }
.label-line { width:32px; height:2px; background:var(--teal-grad); border-radius:2px; }
.section-label span { font-size:.82rem; font-weight:700; color:var(--teal); text-transform:uppercase; letter-spacing:2px; }
.section-title { font-size:2.2rem; font-weight:900; color:var(--text); line-height:1.35; margin-bottom:1rem; }
.section-title.center { text-align:center; }
.section-desc { font-size:.95rem; color:var(--text-sec); line-height:1.8; }
.section-desc.center { text-align:center; max-width:600px; margin:0 auto; }

/* ============ About ============ */
.about { padding:7rem 0; background:var(--bg-warm); }
.about-layout { display:grid; grid-template-columns:1fr 1.1fr; gap:4rem; align-items:center; }
.about-img-wrap { position:relative; }
.about-img-main { border-radius:var(--radius-lg); aspect-ratio:4/3; overflow:hidden; position:relative; box-shadow:var(--shadow-xl); }
.about-img-main::before { content:''; position:absolute; inset:0; border:1px solid rgba(58,175,191,.15); border-radius:var(--radius-lg); pointer-events:none; z-index:1; }
.about-img-main img { transition:transform .6s var(--ease); }
.about-img-main:hover img { transform:scale(1.03); }
.about-float-card { position:absolute; bottom:-1.5rem; right:-1.5rem; background:var(--bg-card); padding:1.25rem 1.5rem; border-radius:var(--radius-md); box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:1rem; animation:floatCard 3s ease-in-out infinite alternate; z-index:2; }
@keyframes floatCard { from { transform:translateY(0); } to { transform:translateY(-8px); } }
.afc-icon { width:44px; height:44px; border-radius:12px; background:linear-gradient(135deg, rgba(58,175,191,.1), rgba(58,175,191,.2)); display:flex; align-items:center; justify-content:center; }
.afc-icon svg { width:22px; height:22px; stroke:var(--teal); }
.about-float-card strong { display:block; font-size:.88rem; font-weight:700; color:var(--text); }
.about-float-card span { font-size:.75rem; color:var(--text-sec); }
.about-text { color:var(--text-sec); font-size:.98rem; line-height:1.9; margin-bottom:2rem; }
.about-features { display:flex; flex-direction:column; gap:1.25rem; }
.about-feature { display:flex; align-items:flex-start; gap:1rem; }
.af-icon { width:48px; height:48px; min-width:48px; border-radius:14px; background:linear-gradient(135deg, rgba(58,175,191,.08), rgba(58,175,191,.15)); display:flex; align-items:center; justify-content:center; }
.af-icon svg { width:22px; height:22px; stroke:var(--teal); }
.about-feature h4 { font-size:.92rem; font-weight:700; color:var(--text); margin-bottom:.15rem; }
.about-feature p { font-size:.82rem; color:var(--text-sec); line-height:1.5; }

/* ============ Products ============ */
.products { padding:7rem 0; background:var(--bg); }
.products-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; margin-top:3rem; }
.product-card { background:var(--bg-card); border:1px solid rgba(13,43,62,.06); border-radius:var(--radius-lg); overflow:hidden; transition:all .5s var(--ease); position:relative; }
[data-theme="dark"] .product-card { border-color:rgba(58,175,191,.08); }
.product-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-xl); }
.product-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--teal-grad); transform:scaleX(0); transition:transform .5s var(--ease-out); transform-origin:left; }
.product-card:hover::after { transform:scaleX(1); }
.pc-visual { position:relative; min-height:220px; overflow:hidden; }
.pc-visual.pc-has-img { padding:0; background:linear-gradient(135deg, #f0f7f8, #e8f4f6); }
.pc-has-img img { width:100%; height:260px; object-fit:cover; transition:transform .6s var(--ease); }
.product-card:hover .pc-has-img img { transform:scale(1.04); }
.pc-badge { position:absolute; top:1rem; right:1rem; background:var(--gold-grad); color:var(--primary); font-size:.7rem; font-weight:700; padding:.35rem .9rem; border-radius:var(--radius-full); letter-spacing:.5px; z-index:2; }
.pc-badge-new { background:var(--teal-grad); color:var(--white); }
.pc-body { padding:1.75rem 2rem 2rem; }
.pc-body h3 { font-size:1.15rem; font-weight:800; margin-bottom:.6rem; color:var(--text); }
.pc-body p { font-size:.85rem; color:var(--text-sec); line-height:1.7; margin-bottom:1rem; }
.pc-tags { display:flex; flex-wrap:wrap; gap:.4rem; }
.pc-tags span { font-size:.72rem; font-weight:600; color:var(--teal); background:rgba(58,175,191,.08); padding:.3rem .8rem; border-radius:var(--radius-full); border:1px solid rgba(58,175,191,.12); }

/* ============ Why Us ============ */
.why-us { padding:7rem 0; background:var(--bg-warm); }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-top:3rem; }
.why-card { background:var(--bg-card); border:1px solid rgba(13,43,62,.05); border-radius:var(--radius-lg); padding:2.25rem 1.75rem; text-align:center; position:relative; transition:all .5s var(--ease); overflow:hidden; }
[data-theme="dark"] .why-card { border-color:rgba(58,175,191,.06); }
.why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.why-card::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:60px; height:3px; background:var(--teal-grad); border-radius:0 0 3px 3px; opacity:0; transition:opacity .4s; }
.why-card:hover::before { opacity:1; }
.wc-num { font-family:var(--font-en); font-size:3rem; font-weight:900; color:rgba(58,175,191,.08); position:absolute; top:.75rem; right:1.25rem; line-height:1; }
.wc-icon { width:56px; height:56px; border-radius:16px; background:linear-gradient(135deg, rgba(58,175,191,.08), rgba(58,175,191,.15)); display:flex; align-items:center; justify-content:center; margin:0 auto 1.25rem; }
.wc-icon svg { width:26px; height:26px; stroke:var(--teal); }
.why-card h3 { font-size:1rem; font-weight:800; margin-bottom:.5rem; color:var(--text); }
.why-card p { font-size:.82rem; color:var(--text-sec); line-height:1.7; }

/* ============ Product Showcase Gallery ============ */
.showcase-section { padding:5rem 0; background:var(--bg); }
.showcase-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:280px; gap:1rem; margin-top:3rem; }
.showcase-item { position:relative; border-radius:var(--radius-md); overflow:hidden; cursor:pointer; }
.showcase-item.showcase-lg { grid-column:span 2; }
.showcase-item img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.showcase-item:hover img { transform:scale(1.06); }
.showcase-overlay { position:absolute; inset:0; background:linear-gradient(180deg, transparent 40%, rgba(9,30,44,.85) 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:1.5rem; opacity:0; transition:opacity .4s var(--ease); }
.showcase-item:hover .showcase-overlay { opacity:1; }
.showcase-name { color:var(--white); font-weight:800; font-size:1.1rem; margin-bottom:.25rem; }
.showcase-tag { color:var(--gold-light); font-size:.8rem; font-weight:600; }

/* ============ Manufacturing Process ============ */
.process-section { padding:6rem 0; background:var(--bg-warm); }
.process-grid { display:flex; align-items:flex-start; justify-content:center; gap:0; margin-top:3rem; }
.process-step { flex:1; max-width:240px; text-align:center; padding:2rem 1.25rem; background:var(--bg-card); border-radius:var(--radius-lg); border:1px solid rgba(13,43,62,.05); position:relative; transition:all .4s var(--ease); }
[data-theme="dark"] .process-step { border-color:rgba(58,175,191,.06); }
.process-step:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.ps-num { font-family:var(--font-en); font-size:.75rem; font-weight:800; color:var(--white); background:var(--teal-grad); width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto .75rem; }
.ps-icon { width:52px; height:52px; border-radius:14px; background:linear-gradient(135deg, rgba(58,175,191,.08), rgba(58,175,191,.15)); display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; }
.ps-icon svg { width:24px; height:24px; stroke:var(--teal); }
.process-step h4 { font-size:.92rem; font-weight:700; color:var(--text); margin-bottom:.5rem; }
.process-step p { font-size:.78rem; color:var(--text-sec); line-height:1.6; }
.process-connector { display:flex; align-items:center; justify-content:center; width:40px; padding-top:4rem; }
.pc-line { width:100%; height:2px; background:linear-gradient(90deg, var(--teal), rgba(58,175,191,.2)); border-radius:2px; }

/* ============ Brand Promise ============ */
.promise-section { padding:7rem 0; background:var(--bg); }
.promise-layout { display:grid; grid-template-columns:1.1fr 1fr; gap:4rem; align-items:center; }
.promise-desc { color:var(--text-sec); font-size:.95rem; line-height:1.9; margin-bottom:2rem; }
.promise-features { display:flex; flex-direction:column; gap:1rem; }
.pf-item { display:flex; align-items:center; gap:.85rem; padding:.85rem 1.25rem; background:var(--bg-warm); border-radius:var(--radius-md); border:1px solid rgba(13,43,62,.04); transition:all .35s; }
[data-theme="dark"] .pf-item { border-color:rgba(58,175,191,.06); }
.pf-item:hover { transform:translateX(-4px); box-shadow:var(--shadow-sm); border-color:rgba(58,175,191,.15); }
[dir="ltr"] .pf-item:hover { transform:translateX(4px); }
.pf-check { width:28px; height:28px; min-width:28px; border-radius:8px; background:var(--teal-grad); display:flex; align-items:center; justify-content:center; }
.pf-check svg { width:14px; height:14px; stroke:var(--white); }
.pf-item span { font-size:.88rem; font-weight:600; color:var(--text); }
.promise-visual { position:relative; }
.promise-img-grid { display:grid; grid-template-columns:1.4fr 1fr; grid-template-rows:1fr 1fr; gap:.75rem; }
.pi-main { grid-row:span 2; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.pi-main img { width:100%; height:100%; object-fit:cover; }
.pi-side { border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-md); }
.pi-side img { width:100%; height:100%; object-fit:cover; }
.promise-img-grid img { transition:transform .6s var(--ease); }
.promise-img-grid div:hover img { transform:scale(1.04); }
.promise-badge { position:absolute; bottom:-1rem; left:50%; transform:translateX(-50%); background:var(--bg-card); padding:.85rem 1.75rem; border-radius:var(--radius-full); box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:.65rem; z-index:2; border:1px solid rgba(13,43,62,.04); }
.promise-badge svg { width:22px; height:22px; stroke:var(--gold); }
.promise-badge strong { font-size:.88rem; color:var(--text); font-weight:700; }

/* ============ Stats Banner ============ */
.stats-banner { padding:4rem 0; background:linear-gradient(135deg, var(--primary), var(--primary-mid), var(--primary-light)); position:relative; overflow:hidden; }
.stats-banner::before { content:''; position:absolute; inset:0; background-image:radial-gradient(rgba(212,168,67,.05) 1px, transparent 1px); background-size:40px 40px; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; position:relative; z-index:1; }
.stat-item { text-align:center; }
.si-num { font-family:var(--font-en); font-size:2.8rem; font-weight:900; color:var(--gold); display:inline; }
.si-plus { font-size:1.6rem; font-weight:700; color:var(--gold); }
.si-label { font-size:.88rem; color:rgba(255,255,255,.5); margin-top:.25rem; }

/* ============ CTA Banner ============ */
.cta-banner { position:relative; padding:5rem 0; overflow:hidden; }
.cta-bg { position:absolute; inset:0; background:linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%); }
.cta-pattern { position:absolute; inset:0; background-image:radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size:40px 40px; }
.cta-content { position:relative; z-index:2; text-align:center; }
.cta-content h2 { font-size:2rem; font-weight:900; color:var(--white); margin-bottom:.75rem; }
.cta-content > p { color:rgba(255,255,255,.7); max-width:550px; margin:0 auto 2rem; font-size:.95rem; line-height:1.7; }
.cta-phones { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; }
.cta-phone { display:inline-flex; align-items:center; gap:.6rem; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); color:var(--white); padding:.7rem 1.5rem; border-radius:var(--radius-full); font-weight:700; font-size:.92rem; transition:all .3s; }
.cta-phone:hover { background:var(--white); color:var(--teal-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.15); }
.cta-phone svg { width:18px; height:18px; }

/* ============ Contact ============ */
.contact { padding:7rem 0; background:var(--bg); }
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:start; }
.contact-desc { color:var(--text-sec); font-size:.92rem; line-height:1.8; margin-bottom:2rem; }
.contact-cards { display:flex; flex-direction:column; gap:1rem; }
.contact-card { display:flex; align-items:flex-start; gap:1rem; padding:1.25rem; background:var(--bg-warm); border-radius:var(--radius-md); border:1px solid rgba(13,43,62,.04); transition:all .35s; }
[data-theme="dark"] .contact-card { border-color:rgba(58,175,191,.06); }
.contact-card:hover { box-shadow:var(--shadow-md); transform:translateX(-4px); }
[dir="ltr"] .contact-card:hover { transform:translateX(4px); }
.cc-icon { width:44px; height:44px; min-width:44px; border-radius:12px; background:linear-gradient(135deg, var(--primary), var(--primary-mid)); display:flex; align-items:center; justify-content:center; }
.cc-icon svg { width:20px; height:20px; stroke:var(--teal); }
.cc-body h4 { font-size:.88rem; font-weight:700; margin-bottom:.4rem; color:var(--text); }
.cc-body a, .cc-body p { display:block; font-size:.82rem; color:var(--text-sec); line-height:1.6; transition:color .3s; }
.cc-body a:hover { color:var(--teal); }
.map-link { display:inline-flex !important; align-items:center; gap:.4rem; color:var(--teal) !important; font-weight:600; margin-top:.4rem; }
.map-link svg { width:14px; height:14px; }
.contact-map { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.map-wrapper { aspect-ratio:1/1; max-height:480px; }
.map-wrapper iframe { width:100%; height:100%; }

/* ============ Footer ============ */
.footer { background:var(--primary); padding:4rem 0 0; color:rgba(255,255,255,.7); }
.footer-top { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,.06); }
.footer-brand .brand-logo { width:52px; height:52px; margin-bottom:1rem; }
.footer-brand h3 { color:var(--white); font-size:1.15rem; font-weight:800; margin-bottom:.3rem; }
.footer-brand p { font-size:.85rem; opacity:.6; line-height:1.6; }
.footer-links h4, .footer-contact h4 { color:var(--gold); font-size:.88rem; font-weight:700; margin-bottom:1rem; letter-spacing:1px; }
.footer-links a, .footer-contact a { display:block; font-size:.85rem; color:rgba(255,255,255,.5); padding:.3rem 0; transition:all .3s; }
.footer-links a:hover, .footer-contact a:hover { color:var(--teal-light); padding-right:.5rem; }
[dir="ltr"] .footer-links a:hover, [dir="ltr"] .footer-contact a:hover { padding-right:0; padding-left:.5rem; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding:1.5rem 0; flex-wrap:wrap; gap:.75rem; }
.footer-bottom p { font-size:.82rem; opacity:.5; }
.footer-credits { display:flex; align-items:center; gap:.4rem; font-size:.8rem; }
.credits-text { opacity:.4; }
.credits-link { color:var(--teal-light); font-weight:700; transition:color .3s; opacity:.7; }
.credits-link:hover { color:var(--gold); opacity:1; }
.footer-social { display:flex; gap:.75rem; }
.footer-social a { width:36px; height:36px; border-radius:10px; border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; transition:all .3s; }
.footer-social a svg { width:16px; height:16px; fill:rgba(255,255,255,.5); }
.footer-social a:hover { background:var(--teal); border-color:var(--teal); }
.footer-social a:hover svg { fill:var(--white); }

/* ============ Scroll Reveal ============ */
.reveal { opacity:0; transform:translateY(30px); transition:all .8s var(--ease-out); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============ Responsive ============ */
@media(max-width:1024px) {
    .hero-title .line-1, .hero-title .line-2 { font-size:2.5rem; }
    .hero-title .line-accent { font-size:3rem; }
    .about-layout { grid-template-columns:1fr; gap:3rem; }
    .products-grid { grid-template-columns:1fr; }
    .why-grid { grid-template-columns:repeat(2,1fr); }
    .contact-layout { grid-template-columns:1fr; gap:2.5rem; }
    .footer-top { grid-template-columns:1fr 1fr; gap:2rem; }
    .showcase-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:240px; }
    .showcase-item.showcase-lg { grid-column:span 1; }
    .promise-layout { grid-template-columns:1fr; gap:3rem; }
    .process-grid { flex-wrap:wrap; gap:1rem; }
    .process-connector { display:none; }
    .process-step { max-width:100%; flex:0 0 calc(50% - .5rem); }
    .stats-grid { grid-template-columns:repeat(2,1fr); gap:1.5rem; }
    .nav-menu { position:fixed; top:0; right:-100%; width:85%; max-width:360px; height:100vh; background:var(--white); flex-direction:column; align-items:stretch; padding:5.5rem 1.5rem 2rem; transition:right .4s var(--ease-smooth); box-shadow:-10px 0 60px rgba(0,0,0,.12); gap:.2rem; z-index:99; }
    [data-theme="dark"] .nav-menu { background:var(--bg-dark); }
    .nav-menu.active { right:0; }
    .nav-link { color:var(--text); padding:.85rem 1.25rem; border-radius:var(--radius-sm); font-size:1rem; border-right:3px solid transparent; }
    .nav-link:hover, .nav-link.active { background:rgba(58,175,191,.06); color:var(--teal); border-right-color:var(--teal); }
    .nav-link::after { display:none; }
    .nav-toggle { display:flex; }
    .hero-stats { gap:1.5rem; flex-wrap:wrap; }
    .dream-moon { width:50px; height:50px; top:10%; right:5%; }
}
@media(max-width:768px) {
    .container { padding:0 1.25rem; }
    .hero-title .line-1, .hero-title .line-2 { font-size:2rem; }
    .hero-title .line-accent { font-size:2.4rem; }
    .section-title { font-size:1.8rem; }
    .why-grid { grid-template-columns:1fr; }
    .footer-top { grid-template-columns:1fr; }
    .footer-bottom { flex-direction:column; gap:.75rem; text-align:center; }
    .cta-content h2 { font-size:1.5rem; }
    .hero-stats { gap:1rem; }
    .hs-num { font-size:1.8rem; }
    .showcase-grid { grid-template-columns:1fr; grid-auto-rows:220px; }
    .process-step { flex:0 0 100%; }
    .stats-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:480px) {
    .hero-title .line-1, .hero-title .line-2 { font-size:1.6rem; }
    .hero-title .line-accent { font-size:2rem; }
    .hero-actions { flex-direction:column; align-items:stretch; }
    .btn-lg { padding:.8rem 1.5rem; font-size:.88rem; }
    .stats-grid { grid-template-columns:1fr 1fr; gap:1rem; }
    .si-num { font-size:2.2rem; }
}
