:root {
    --primary: #1b4332;   /* Deep Forest Green */
    --accent: #c5a059;    /* Gold */
    --light: #f4f7f5;
    --white: #ffffff;
    --text: #2d2d2d;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 110px; /* space reserved for floating header */
    --header-radius: 12px;
} 

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- NAVIGATION --- */
.main-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 18px;
    left: 0;
    padding: 0; /* visual spacing handled by inner nav */
    transition: var(--transition);
    pointer-events: none; /* allow the inner nav to be interactive */
}

/* center the nav content and give it a floating card appearance */
.main-header .container {
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

nav {
    width: 100%;
    max-width: 1180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.95);
    padding: 0.7rem 1.25rem;
    border-radius: var(--header-radius);
    box-shadow: 0 14px 40px rgba(9,30,66,0.06);
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.main-header.scrolled nav {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(9,30,66,0.12);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a { display: block; }

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.logo a:hover img {
    transform: scale(1.04);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.45rem 0.3rem;
    border-bottom: 3px solid transparent;
    transition: color .2s ease, border-bottom .2s ease, transform .15s ease;
}

.nav-links a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    transform: translateY(-2px);
}

/* small language switch / CTA styling */
.lang-switch {
    display: inline-block;
    padding: .45rem .7rem;
    border-radius: 6px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(0,0,0,0.04);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.lang-switch:hover { background: rgba(0,0,0,0.02); }

@media (max-width: 760px) {
    nav { padding: .6rem .9rem; }
    .nav-links { gap: 1rem; }
    .logo { font-size: 1.25rem; }
}


/* =============================================
   HOME PAGE — COMPLETE REDESIGN
   ============================================= */

/* ── Shared home utilities ── */
.home-kicker {
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(197,160,89,0.1);
    padding: .3rem .75rem;
    border-radius: 999px;
    margin-bottom: .9rem;
}

.home-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}
.home-section-header.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.home-section-header h2,
.home-section-header.center h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -.025em;
    margin: .25rem 0 .5rem;
    line-height: 1.1;
}
.home-section-header p,
.home-section-header.center p {
    font-size: 1rem;
    color: #3d5248;
    max-width: 55ch;
    line-height: 1.65;
    margin: 0;
}
.home-products-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ── HERO SLIDER ── */
.hero-slider {
    height: 100vh;
    min-height: 560px;
    position: relative;
    overflow: hidden;
    background: #0a1f14;
}

.slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 2s ease-in-out;
    background-size: cover; background-position: center;
}
.slide.active { opacity: 1; }

.slide-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to right, rgba(4,20,14,0.88) 0%, rgba(4,20,14,0.52) 55%, rgba(4,20,14,0.15) 100%),
        linear-gradient(to top, rgba(4,20,14,0.55) 0%, transparent 42%);
}
[dir="rtl"] .slide-overlay {
    background:
        linear-gradient(to left, rgba(4,20,14,0.88) 0%, rgba(4,20,14,0.52) 55%, rgba(4,20,14,0.15) 100%),
        linear-gradient(to top, rgba(4,20,14,0.55) 0%, transparent 42%);
}

/* kept for backward compat with any page still using .overlay */
.overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.78), rgba(0,0,0,0.18)); }
[dir="rtl"] .overlay { background: linear-gradient(to left, rgba(0,0,0,0.78), rgba(0,0,0,0.18)); }

.slide-content {
    position: relative; z-index: 10; color: #fff;
    padding-top: calc(var(--header-height) + 18vh); /* perfectly padded from the top */
    width: 100%;
}

.slide-tag {
    display: inline-block; font-size: .73rem; font-weight: 800;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--accent); border: 1px solid rgba(197,160,89,0.35);
    padding: .28rem .72rem; border-radius: 999px; margin-bottom: 1.3rem;
    background: rgba(197,160,89,0.08); backdrop-filter: blur(4px);
}

.slide-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 900;
    line-height: 1.0; letter-spacing: -.03em; margin-bottom: 1.3rem;
    text-shadow: 0 4px 32px rgba(0,0,0,0.28);
    max-width: 800px;
}
.hero-accent { color: var(--accent); }

.slide-lead {
    font-size: clamp(.92rem, 1.4vw, 1.06rem);
    color: rgba(255,255,255,0.86); line-height: 1.7;
    max-width: 50ch; margin-bottom: 1.9rem; font-weight: 400;
}

.slide-cta { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }

/* Floating badge on first slide */
.slide-badge { position: absolute; bottom: 10%; right: 6%; z-index: 11; }
.slide-badge-inner {
    background: linear-gradient(135deg, #1b4332, #0f2920);
    border: 1px solid rgba(197,160,89,0.3); border-radius: 16px;
    padding: 1rem 1.35rem; display: flex; flex-direction: column;
    align-items: center; gap: .12rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    animation: floatBadge 5s ease-in-out infinite;
}
.slide-badge-num { font-size: 1.75rem; font-weight: 900; color: var(--accent); line-height: 1; }
.slide-badge-txt { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: .07em; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
[dir="rtl"] .slide-badge { right: auto; left: 6%; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); z-index: 12; display: flex; flex-direction: column; align-items: center; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(197,160,89,0.4)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: .4; transform: scaleY(.6); } }

/* Slider controls */
.slider-controls { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; padding: 0 1.5rem; z-index: 20; pointer-events: none; }
.slider-controls button { pointer-events: auto; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); width: 50px; height: 50px; border-radius: 50%; display: inline-grid; place-items: center; font-size: 1.1rem; color: #fff; cursor: pointer; transition: background .25s ease, transform .25s ease; }
.slider-controls button:hover { background: rgba(197,160,89,0.4); transform: scale(1.08); }

.slider-dots { position: absolute; left: 50%; bottom: 2.5rem; transform: translateX(-50%); z-index: 20; display: flex; gap: .6rem; }
.slider-dots .dot { width: 10px; height: 10px; background: rgba(255,255,255,0.4); border-radius: 50%; border: none; padding: 0; cursor: pointer; transition: background .25s, transform .25s; }
.slider-dots .dot.active { background: var(--accent); transform: scale(1.2); }

@media (max-width: 900px) { .hero-slider { height: 90vh; } }
@media (max-width: 700px) {
    .slide-content { padding-top: calc(var(--header-height) + .5rem); }
    .slide-badge { display: none; }
    .scroll-indicator { display: none; }
}
@media (max-width: 480px) { .hero-slider { height: 100svh; } }

/* ── GLOBAL BUTTONS ── */
.btn-gold {
    display: inline-block; padding: .88rem 1.9rem;
    background: linear-gradient(135deg, #d4b46a, #c5a059);
    color: #1a2c1e; text-decoration: none; font-weight: 800;
    font-size: .9rem; border-radius: 10px; letter-spacing: .02em;
    transition: transform .3s cubic-bezier(.2,.9,.2,1), box-shadow .3s ease, filter .2s ease;
    box-shadow: 0 8px 24px rgba(197,160,89,0.28); border: none; cursor: pointer;
}
.btn-gold:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(197,160,89,0.38); filter: brightness(1.05); }

.btn-ghost {
    display: inline-block; padding: .88rem 1.9rem;
    background: rgba(255,255,255,0.1); color: #fff;
    text-decoration: none; font-weight: 700; font-size: .9rem;
    border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px); transition: background .25s ease, border-color .25s ease, transform .3s ease; cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); }

/* shine effect on buttons */
.btn-gold, .btn-ghost { position: relative; overflow: hidden; }
.btn-gold::after, .btn-ghost::after { content: ''; position: absolute; top: -40%; left: -60%; width: 180%; height: 200%; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0) 100%); transform: translateX(-100%) rotate(8deg); transition: transform .65s cubic-bezier(.2,.9,.2,1); pointer-events: none; }
.btn-gold:hover::after, .btn-ghost:hover::after { transform: translateX(100%) rotate(8deg); }
.btn-gold:focus-visible, .btn-ghost:focus-visible { outline: 3px solid rgba(197,160,89,0.3); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { .btn-gold, .btn-ghost { transition: none !important; } .btn-gold::after, .btn-ghost::after { display: none !important; } }

/* ── TRUST BAR ── */
.trust-bar { background: var(--primary); padding: .8rem 0; position: relative; z-index: 5; border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .52rem; color: rgba(255,255,255,0.86); font-size: .8rem; font-weight: 600; padding: .35rem 1.3rem; white-space: nowrap; }
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
@media (max-width: 780px) { .trust-bar-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .3rem; } .trust-item { padding: .3rem .9rem; } .trust-divider { display: none; } }

/* ── HOME PRODUCTS ── */
.home-products-section {
    padding: 5.5rem 0 6rem;
    background: linear-gradient(180deg, #f7fbf9 0%, #fff 100%);
    position: relative;
}
.home-products-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(197,160,89,0.035) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }

.home-section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.home-section-header.center { flex-direction: column; align-items: center; text-align: center; }
.home-section-header h2, .home-section-header.center h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--primary); letter-spacing: -.025em; margin: .25rem 0 .5rem; line-height: 1.1; }
.home-section-header p, .home-section-header.center p { font-size: 1rem; color: #3d5248; max-width: 55ch; line-height: 1.65; margin: 0; }
.home-products-cta { flex-shrink: 0; white-space: nowrap; }

.home-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; align-items: stretch;
    position: relative; z-index: 1;
}

.home-cat-card {
    display: flex; flex-direction: column;
    border-radius: 20px; overflow: hidden;
    text-decoration: none; color: inherit;
    background: linear-gradient(180deg, #ffffff 0%, #f9fdfa 100%);
    box-shadow: 0 14px 44px rgba(9,30,66,0.05);
    border: 1px solid rgba(197,160,89,0.06);
    transition: transform .45s cubic-bezier(.2,.9,.2,1), box-shadow .45s ease, border-color .3s ease;
    position: relative;
}
.home-cat-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 40px 90px rgba(9,30,66,0.12);
    border-color: rgba(197,160,89,0.3);
}
.home-cat-card:hover .home-cat-img-wrap img { transform: scale(1.08) rotate(-1deg); filter: saturate(1.1); }
.home-cat-card:hover .home-cat-arrow { 
    background: var(--accent); 
    color: #fff; 
    transform: translate(4px, -4px) scale(1.05); 
    box-shadow: 0 10px 24px rgba(197,160,89,0.3);
}

.home-cat-img-wrap { height: 260px; flex-shrink: 0; overflow: hidden; position: relative; }
.home-cat-img-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(4,20,14,0.1) 100%);
    pointer-events: none; opacity: 0; transition: opacity .4s ease;
}
.home-cat-card:hover .home-cat-img-wrap::after { opacity: 1; }
.home-cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.9,.2,1), filter .4s ease; }

.home-cat-content { flex: 1; padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .5rem; position: relative; border-top: 1px solid #f0f4f2; }
.home-cat-content h3 { font-size: 1.25rem; font-weight: 900; color: var(--primary); margin: 0; }
.home-cat-content p { font-size: .95rem; color: #5a6f6a; margin: 0; line-height: 1.55; }
.home-cat-tag { display: inline-block; background: rgba(197,160,89,0.12); color: #9c7a31; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 999px; margin-bottom: .25rem; align-self: flex-start; }

.home-cat-arrow {
    position: absolute; top: 1.6rem; right: 1.6rem; bottom: auto;
    width: 42px; height: 42px; background: rgba(255,255,255,0.95);
    border-radius: 50%; display: grid; place-items: center;
    color: var(--primary); box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transition: transform .35s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
[dir="rtl"] .home-cat-arrow { right: auto; left: 1.6rem; transform: scaleX(-1); }
[dir="rtl"] .home-cat-card:hover .home-cat-arrow { transform: scaleX(-1) translate(-4px, -4px) scale(1.05); }

.home-cat-card.reveal { opacity: 0; transform: translateY(24px); }
.home-cat-card.in-view { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.9,.2,1); }

@media (max-width: 1100px) { .home-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .home-cat-grid { grid-template-columns: 1fr; } .home-section-header { flex-direction: column; align-items: flex-start; } .home-products-section { padding: 3.5rem 0 4rem; } }

/* ── HOME SOURCING ── */
.home-sourcing-section { padding: 5.5rem 0 6rem; background: var(--primary); position: relative; overflow: hidden; }
.home-sourcing-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(197,160,89,0.07) 0%, transparent 60%); pointer-events: none; }

.home-sourcing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }

.home-sourcing-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.3); aspect-ratio: 4/3; }
.home-sourcing-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.home-sourcing-image:hover img { transform: scale(1.04); }
.sourcing-img-badge { position: absolute; bottom: 1.4rem; left: 1.4rem; background: rgba(15,40,25,0.88); backdrop-filter: blur(8px); border: 1px solid rgba(197,160,89,0.25); border-radius: 12px; padding: .65rem 1rem; display: flex; align-items: center; gap: .6rem; color: #fff; }
.sourcing-badge-icon { color: var(--accent); display: flex; }
.sourcing-badge-text { font-size: .82rem; font-weight: 700; }
[dir="rtl"] .sourcing-img-badge { left: auto; right: 1.4rem; }

.home-sourcing-content h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; color: #fff; letter-spacing: -.025em; margin-bottom: 1rem; line-height: 1.1; }
.home-sourcing-content > p { font-size: 1rem; color: rgba(255,255,255,0.74); line-height: 1.72; margin-bottom: 2rem; max-width: 56ch; }

.sourcing-countries { margin-bottom: 2rem; }
.sourcing-country-label { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,0.48); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .7rem; }
.flag-list { display: flex; gap: .75rem; flex-wrap: wrap; }
.flag-tile { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); padding: .45rem .8rem; border-radius: 10px; display: inline-flex; align-items: center; gap: .55rem; color: rgba(255,255,255,0.84); text-decoration: none; position: relative; transition: background .2s ease, transform .25s ease, box-shadow .25s ease; }
.flag-tile:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); box-shadow: 0 14px 38px rgba(0,0,0,0.22); }
.flag-badge { width: 38px; height: 28px; display: inline-grid; place-items: center; border-radius: 5px; overflow: hidden; }
.flag-badge svg { display: block; width: 100%; height: auto; }
.flag-name { font-weight: 700; font-size: .86rem; }
.flag-tooltip { position: absolute; left: 50%; transform: translate(-50%, 8px); bottom: -40px; background: #0f2b20; color: #fff; font-size: .8rem; padding: .38rem .6rem; border-radius: 6px; opacity: 0; pointer-events: none; white-space: nowrap; transition: opacity .18s ease, transform .18s ease; box-shadow: 0 8px 22px rgba(0,0,0,0.25); z-index: 20; }
.flag-tooltip::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); top: -5px; border: 5px solid transparent; border-bottom-color: #0f2b20; }
.flag-tile:hover .flag-tooltip, .flag-tile:focus .flag-tooltip { opacity: 1; transform: translate(-50%, 0); }

.home-sourcing-stats { display: flex; gap: .75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.home-stat-chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(197,160,89,0.15); border-radius: 12px; padding: .8rem 1.1rem; display: flex; flex-direction: column; gap: .15rem; flex: 1; min-width: 90px; }
.home-stat-chip-num { font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.home-stat-chip-label { font-size: .73rem; font-weight: 600; color: rgba(255,255,255,0.58); text-transform: uppercase; letter-spacing: .06em; }

.home-sourcing-actions { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }
.home-sourcing-ghost { display: inline-block; padding: .88rem 1.9rem; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88); border: 1.5px solid rgba(255,255,255,0.2); border-radius: 10px; font-weight: 700; font-size: .9rem; text-decoration: none; transition: background .25s ease, border-color .25s ease; }
.home-sourcing-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }

.home-sourcing-image.reveal { opacity: 0; transform: translateX(-30px); }
.home-sourcing-image.in-view { opacity: 1; transform: translateX(0); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.9,.2,1); }
.home-sourcing-content.reveal { opacity: 0; transform: translateX(30px); }
.home-sourcing-content.in-view { opacity: 1; transform: translateX(0); transition: opacity .65s ease .1s, transform .65s cubic-bezier(.2,.9,.2,1) .1s; }
[dir="rtl"] .home-sourcing-image.reveal { transform: translateX(30px); }
[dir="rtl"] .home-sourcing-content.reveal { transform: translateX(-30px); }

@media (max-width: 1000px) { .home-sourcing-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 560px) { .home-sourcing-section { padding: 3.5rem 0 4rem; } .home-sourcing-actions { flex-direction: column; } .home-sourcing-actions .btn-gold, .home-sourcing-ghost { width: 100%; text-align: center; } }

/* ── HOME PROMO BAND ── */
.home-promo-band { background: #fff; padding: 3rem 0; overflow: hidden; }
.home-promo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.promo-media-strip { display: flex; gap: .85rem; }
.promo-media-tile { flex: 1; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px rgba(9,30,66,0.1); aspect-ratio: 1; animation: floaty 6s ease-in-out infinite; }
.promo-media-tile:nth-child(2) { animation-delay: 1.2s; margin-top: 1.5rem; }
.promo-media-tile:nth-child(3) { animation-delay: 0.6s; }
.promo-media-tile:nth-child(4) { animation-delay: 1.8s; margin-top: 1.5rem; }
.promo-media-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.promo-badge-tag { display: inline-block; background: rgba(197,160,89,0.12); color: #9c7a31; font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: .26rem .68rem; border-radius: 999px; margin-bottom: .9rem; }
.home-promo-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 900; color: var(--primary); letter-spacing: -.025em; margin-bottom: .85rem; line-height: 1.1; }
.home-promo-copy p { font-size: 1rem; color: #3d5248; line-height: 1.68; margin-bottom: 1.75rem; }
.home-promo-btn { display: inline-block; padding: .9rem 2.2rem; background: var(--primary); color: #fff; font-weight: 800; border-radius: 10px; text-decoration: none; font-size: .9rem; transition: transform .3s ease, box-shadow .3s ease, background .25s ease; box-shadow: 0 12px 32px rgba(27,67,50,0.3); }
.home-promo-btn:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(27,67,50,0.4); background: #143626; }

@media (max-width: 900px) { .home-promo-inner { grid-template-columns: 1fr; } .promo-media-strip { display: grid; grid-template-columns: repeat(4,1fr); } }
@media (max-width: 560px) { .promo-media-strip { grid-template-columns: repeat(2,1fr); } .promo-media-tile { margin-top: 0 !important; } }

/* ── HOME WHY SECTION ── */
.home-why-section { padding: 5.5rem 0 6rem; background: linear-gradient(180deg, #f7fbf9 0%, #fff 50%); }
.home-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: .5rem; }

.home-why-step { background: #fff; border-radius: 18px; padding: 2rem 1.65rem; box-shadow: 0 14px 44px rgba(9,30,66,0.06); display: flex; flex-direction: column; gap: .85rem; position: relative; overflow: hidden; border-top: 4px solid transparent; transition: transform .4s cubic-bezier(.2,.9,.2,1), box-shadow .4s ease, border-color .25s ease; }
.home-why-step::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(197,160,89,0.03), transparent); opacity: 0; transition: opacity .3s ease; }
.home-why-step:hover { transform: translateY(-10px); box-shadow: 0 36px 80px rgba(9,30,66,0.12); border-top-color: var(--accent); }
.home-why-step:hover::before { opacity: 1; }
.home-why-step:hover .home-why-step-icon { background: rgba(197,160,89,0.15); transform: scale(1.1) rotate(-4deg); }

.home-why-step-num { font-size: 3rem; font-weight: 900; color: rgba(197,160,89,0.12); letter-spacing: -.04em; line-height: 1; position: absolute; top: 1rem; right: 1.25rem; }
[dir="rtl"] .home-why-step-num { right: auto; left: 1.25rem; }
.home-why-step-icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(27,67,50,0.06); display: grid; place-items: center; color: var(--primary); flex-shrink: 0; transition: background .25s ease, transform .35s ease; }
.home-why-step h3 { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin: 0; }
.home-why-step p { font-size: .9rem; color: #475855; line-height: 1.65; margin: 0; }

.home-why-step.reveal { opacity: 0; transform: translateY(22px); }
.home-why-step.in-view { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.9,.2,1); }

@media (max-width: 1050px) { .home-why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .home-why-grid { grid-template-columns: 1fr; } .home-why-section { padding: 3.5rem 0 4rem; } }

/* ── CTA BAND ── */
.home-cta-band { background: linear-gradient(135deg, var(--primary) 0%, #0f2920 100%); padding: 4rem 0; position: relative; overflow: hidden; }
.home-cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(197,160,89,0.1) 0%, transparent 55%); pointer-events: none; }
.home-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1; }
.home-cta-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: #fff; letter-spacing: -.025em; margin-bottom: .5rem; }
.home-cta-copy p { font-size: .98rem; color: rgba(255,255,255,0.7); max-width: 52ch; line-height: 1.6; margin: 0; }
.home-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }
.home-cta-ghost { display: inline-block; padding: .88rem 1.9rem; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88); border: 1.5px solid rgba(255,255,255,0.2); border-radius: 10px; font-weight: 700; font-size: .9rem; text-decoration: none; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.home-cta-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); transform: translateY(-3px); }
@media (max-width: 700px) { .home-cta-inner { flex-direction: column; align-items: flex-start; } .home-cta-actions { width: 100%; flex-direction: column; } .home-cta-actions .btn-gold, .home-cta-ghost { width: 100%; text-align: center; } }

/* ── Global reveal helper ── */
.reveal { transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1); will-change: transform, opacity; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── PRODUCT GRID (products.html) ── */
.products-section { padding: 10rem 0; background: var(--white); position: relative; overflow: visible; }
.products-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(197,160,89,0.03) 1px, transparent 1px); background-size: 28px 28px; opacity: .28; pointer-events: none; transform: translateZ(0); }
.section-title { text-align: center; font-size: 2.6rem; margin-bottom: 3.6rem; color: var(--primary); letter-spacing: -0.02em; }
.section-lead { color: #495057; margin-bottom: 1.25rem; max-width: 780px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; align-items: stretch; }
.product-card { background: linear-gradient(180deg,#ffffff,#fcfcfc); padding: 1.6rem; border-radius: 14px; transition: transform .45s cubic-bezier(0.2,0.9,0.2,1), box-shadow .45s ease, opacity .35s ease; opacity: 0; transform: translateY(38px); box-shadow: 0 10px 30px rgba(9,30,66,0.04); display: flex; flex-direction: column; gap: .85rem; }
.product-card img { width: 100%; height: 320px; object-fit: cover; border-radius: 10px; box-shadow: 0 18px 44px rgba(9,30,66,0.06); transition: transform .45s ease, filter .35s ease; }
.product-card .product-meta { display:flex; gap: .8rem; flex-wrap:wrap; }
.product-card .btn-gold { margin-top: auto; align-self: flex-start; }
.product-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 40px 100px rgba(9,30,66,0.12); }
.product-card:hover img { transform: scale(1.04) translateZ(0); filter: saturate(1.02); }
.product-card.reveal, .product-item.reveal { opacity: 0; transform: translateY(28px); }
.product-card.in-view, .product-item.in-view { opacity: 1; transform: translateY(0); transition: opacity .6s cubic-bezier(0.2,0.9,0.2,1), transform .6s cubic-bezier(0.2,0.9,0.2,1); }
.product-list { margin: 1.75rem 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.product-item { display:flex; gap: 1rem; align-items: flex-start; background:#fff; padding: 1.15rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(9,30,66,0.04); transition: transform .35s ease, box-shadow .35s ease; }
.product-item img.product-thumb { width: 200px; height: 140px; object-fit: cover; border-radius: 10px; }
.product-item:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(9,30,66,0.08); }
.spec-table th, .spec-table td { padding: .75rem .9rem; border: 1px solid #eef3ef; }
.spec-table tbody tr:hover { background: rgba(197,160,89,0.03); }
.category-body h2 { font-size: 2rem; letter-spacing: -0.02em; margin-bottom: .8rem; }
@media (max-width: 920px) { .product-card img { height: 260px; } .product-grid { gap: 1.5rem; } }
@media (max-width: 680px) { .products-section { padding: 6rem 0; } .product-card img { height: 200px; } .product-item { flex-direction: column; } }
@media (prefers-reduced-motion: reduce) { .product-card, .product-item, .product-card img { transition: none !important; } }

/* ── Old cat-card styles (used in products.html) ── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; align-items: stretch; }
.cat-card { display: flex; gap: 1rem; align-items: center; background: linear-gradient(180deg,#ffffff,#fcfcfc); padding: 1rem 1.1rem; border-radius: 14px; text-decoration: none; color: inherit; transition: transform .45s cubic-bezier(0.2,0.9,0.2,1), box-shadow .45s ease, border-color .25s ease, opacity .45s ease; box-shadow: 0 12px 40px rgba(9,30,66,0.05); border-left: 6px solid rgba(197,160,89,0.06); overflow: hidden; position: relative; min-height: 116px; }
.cat-card::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(197,160,89,0.02), transparent); opacity: 0; transition: opacity .25s ease; border-radius: 14px; }
.cat-card:hover::after { opacity: 1; }
.cat-img { width: 112px; height: 112px; object-fit: cover; border-radius: 10px; flex-shrink: 0; box-shadow: 0 8px 20px rgba(15,30,50,0.06); transition: transform .45s cubic-bezier(0.2,0.9,0.2,1), filter .35s ease; transform: translateZ(0); }
.cat-body { display: flex; flex-direction: column; }
.cat-title { font-size: 1.05rem; font-weight: 800; margin-bottom: .2rem; color: var(--primary); }
.cat-desc { font-size: .95rem; color: #58606a; }
.cat-card.reveal { opacity: 0; transform: translateY(18px) scale(.995); }
.cat-card.in-view { opacity: 1; transform: translateY(0) scale(1); transition: opacity .55s cubic-bezier(0.2,0.9,0.2,1), transform .55s cubic-bezier(0.2,0.9,0.2,1); }
.cat-card--hero { display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 1.25rem; text-align: center; min-height: 260px; border-radius: 16px; background: linear-gradient(180deg,#ffffff,#fbfbfb); }
.cat-card--hero .cat-img { width: 200px; height: 200px; border-radius: 12px; box-shadow: 0 30px 60px rgba(9,30,66,0.08); margin-top: 6px; }
.cat-card--hero .cat-body { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.cat-card--hero .cat-title { font-size: 1.2rem; font-weight: 900; color: #111; margin-top: .6rem; }
.cat-badge { position: absolute; left: 50%; transform: translateX(-50%); top: .6rem; background: rgba(255,255,255,0.95); padding: .28rem .6rem; border-radius: 999px; font-weight: 800; font-size: .85rem; box-shadow: 0 6px 16px rgba(9,30,66,0.06); border: 1px solid rgba(9,30,66,0.04); }
.cat-card--hero .cat-cta { margin-top: .6rem; display: inline-block; }
.cat-card--hero:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 40px 80px rgba(9,30,66,0.12); }
.cat-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 26px 62px rgba(9,30,66,0.10); border-left-color: var(--accent); }
.cat-card:hover .cat-img { transform: scale(1.08) rotate(-0.6deg); }
.cat-card:focus-visible { outline: 3px solid rgba(197,160,89,0.18); outline-offset: 3px; border-left-color: var(--accent); }
@media (max-width: 680px) { .categories-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); } .cat-img { width: 76px; height: 76px; } .cat-card { min-height: auto; padding: .85rem; } .cat-card--hero { min-height: auto; padding: .75rem; } .cat-card--hero .cat-img { width: 140px; height: 140px; } }
@media (prefers-reduced-motion: reduce) { .cat-card, .cat-img, .home-cat-card, .home-why-step, .home-sourcing-image { transition: none !important; } }

/* ── Old sourcing (used in some pages) ── */
.sourcing-section { width: 100%; background: linear-gradient(180deg, #fbfbfb 0%, #f6fbf8 60%); padding: 4.2rem 0; position: relative; overflow: visible; }
.sourcing-split { display: grid; grid-template-columns: 1fr 480px; gap: 3rem; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.sourcing-left { padding: 1.2rem 1.6rem; }
.sourcing-title { font-size: 1.25rem; font-weight: 900; color: var(--primary); margin-bottom: .4rem; }
.sourcing-lead { color: #415154; margin-bottom: 1rem; font-size: 1rem; max-width: 56ch; line-height: 1.5; }
.sourcing-right { display:flex; align-items:center; justify-content:center; }
.sourcing-visual { width:100%; min-height: 320px; background: linear-gradient(180deg,#fff,#fbfbff); border-radius: 16px; padding: 1.6rem; display:flex; flex-direction:column; gap: 1rem; box-shadow: 0 30px 70px rgba(9,30,66,0.08); position: relative; overflow: hidden; }
.sourcing-visual .visual-head { font-weight:800; color: var(--primary); }
.sourcing-stats { display:flex; gap: .8rem; margin-top: .6rem; }
.sourcing-stat { flex:1; background: linear-gradient(180deg,#fff,#fbfbfb); padding: .8rem; border-radius: 10px; text-align: center; box-shadow: 0 12px 28px rgba(9,30,66,0.04); }
.sourcing-stat .num { font-size: 1.4rem; font-weight:900; color: #0f2b28; }
.sourcing-stat .label { font-size: .85rem; color: #3b4a47; }
.sourcing-left.reveal, .sourcing-right.reveal { opacity:0; transform:translateY(18px); }
.sourcing-left.in-view, .sourcing-right.in-view { opacity:1; transform:translateY(0); transition: opacity .6s cubic-bezier(.2,.9,.2,1), transform .6s cubic-bezier(.2,.9,.2,1); }
.sourcing-ctas { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 1rem; }
@media (max-width: 920px) { .sourcing-split { grid-template-columns: 1fr; } .sourcing-right { order: 2; } .sourcing-section { padding: 2.2rem 0; } }

/* =============================================
   ABOUT PAGE — COMPLETE REDESIGN
   ============================================= */

/* ── Hero ── */
.about-hero {
  padding-top: calc(var(--header-height) + 1rem);
  padding-bottom: 0;
  background: linear-gradient(160deg, #f6fbf8 0%, #fdf9f3 55%, #f9f6f0 100%);
  overflow: visible;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
}

/* Hero copy */
.about-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(197,160,89,0.1);
  padding: .32rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.about-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.08rem;
  color: #3d5248;
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 1.8rem;
}

.about-hero-ctas {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  align-items: center;
}

.about-ghost {
  background: transparent !important;
  color: var(--primary) !important;
  border: 2px solid rgba(27,67,50,0.18) !important;
  padding: .82rem 1.4rem !important;
}
.about-ghost:hover { border-color: var(--primary) !important; background: rgba(27,67,50,0.04) !important; }

/* Hero image composition */
.hero-image-composition {
  position: relative;
  height: 480px;
}

.composition-main {
  position: absolute;
  inset: 0 0 60px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(9,30,66,0.14);
  z-index: 1;
}
.composition-main img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.composition-overlay-img {
  position: absolute;
  bottom: 0; right: -28px;
  width: 200px; height: 180px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(9,30,66,0.18);
  border: 4px solid #fff;
  z-index: 2;
}
.composition-overlay-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.composition-badge {
  position: absolute;
  top: 28px; left: -28px;
  background: linear-gradient(135deg, #1b4332, #0f2b20);
  color: #fff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 16px 48px rgba(9,30,66,0.22);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  border: 1px solid rgba(197,160,89,0.25);
}
.comp-badge-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.comp-badge-txt {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* RTL composition flip */
[dir="rtl"] .composition-overlay-img { right: auto; left: -28px; }
[dir="rtl"] .composition-badge { left: auto; right: -28px; }

@media (max-width: 980px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 3.5rem;
  }
  .hero-image-composition { height: 320px; }
  .composition-overlay-img { width: 140px; height: 120px; right: -10px; }
  .composition-badge { left: -10px; top: 16px; }
  [dir="rtl"] .composition-overlay-img { left: -10px; right: auto; }
  [dir="rtl"] .composition-badge { right: -10px; left: auto; }
}

@media (max-width: 600px) {
  .about-hero-inner { padding: 2rem 0 2.5rem; }
  .hero-image-composition { height: 240px; }
  .composition-overlay-img { display: none; }
  .composition-badge { left: 10px; top: 10px; padding: .6rem .9rem; }
  [dir="rtl"] .composition-badge { right: 10px; left: auto; }
  .about-hero-ctas { flex-direction: column; }
  .about-hero-ctas .btn-gold, .about-hero-ctas .about-ghost { width: 100%; text-align: center; }
}

/* ── Pillars Strip ── */
.about-pillars-section {
  background: var(--primary);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.about-pillars-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(197,160,89,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.pillar-card {
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background .3s ease, transform .4s cubic-bezier(.2,.9,.2,1);
}
.pillar-card:last-child { border-right: none; }

.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(197,160,89,0.12);
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: transform .35s ease, background .25s ease;
}

.pillar-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.pillar-card p {
  font-size: .92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}
.pillar-card:hover { background: rgba(255,255,255,0.04); transform: translateY(-4px); }
.pillar-card:hover .pillar-icon { transform: scale(1.1); background: rgba(197,160,89,0.2); }

@media (max-width: 800px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 1.5rem; }
  .pillar-card:last-child { border-bottom: none; }
}

/* ── Vision & Mission ── */
.vision-mission-section { padding: 5rem 0 3rem; }

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.vm-card {
  padding: 3rem 2.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 20px 50px rgba(9,30,66,0.06);
  transition: transform .45s cubic-bezier(0.2,0.9,0.2,1), box-shadow .45s ease;
}
.vm-card.reveal { opacity: 0; transform: translateY(30px); }
.vm-card.in-view { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s cubic-bezier(0.2,0.9,0.2,1); }
.vm-card--vision.in-view { transition-delay: 50ms; }
.vm-card--mission.in-view { transition-delay: 160ms; }

.vm-card--vision {
  background: linear-gradient(160deg, #ffffff 0%, #fdfaf6 100%);
  border: 1px solid rgba(197,160,89,0.15);
  border-top: 5px solid var(--accent);
}
.vm-card--mission {
  background: linear-gradient(135deg, #1b4332 0%, #112d22 100%);
  color: #fff;
  border-top: 5px solid var(--accent);
}

.vm-icon {
  width: 66px; height: 66px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  transition: transform .4s ease;
  flex-shrink: 0;
}
.vm-card--vision .vm-icon { background: rgba(197,160,89,0.1); }
.vm-card--mission .vm-icon { background: rgba(255,255,255,0.07); }

.vm-card h3 { font-size: 1.75rem; font-weight: 800; margin: 0; }
.vm-card--vision h3 { color: var(--primary); }
.vm-card--mission h3 { color: var(--accent); }

.vm-card p { font-size: 1.02rem; line-height: 1.72; margin: 0; }
.vm-card--vision p { color: #4a5d58; }
.vm-card--mission p { color: rgba(255,255,255,0.82); }

.vm-card:hover { transform: translateY(-8px); box-shadow: 0 36px 80px rgba(9,30,66,0.12); }
.vm-card--mission:hover { box-shadow: 0 36px 80px rgba(15,43,32,0.3); }
.vm-card:hover .vm-icon { transform: scale(1.1) rotate(5deg); }

@media (max-width: 680px) {
  .vm-card { padding: 2rem 1.5rem; gap: 1rem; }
  .vm-card h3 { font-size: 1.45rem; }
  .vision-mission-section { padding: 3rem 0 1.5rem; }
}

/* ── Story + Stats ── */
.about-story-section { padding: 4rem 0 5rem; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: center;
}

.story-content .about-kicker { margin-bottom: .8rem; }

.story-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.story-content > p {
  font-size: 1rem;
  color: #3d5248;
  line-height: 1.75;
  max-width: 62ch;
  margin-bottom: 1.6rem;
}

.story-quote {
  border-left: 4px solid var(--accent);
  margin: 0;
  padding: .85rem 1.25rem;
  background: rgba(197,160,89,0.06);
  border-radius: 0 10px 10px 0;
}
.story-quote p {
  font-size: 1rem;
  font-style: italic;
  color: #1b4332;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
[dir="rtl"] .story-quote { border-left: none; border-right: 4px solid var(--accent); border-radius: 10px 0 0 10px; }

.story-stats-card {
  background: linear-gradient(145deg, #1b4332 0%, #0f2920 100%);
  border-radius: 22px;
  padding: 2.5rem 2.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(9,30,66,0.2);
}
.story-stats-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(197,160,89,0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.story-stats-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  margin: 0 0 .4rem;
  position: relative;
}
.stats-desc {
  font-size: .9rem;
  color: rgba(255,255,255,0.65);
  margin: 0 0 2rem;
  line-height: 1.5;
}

.stats-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(197,160,89,0.14);
  border-radius: 12px;
  padding: 1rem .75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: background .25s ease, transform .35s ease;
}
.stat-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.stat-number {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-card-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
  .stats-card-grid { grid-template-columns: 1fr; gap: .75rem; }
  .about-story-section { padding: 3rem 0 3.5rem; }
}

/* ── Why Choose Us ── */
.why-choose-section {
  background: linear-gradient(180deg, #f6fbf8 0%, #fff 100%);
  padding: 5rem 0 6rem;
  position: relative;
}
.why-choose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(197,160,89,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .35;
  pointer-events: none;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.section-header-center .about-kicker { margin-bottom: .75rem; }
.section-header-center h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.02em;
  margin: 0;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.why-card-item {
  background: linear-gradient(180deg, #fff, #fcfcfb);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  box-shadow: 0 16px 44px rgba(9,30,66,0.06);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  border-top: 4px solid transparent;
  transition: transform .4s cubic-bezier(.2,.9,.2,1), box-shadow .4s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.why-card-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(197,160,89,0.03), transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
}
.why-card-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 36px 80px rgba(9,30,66,0.12); border-top-color: var(--accent); }
.why-card-item:hover::after { opacity: 1; }
.why-card-item:hover .why-card-icon { transform: scale(1.12) rotate(-4deg); background: rgba(197,160,89,0.15); }

.why-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(27,67,50,0.06);
  display: grid;
  place-items: center;
  color: var(--primary);
  transition: transform .35s ease, background .25s ease;
  flex-shrink: 0;
}

.why-card-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f2b28;
  margin: 0;
}
.why-card-item p {
  font-size: .93rem;
  color: #475855;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1050px) { .why-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .why-cards-grid { grid-template-columns: 1fr; } .why-choose-section { padding: 3.5rem 0 4rem; } }

@media (prefers-reduced-motion: reduce) {
  .vm-card, .pillar-card, .why-card-item, .stat-item,
  .composition-main, .composition-overlay-img, .vm-icon,
  .pillar-icon, .why-card-icon { transition: none !important; }
}

/* ── Legacy about styles kept for backward compat (not used on new page) ── */
.about-section { padding: 3.25rem 0; color: #14302b; }
.about-section h2 { font-size: 2rem; color: var(--primary); margin-bottom: .8rem; }
.about-section p { max-width: 68ch; margin-bottom: 1.25rem; color: #354b47; }
.about-stats { display:flex; gap: 1rem; margin-top: 1rem; }
.about-stats .stat { background: linear-gradient(180deg,#fff,#fbfbfb); padding: 1rem 1.1rem; border-radius: 12px; box-shadow: 0 14px 36px rgba(9,30,66,0.06); flex:1; text-align:center; }
.about-stats .num { font-weight:900; font-size: 1.5rem; color: var(--primary); }
.about-stats .label { color: #3b4a47; margin-top: .35rem; }
.why-choose { padding: 2.6rem 0 6rem; }
.why-choose h2 { color: var(--primary); margin-bottom: 1rem; }
.why-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.why-card { background: linear-gradient(180deg,#fff,#fcfcfb); padding: 1.25rem; border-radius: 12px; box-shadow: 0 16px 40px rgba(9,30,66,0.06); }
.why-card h3 { color: #0f2b28; margin-bottom: .45rem; }
.why-card p { color: #465856; }
.why-list-wrap { display:flex; gap: 2rem; align-items:flex-start; flex-wrap:wrap; }
.why-list { list-style: none; padding: 0; margin: 0; max-width: 520px; }
.why-list li { position: relative; padding-left: 28px; margin-bottom: .8rem; color: #1f3b36; }
.why-list li::before { content: '•'; position: absolute; left: 0; top: 0; color: var(--accent); font-size: 1.4rem; line-height: 1; }
@media (max-width: 920px) {
  .about-hero-inner { grid-template-columns: 1fr; padding: 2rem 0; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; }
  .why-list-wrap { flex-direction: column; }
}

/* left image hero (old — kept for reference) */
.hero-image { width: 100%; height: 420px; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 70px rgba(9,30,66,0.12); position: relative; }
.hero-image img { width:100%; height:100%; object-fit: cover; display:block; }
.hero-overlay .hero-copy { color: #fff; max-width: 86%; }
.hero-overlay .hero-copy h1 { color: #fff; font-size: 2.2rem; margin-bottom: .6rem; }
.hero-overlay .hero-copy .lead { color: rgba(255,255,255,0.92); margin-bottom: .9rem; }
.hero-overlay .hero-copy .btn-gold { margin-bottom: 3rem; background: var(--accent); color: #112a24; }
.hero-features { display:flex; flex-direction:column; gap: .9rem; }
.hero-features .feature { background: #fff; padding: 1rem; border-radius: 12px; box-shadow: 0 12px 30px rgba(9,30,66,0.06); }
.hero-features .feature h4 { margin-bottom: .35rem; color: var(--primary); font-weight:800; }

/* ── Reveal helpers for new About components ── */
.about-hero-copy.reveal, .hero-image-composition.reveal,
.story-content.reveal, .story-stats-card.reveal {
  opacity: 0; transform: translateY(24px);
}
.about-hero-copy.in-view { opacity: 1; transform: translateY(0); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.9,.2,1); }
.hero-image-composition.in-view { opacity: 1; transform: translateY(0); transition: opacity .65s ease .1s, transform .65s cubic-bezier(.2,.9,.2,1) .1s; }
.story-content.in-view { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.9,.2,1); }
.story-stats-card.in-view { opacity: 1; transform: translateY(0); transition: opacity .6s ease .1s, transform .6s cubic-bezier(.2,.9,.2,1) .1s; }

.pillar-card.reveal, .why-card-item.reveal {
  opacity: 0; transform: translateY(22px);
}
.pillar-card.in-view, .why-card-item.in-view {
  opacity: 1; transform: translateY(0);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.9,.2,1);
}
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.4rem;
  align-items: center;
  padding: 4rem 0;
}
.about-hero .hero-copy h1 { padding-top: 30px; font-size: 2.4rem; color: var(--primary); margin-bottom: .8rem; }
.about-hero .lead { color: #2f3f3a; max-width: 56ch; margin-bottom: 1rem; }
.about-hero .hero-features { display:flex; flex-direction:column; gap: .9rem; }
.about-hero .feature { background: #fff; padding: 1rem; border-radius: 12px; box-shadow: 0 12px 30px rgba(9,30,66,0.06); }
.about-hero .feature h4 { margin-bottom: .35rem; color: var(--primary); font-weight:800; }

/* --- VISION & MISSION SECTION --- */
.vision-mission-section {
    padding: 4.5rem 0 2rem;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.vm-card {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 20px 50px rgba(9,30,66,0.06);
    transition: transform .45s cubic-bezier(0.2,0.9,0.2,1), box-shadow .45s ease, opacity .45s ease;
    opacity: 0;
    transform: translateY(30px);
}

.vm-card.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.vm-card.in-view {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s cubic-bezier(0.2,0.9,0.2,1), transform .6s cubic-bezier(0.2,0.9,0.2,1);
}

.vm-card--vision.in-view {
    transition-delay: 50ms;
}
.vm-card--mission.in-view {
    transition-delay: 150ms;
}

.vm-card--vision {
    background: linear-gradient(180deg, #ffffff, #fcfaf6);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-top: 6px solid var(--accent);
}

.vm-card--mission {
    background: linear-gradient(135deg, var(--primary) 0%, #112d22 100%);
    color: var(--white);
    border-top: 6px solid var(--accent);
}

.vm-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    transition: transform 0.45s ease;
}

.vm-card--vision .vm-icon {
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent);
}

.vm-card--mission .vm-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
}

.vm-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.vm-card--vision h3 {
    color: var(--primary);
}

.vm-card--mission h3 {
    color: var(--accent);
}

.vm-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.vm-card--vision p {
    color: #4a5d58;
}

.vm-card--mission p {
    color: rgba(255, 255, 255, 0.85);
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(9, 30, 66, 0.12);
}

.vm-card--mission:hover {
    box-shadow: 0 35px 80px rgba(27, 67, 50, 0.25);
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 680px) {
    .vm-card {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }
    .vm-card h3 {
        font-size: 1.5rem;
    }
    .vision-mission-section {
        padding-top: 3rem;
    }
}

.about-section { padding: 3.25rem 0; color: #14302b; }
.about-section h2 { font-size: 2rem; color: var(--primary); margin-bottom: .8rem; }
.about-section p { max-width: 68ch; margin-bottom: 1.25rem; color: #354b47; }
.about-stats { display:flex; gap: 1rem; margin-top: 1rem; }
.about-stats .stat { background: linear-gradient(180deg,#fff,#fbfbfb); padding: 1rem 1.1rem; border-radius: 12px; box-shadow: 0 14px 36px rgba(9,30,66,0.06); flex:1; text-align:center; }
.about-stats .num { font-weight:900; font-size: 1.5rem; color: var(--primary); }
.about-stats .label { color: #3b4a47; margin-top: .35rem; }

.why-choose { padding: 2.6rem 0 6rem; }
.why-choose h2 { color: var(--primary); margin-bottom: 1rem; }
.why-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.why-card { background: linear-gradient(180deg,#fff,#fcfcfb); padding: 1.25rem; border-radius: 12px; box-shadow: 0 16px 40px rgba(9,30,66,0.06); }
.why-card h3 { color: #0f2b28; margin-bottom: .45rem; }
.why-card p { color: #465856; }

@media (max-width: 920px) {
  .about-hero-inner { grid-template-columns: 1fr; padding: 2rem 0; }
  .about-hero { padding-bottom: 1.25rem; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; }
}

/* left image hero with overlaying text */
.about-hero-inner { display: grid; grid-template-columns: 420px 1fr; gap: 2.4rem; align-items: center; padding: 4rem 0; }
.hero-image { width: 100%; height: 420px; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 70px rgba(9,30,66,0.12); position: relative; }
.hero-image img { width:100%; height:100%; object-fit: cover; display:block; }
/* .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.36), rgba(0,0,0,0.18)); display: flex; align-items: center; padding: 2rem; } */
.hero-overlay .hero-copy { color: #fff; max-width: 86%; }
.hero-overlay .hero-copy h1 { color: #fff; font-size: 2.2rem; margin-bottom: .6rem; }
.hero-overlay .hero-copy .lead { color: rgba(255,255,255,0.92); margin-bottom: .9rem; }
.hero-overlay .hero-copy .btn-gold { margin-bottom: 3rem; background: var(--accent); color: #112a24; }

.hero-features { display:flex; flex-direction:column; gap: .9rem; }
.hero-features .feature { background: #fff; padding: 1rem; border-radius: 12px; box-shadow: 0 12px 30px rgba(9,30,66,0.06); }
.hero-features .feature h4 { margin-bottom: .35rem; color: var(--primary); font-weight:800; }

.why-list-wrap { display:flex; gap: 2rem; align-items:flex-start; flex-wrap:wrap; }
.why-list { list-style: none; padding: 0; margin: 0; max-width: 520px; }
.why-list li { position: relative; padding-left: 28px; margin-bottom: .8rem; color: #1f3b36; }
.why-list li::before { content: '•'; position: absolute; left: 0; top: 0; color: var(--accent); font-size: 1.4rem; line-height: 1; }

@media (max-width: 920px) {
  .about-hero-inner { grid-template-columns: 1fr; padding: 2rem 0; }
  .hero-image { height: 260px; border-radius: 12px; }
  .hero-overlay .hero-copy h1 { font-size: 1.6rem; }
  .why-list-wrap { flex-direction: column; }
}


/* Responsive hero slider */
@media (max-width: 900px) {
  .hero-slider { height: 90vh; }
}
@media (max-width: 480px) {
  .hero-slider { height: 100svh; }
}

/* --- HERO TYPOGRAPHY & ANIMATIONS --- */
.kicker {
    display: inline-block;
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(255,255,255,0.92);
    margin-bottom: .8rem;
}

.hero-accent { color: var(--accent); }

.lead {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.4rem;
}

.slide-cta { display: flex; gap: 0.8rem; align-items: center; }

/* btn-ghost defined above in home CSS — this is a fallback for any page using the old class */

/* Global button hover/shine effects (applies to .btn-gold, .btn-ghost and future .btn utility) */
.btn, .btn-gold, .btn-ghost, .promo-cta, .cat-cta { position: relative; overflow: hidden; display: inline-block; transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s ease; will-change: transform; }

/* subtle shining swipe using an animated pseudo-element */
.btn::after, .btn-gold::after, .btn-ghost::after, .promo-cta::after { content: ''; position: absolute; top: -40%; left: -60%; width: 180%; height: 200%; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 100%); transform: translateX(-100%) rotate(8deg); transition: transform .7s cubic-bezier(.2,.9,.2,1); pointer-events: none; mix-blend-mode: overlay; }

/* hover triggers swipe + lift */
.btn:hover, .btn-gold:hover, .btn-ghost:hover, .promo-cta:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 14px 36px rgba(9,30,66,0.12); }
.btn:hover::after, .btn-gold:hover::after, .btn-ghost:hover::after, .promo-cta:hover::after { transform: translateX(100%) rotate(8deg); }

/* active / press state */
.btn:active, .btn-gold:active, .btn-ghost:active, .promo-cta:active { transform: translateY(-2px) scale(.997); }

/* focus accessibility */
.btn:focus-visible, .btn-gold:focus-visible, .btn-ghost:focus-visible { outline: 3px solid rgba(197,160,89,0.18); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn-gold, .btn-ghost, .promo-cta { transition: none !important; }
  .btn::after, .btn-gold::after, .btn-ghost::after, .promo-cta::after { display: none !important; }
}

/* Show/transition elements when slide becomes active (stagger via delays) */
.slide .slide-content > * { transition: opacity .45s ease, transform .45s ease; }
.slide.active .kicker { opacity: 1; transform: translateY(0); transition-delay: .12s; }
.slide.active h1 { opacity: 1; transform: translateY(0); transition-delay: .22s; }
.slide.active .lead { opacity: 1; transform: translateY(0); transition-delay: .32s; }
.slide.active .slide-cta { opacity: 1; transform: translateY(0); transition-delay: .42s; }

@media (max-width: 900px) {
  .slide-content h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .slide-content h1 { font-size: 1.6rem; }
  .lead { font-size: 0.95rem; }
  .slide-cta { flex-direction: column; gap: .6rem; }
}

/* --- PRODUCT PAGE HERO (RICH) --- */
.product-hero.hero-rich {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}
.product-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.35)); z-index: 1; }
.hero-inner { position: relative; z-index: 2; display: flex; gap: 2.4rem; align-items: center; padding: 5rem 0; }
.hero-copy { max-width: 740px; }
.kicker { display:inline-block; background: rgba(255,255,255,0.07); padding: .35rem .8rem; border-radius: 999px; font-weight:800; letter-spacing: .08em; color: #fff; }
.hero-title { font-size: 2.6rem; margin: .6rem 0; line-height: 1.02; font-weight: 900; text-shadow: 0 12px 30px rgba(1,6,12,0.6); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.92); max-width: 62ch; }
.hero-features { display:flex; gap: .8rem; margin-top: 1.1rem; }
.hero-features li { background: rgba(255,255,255,0.06); padding: .55rem .9rem; border-radius: 9px; font-weight:700; color: #fff; }
.hero-ctas { margin-top: 1.6rem; display:flex; gap: .8rem; align-items: center; }
.hero-ctas .btn-gold { padding: 0.95rem 1.6rem; font-size: 1rem; }
.hero-ctas .btn-ghost { padding: 0.9rem 1.2rem; color: #fff; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); }
.hero-ctas .secondary { opacity: 0.9; }
.hero-media img { width: 420px; max-width: 38vw; height: auto; border-radius: 12px; box-shadow: 0 30px 60px rgba(9,30,66,0.38); transform: translateY(0); }

/* fallback simple hero used on smaller screens */
@media (max-width: 920px) {
  .hero-inner { flex-direction: column-reverse; align-items: flex-start; padding: 3.2rem 0; }
  .hero-media img { width: 100%; max-width: none; height: 260px; object-fit: cover; }
  .hero-title { font-size: 1.8rem; }
  .hero-sub { font-size: .98rem; }
  .hero-features { flex-wrap: wrap; }
}

/* legacy quick-links (kept for accessibility if needed) */
.quick-links { display:none; }

/* Testimonial section — unique layout, colors & effects */
.testimonials-section { padding: 5rem 0; background: linear-gradient(180deg, #fff8f6 0%, #fbfcfb 60%); --ts-accent: #c76b3b; }
.testimonials-section::after { content: ''; position: absolute; left: -6%; top: 6%; width: 40%; height: 120%; background: radial-gradient(circle at 20% 20%, rgba(199,107,59,0.06), transparent 35%); transform: rotate(-6deg); border-radius: 18px; pointer-events: none; }
.testimonials-head { text-align: left; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.testimonials-head .section-title { margin-bottom: .2rem; color: var(--primary); letter-spacing: .02em; }
.testimonials-head .section-lead { margin: 0; color: #3b4a47; max-width: 60ch; }

.testimonials-wrap { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: start; }
.testimonials-scroller { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.testimonials-scroller::-webkit-scrollbar { display: none; height: 0; }

/* Card: glass + meat-accent edge + subtle shimmer */
.testimonial-card { --card-bg: rgba(255,255,255,0.76); min-width: 320px; max-width: 380px; background: linear-gradient(180deg,var(--card-bg), rgba(255,255,255,0.9)); padding: 1.4rem; border-radius: 14px; border: 1px solid rgba(199,107,59,0.06); box-shadow: 0 36px 90px rgba(9,30,66,0.10); position: relative; scroll-snap-align: center; transform-origin: center; transition: transform .36s cubic-bezier(.2,.9,.2,1), box-shadow .32s ease, filter .25s ease; backdrop-filter: blur(6px); overflow: hidden; }
.testimonial-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(199,107,59,0.02), transparent 60%); mix-blend-mode: multiply; pointer-events: none; opacity: .95; transform: translateZ(0); }
.testimonial-card::after { content: ''; position: absolute; left: -30%; top: -20%; width: 160%; height: 120%; background: linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.14) 30%, rgba(255,255,255,0.06) 60%, rgba(255,255,255,0.03) 100%); transform: rotate(-18deg); filter: blur(10px); opacity: .0; transition: opacity .5s ease; }
.testimonial-card:hover::after { opacity: .9; }

/* animated quote mark */
@keyframes quoteFloat { 0%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} 100%{ transform: translateY(0);} }
.testimonial-card .quote-mark { font-size: 3.8rem; color: rgba(199,107,59,0.12); font-weight: 900; line-height: 0.7; margin-bottom: .4rem; display: inline-block; animation: quoteFloat 4.5s ease-in-out infinite; }

.testimonial-card .quote { font-size: 1rem; color: #213433; margin-bottom: .95rem; line-height: 1.55; }

.client { display:flex; gap: .9rem; align-items: center; }
.avatar { width:48px; height:48px; border-radius: 50%; background: linear-gradient(180deg,#f8e8df,#f0d2bd); color: #5b2b1d; display:grid; place-items:center; font-weight:900; box-shadow: 0 8px 20px rgba(197,160,89,0.06); border: 3px solid rgba(199,107,59,0.08); }
.client-meta .client-name { font-weight:800; color: #112b27; }
.client-meta .client-role { font-size: .85rem; color: #526667; }

/* 3D micro-tilt on hover/focus */
.testimonial-card:focus, .testimonial-card:focus-visible { outline: none; transform: translateY(-10px) rotateX(4deg) scale(1.02); box-shadow: 0 44px 110px rgba(9,30,66,0.14); }
.testimonial-card:focus .quote-mark, .testimonial-card:hover .quote-mark { color: rgba(199,107,59,0.18); }
.testimonial-card:hover { transform: translateY(-12px) rotate(-0.8deg) scale(1.02); box-shadow: 0 44px 110px rgba(9,30,66,0.14); }

/* subtle shine for highlighted cards */
.testimonial-card[data-highlight]::after { opacity: .96; }

/* controls */
.testimonials-controls { display:flex; gap: .5rem; margin-top: .85rem; justify-content:flex-end; }
.testimonials-controls button { background: linear-gradient(180deg,#fff,#fbf8f6); border: none; padding: .6rem .8rem; border-radius: 10px; box-shadow: 0 10px 28px rgba(9,30,66,0.06); cursor: pointer; color: var(--ts-accent); font-weight:700; }

/* Reveal handling */
.testimonials-section.reveal { opacity: 0; transform: translateY(18px) scale(.998); }
.testimonials-section.in-view { opacity: 1; transform: translateY(0); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.9,.2,1); }

@media (max-width: 920px) {
  .testimonials-scroller { padding-left: 1rem; }
  .testimonial-card { min-width: 280px; max-width: 340px; }
  .testimonials-controls { display:none; }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card, .testimonial-card .quote-mark, .testimonials-section { transition: none !important; animation: none !important; }
}

/* keep related product page styles intact (rest of section rules) */
.product-page-title { font-size: 2.4rem; color: var(--primary); margin-bottom: .5rem; }
.product-page-lead { color: #5b6770; margin-bottom: 1.2rem; max-width: 780px; }

.category-section { padding: 3.2rem 0; border-bottom: 1px solid #eef3ef; }
/* Left image removed: hide left panel and allow the category-body to expand */
.category-section .category-media { display: none; }
.category-section .category-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; align-items: start; }
.category-media img { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; box-shadow: 0 8px 30px rgba(9,30,66,0.04); }
.category-body h2 { font-size: 1.6rem; color: var(--primary); margin-bottom: .6rem; }
.category-body h3 { margin-top: .9rem; margin-bottom: .5rem; color: #333; }
.spec-table { width:100%; border-collapse: collapse; margin-bottom: 1rem; }
.spec-table th, .spec-table td { padding: .6rem .8rem; border: 1px solid #e7ece8; text-align: left; font-size: .95rem; }
.category-cta { margin-top: 1rem; display:flex; gap: .8rem; }

/* product-list detail display */
.product-list { margin: 1.25rem 0 0; display: grid; grid-template-columns: 1fr; gap: 1rem; }
.product-item { display:flex; gap: 1rem; align-items: flex-start; background:#fff; padding: .9rem; border-radius: 10px; box-shadow: 0 8px 30px rgba(9,30,66,0.04); }
.product-thumb { width: 160px; height: 120px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.product-info { display:flex; flex-direction: column; }
.product-info h4 { font-size: 1.05rem; font-weight: 900; margin-bottom: .35rem; color: var(--primary); }
.product-desc { color: #4b5560; margin-bottom: .6rem; }
.product-meta { list-style: none; padding: 0; margin: 0 0 .6rem 0; display:flex; flex-wrap:wrap; gap: .5rem 1rem; color: #35424a; }
.product-meta li { font-size: .95rem; }
.product-actions { display:flex; gap: .8rem; }

/* small gallery inside category media */
.category-gallery { display: flex; flex-direction: column; gap: .6rem; }
.gallery-main { width: 100%; height: 280px; object-fit: cover; border-radius: 8px; box-shadow: 0 8px 30px rgba(9,30,66,0.04); }
.gallery-thumbs { display:flex; gap: .6rem; }
.gallery-thumbs .thumb { border: none; padding:0; background: transparent; border-radius: 8px; overflow: hidden; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,0.06); transition: transform .12s ease, box-shadow .12s ease; }
.gallery-thumbs .thumb img { width: 72px; height: 64px; object-fit: cover; display: block; }
.gallery-thumbs .thumb.active { outline: 3px solid var(--accent); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(9,30,66,0.08); }

@media (max-width: 680px) {
  .gallery-main { height: 220px; }
  .gallery-thumbs .thumb img { width: 56px; height: 46px; }
}

@media (max-width: 480px) { .gallery-thumbs { gap: .4rem; } .gallery-thumbs .thumb img { width: 48px; height: 40px; } }

@media (max-width: 840px) { .product-item { flex-direction: column; } .product-thumb { width: 100%; height: 220px; } }

/* Contact page styles (enhanced visuals & microinteractions) */
.contact-hero { min-height: 52vh; display: flex; align-items: center; padding: 3.6rem 0; background-size: cover; background-position: center center; position: relative; overflow: visible; color: #fff; }
.contact-hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,7,18,0.45), rgba(3,7,18,0.2)); z-index: 0; }
.contact-hero .contact-hero-inner { position: relative; z-index: 2; }
.hero-content { display:flex; justify-content: space-between; gap: 2rem; align-items: center; }
.hero-copy { max-width: 56ch; }
.contact-hero h1 { font-size: 2.2rem; margin-bottom: .35rem; color: #fff; }
.contact-hero .lead { color: rgba(255,255,255,0.9); margin-bottom: .8rem; }
.hero-ctas { display:flex; gap: .75rem; }
.hero-ctas .btn-gold { background: linear-gradient(180deg,#ffdca2,#cfa15b); color: #1b2a27; box-shadow: 0 12px 34px rgba(197,160,89,0.12); }
.hero-ctas .btn-ghost { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); color: #fff; }

.hero-stats { display:flex; gap: 1rem; align-items:center; }
.hero-stats .stat { background: rgba(255,255,255,0.06); padding: .65rem .9rem; border-radius: 10px; min-width: 100px; text-align: center; }
.hero-stats .stat-num { font-weight:900; font-size:1.15rem; color: #fff; }
.hero-stats .stat-label { font-size: .78rem; color: rgba(255,255,255,0.92); margin-top: .2rem; }

.contact-layout { padding: 3rem 0 5rem; margin-top: -64px; }
.contact-grid { display: grid; grid-template-columns: 1fr 460px; gap: 2rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.contact-left, .contact-right { display: block; }
.contact-card { background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.98)); border-radius: 14px; padding: 1.2rem; box-shadow: 0 18px 60px rgba(9,30,66,0.08); transform-origin: center; transition: transform .4s cubic-bezier(.2,.9,.2,1), box-shadow .35s ease; }
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 36px 100px rgba(9,30,66,0.14); }
.contact-card.contact-info { border-left: 6px solid rgba(199,107,59,0.12); }

.contact-info h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.contact-info .muted { color: #516161; margin-bottom: .8rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1rem 0; color: #233733; }
.contact-list li { padding: .35rem 0; }
.contact-cta { margin-top: .8rem; display:flex; gap:.6rem; }

.contact-form-card h4 { margin-bottom: .6rem; }
.label-small { display:block; margin-top: .6rem; margin-bottom: .28rem; color: #415154; }
.contact-form-card input, .contact-form-card textarea { width: 100%; padding: .65rem .8rem; border-radius: 8px; border: 1px solid #e6efe8; transition: box-shadow .18s ease, border-color .18s ease; }
.contact-form-card input:focus, .contact-form-card textarea:focus { outline: none; box-shadow: 0 6px 24px rgba(199,107,59,0.14); border-color: rgba(199,107,59,0.28); }
.contact-form-card textarea { resize: vertical; }
.form-actions { margin-top: .8rem; display:flex; gap:.6rem; }
.form-feedback { margin-top: .6rem; color: var(--primary); font-weight:700; }

.map-card { display:flex; flex-direction:column; gap:.6rem; position: relative; }
.map-toolbar { display:flex; justify-content:space-between; align-items:center; gap:.6rem; }
.map-title { font-weight:800; color: var(--primary); }
.map-container { height: 360px; border-radius: 12px; overflow:hidden; border: 1px solid rgba(9,30,66,0.04); position: relative; }
.map-note { margin-top: .6rem; font-size: .9rem; color: #606f6b; }

/* animated map pin (overlay) */
.map-pin { position: absolute; left: 50%; top: 50%; width: 28px; height: 28px; transform: translate(-50%, -50%); z-index: 4; pointer-events: none; opacity: 0; transition: opacity .45s ease; }
.map-pin .pin-core { display:block; width: 14px; height: 14px; margin: 0 auto; border-radius: 50%; background: rgba(199,107,59,0.95); box-shadow: 0 0 0 rgba(199,107,59,0.2); animation: pinPulse 1.8s infinite; }
@keyframes pinPulse { 0%{ box-shadow: 0 0 0 0 rgba(199,107,59,0.35);} 70%{ box-shadow: 0 0 0 18px rgba(199,107,59,0); } 100%{ box-shadow: 0 0 0 0 rgba(199,107,59,0);} }

/* floating contact FAB */
.contact-fab { position: fixed; right: 20px; bottom: 20px; width:56px; height:56px; border-radius: 50%; display:grid; place-items:center; background: linear-gradient(180deg,#c76b3b,#b0552e); color: #fff; box-shadow: 0 14px 44px rgba(167,80,36,0.28); text-decoration: none; z-index: 1000; font-size: 1.25rem; transition: transform .18s ease, box-shadow .18s ease; }
.contact-fab:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 60px rgba(167,80,36,0.32); }
.contact-fab:active { transform: translateY(-2px); }

/* Reveal helpers for contact cards */
.contact-card.reveal { opacity: 0; transform: translateY(18px) scale(.998); }
.contact-card.in-view { opacity: 1; transform: translateY(0) scale(1); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.9,.2,1); }

/* Contact info improvements */
.contact-header { display:flex; align-items:center; gap:.8rem; margin-bottom:.6rem; }
.brand-badge { background: linear-gradient(90deg,#ffdca2,#cfa15b); color: #1b2a27; font-weight:700; padding:.28rem .6rem; border-radius:8px; box-shadow: 0 8px 18px rgba(197,160,89,0.08); }
.contact-line { display:flex; align-items:center; gap:.6rem; padding:.4rem 0; }
.contact-line svg { min-width:18px; min-height:18px; opacity:.95; }
.contact-line .contact-line-label { min-width:80px; color:#3a4b48; }
.contact-copy-target { color: var(--primary); font-weight:600; text-decoration: none; }
.copy-btn { margin-left: .5rem; background: transparent; border: 1px dashed rgba(60,75,72,0.08); padding: .28rem .45rem; border-radius: 8px; color: #2d463f; font-size: .85rem; cursor: pointer; transition: transform .18s ease, box-shadow .12s ease, background .12s ease; }
.copy-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(41,104,84,0.06); background: rgba(199,107,59,0.06); }
.copy-btn:active { transform: translateY(-1px); }
.copy-btn:focus { outline: 3px solid rgba(199,107,59,0.12); }
.copy-btn.copied { background: linear-gradient(90deg,#7bd389,#46a06a); color: #043827; border-color: transparent; font-weight:700; }

.contact-cta .policy-btn { display:inline-flex; align-items:center; gap:.5rem; padding:.6rem .9rem; border-radius:10px; transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .18s ease; }
.contact-cta .policy-btn:hover { transform: translateY(-6px); }
.contact-cta .policy-btn.btn-ghost { background: rgba(255,255,255,0.96); border: 1px solid rgba(9,30,66,0.06); color: #17322b; font-weight:700; box-shadow: 0 8px 20px rgba(9,30,66,0.06); padding: .6rem 1rem; }

/* Policy modal */
.policy-modal { position: fixed; inset: 0; display: grid; place-items: center; z-index: 1500; pointer-events: none; opacity: 0; transition: opacity .22s ease; }
.policy-modal[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.policy-backdrop { position:absolute; inset:0; background: rgba(6,9,14,0.5); backdrop-filter: blur(2px); }
.policy-panel { width: min(980px, 92%); max-height: 84vh; background: linear-gradient(180deg,#ffffff,#f8f9f7); border-radius: 12px; box-shadow: 0 36px 80px rgba(10,20,30,0.28); overflow: hidden; transform: translateY(12px) scale(.995); transition: transform .28s cubic-bezier(.2,.9,.2,1); }
.policy-modal[aria-hidden="false"] .policy-panel { transform: translateY(0) scale(1); }
.policy-header { display:flex; justify-content:space-between; align-items:center; padding: .9rem 1rem; border-bottom: 1px solid #eef4eb; }
.policy-header h4 { margin:0; font-size:1.05rem; }
.modal-close { background:transparent; border:0; padding:.4rem .6rem; font-size:1rem; cursor:pointer; }
.policy-body { padding: .8rem; height: calc(84vh - 84px); overflow:auto; }
.policy-embed { width:100%; height:100%; border:0; }

/* Copy toast */
.copy-toast { position: fixed; left: 50%; transform: translateX(-50%) translateY(14px); bottom: 28px; background: rgba(3,7,18,0.95); color: #fff; padding: .6rem .9rem; border-radius: 10px; box-shadow: 0 12px 40px rgba(3,7,18,0.3); opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .22s ease; z-index: 1600; font-weight:700; }
.copy-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* Responsive */
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } .map-container { height: 320px; } .contact-fab { right: 12px; bottom: 12px; } }

/* keep quote/form styles intact */
.quote-section { padding: 4rem 0; background: #fff; }
.quote-form { background: var(--light); padding: 1.25rem; border-radius: 10px; box-shadow: 0 6px 24px rgba(9,30,66,0.04); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.form-grid label { display: block; font-size: .95rem; color: #333; }
.form-grid input, .form-grid select { width: 100%; padding: .6rem .7rem; border-radius: 8px; border: 1px solid #dfe9e1; }
.label-small { font-size:.85rem; color:#6b7578; }
.form-grid .full { grid-column: 1 / -1; }
.form-actions { margin-top: .9rem; display:flex; gap: .8rem; }
.form-feedback { margin-top: .6rem; color: var(--primary); font-weight:700; }

@media (max-width: 920px) { .category-grid { grid-template-columns: 1fr; } .category-media img { height: 240px; } .form-grid { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(180deg, #1b4332 0%, #153028 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 3.5rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-logo img {
    height: 65px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
    background: #fff; /* In case the JPEG needs a clean white backdrop */
    padding: 4px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.footer-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.footer-nav,
.footer-contact-list,
.footer-cert-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a,
.footer-contact-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-nav a:hover,
.footer-contact-list a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact-list svg {
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.9;
}

.footer-cert-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.6;
}

.footer-cert-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--accent);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer RTL Support */
[dir="rtl"] .footer-nav a:hover,
[dir="rtl"] .footer-contact-list a:hover {
    transform: translateX(-4px);
}

/* Responsive Footer */
@media (max-width: 980px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 680px) {
    .main-footer {
        padding: 2.5rem 0 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}


/* HOME PAGE MEDIA QUERY*/

/* --- RESPONSIVE FIXES FOR EXISTING CLASSES --- */

/* Tablet & Smaller Desktops (Under 1024px) */
@media (max-width: 1024px) {
    .sourcing-split {
        grid-template-columns: 1fr; /* Stack left and right columns */
        gap: 40px;
    }

    .promo-inner {
        flex-direction: column;
        text-align: center;
    }

    .promo-tiles {
        display: none; /* Hide decorative images to save space */
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Phones (Under 768px) */
@media (max-width: 768px) {
    /* Header Fixes */
    nav.container {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    .nav-links {
        margin-top: 20px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Hero Fixes */
    .hero-slider {
        height: 70vh; /* Shorter height for mobile screens */
    }

    h1 {
        font-size: 2.2rem; /* Scaled down for mobile */
    }

    .slide-cta {
        flex-direction: column; /* Stack buttons vertically */
        width: 100%;
    }

    .btn-gold, .btn-ghost {
        width: 100%;
        margin: 5px 0;
    }

    /* Grid Fixes */
    .categories-grid, 
    .product-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    .flag-list {
        grid-template-columns: 1fr; /* Stack flags */
    }

    /* Statistics Fixes */
    .sourcing-stats {
        flex-direction: column;
        gap: 25px;
    }

    .num {
        font-size: 2.2rem;
    }

    /* Footer Fixes */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }
}

/* --- RTL (ARABIC) ALIGNMENT FIXES --- */
[dir="rtl"] .sourcing-left {
    text-align: right;
}

[dir="rtl"] .flag-tile {
    flex-direction: row-reverse;
}

[dir="rtl"] .client {
    flex-direction: row-reverse;
    text-align: right;
}

/* Animation Maintenance */
.reveal {
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}








/* --- CONTACT PAGE RESPONSIVE OVERRIDES --- */

/* Tablets and Small Laptops (Under 1024px) */
@media (max-width: 1024px) {
    .contact-grid {
        display: flex;
        flex-direction: column; /* Stack the form/info and the map */
        gap: 30px;
    }

    .contact-right, .contact-left {
        width: 100% !important; /* Force full width */
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
        width: 100%;
    }
}

/* Mobile Phones (Under 768px) */
@media (max-width: 768px) {
    /* Fix Hero Section */
    .contact-hero {
        padding: 60px 0;
        height: auto;
        min-height: 400px;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
        display: flex;
        flex-direction: column;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 10px;
    }

    /* Fix Stats Grid */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2x2 grid for stats */
        gap: 15px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    /* Fix Contact Form & Info */
    .contact-list {
        padding: 0;
    }

    .contact-line {
        flex-wrap: wrap; /* Prevent text clipping */
        gap: 10px;
        padding: 12px 0;
    }

    .contact-cta {
        display: grid;
        grid-template-columns: 1fr; /* Stack Policy buttons */
        gap: 10px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions button {
        width: 100%;
    }

    /* Fix Map Height */
    .map-container {
        height: 300px !important;
    }

    .map-toolbar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    /* Policy Modals */
    .policy-panel {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }

    .policy-embed {
        height: 300px;
    }
}

/* RTL Specific Adjustments */
[dir="rtl"] .hero-stats {
    direction: rtl;
}

[dir="rtl"] .contact-line svg {
    margin-left: 10px;
    margin-right: 0;
}

[dir="rtl"] .modal-close {
    left: 20px;
    right: auto;
}
/* --- ENHANCED CONTACT HERO RESPONSIVE OVERRIDES --- */

@media (max-width: 768px) {
    /* 1. Header & Body Clearance */
    body {
        /* Increased to ensure "CONTACT US" is fully visible */
        padding-top: 140px !important; 
    }

    /* 2. Hero Section Layout */
    .contact-hero {
        padding: 20px 15px; /* Side margins for the 'card' look */
        height: auto;
        min-height: 550px; /* Space for stacked buttons and stats */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 10px; /* Small outer margin to prevent edge-touching */
        border-radius: 20px;
        overflow: hidden;
    }

    /* 3. Title & Text Alignment */
    .contact-hero h1 {
        font-size: 1.8rem;
        width: 100%;
        margin-bottom: 10px;
        display: block; /* Stack English and Arabic titles */
    }

    .contact-hero .lead {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    /* 4. Buttons (CTAs) - Centered and Stacked */
    .hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px; /* Keep buttons from getting too wide */
        margin: 0 auto 30px auto;
    }

    .btn-gold, .btn-ghost {
        width: 100%;
        padding: 14px;
        margin: 0;
    }

    /* 5. Fix Stats Overlapping (2x2 Grid) */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 10px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.4); /* Darker background for readability */
        padding: 15px;
        border-radius: 12px;
        backdrop-filter: blur(4px);
    }

    .stat {
        padding: 10px;
        border: none; /* Remove any desktop borders that might clash */
    }

    .stat-num {
        font-size: 1.4rem !important;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    /* 6. Contact Form Actions */
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .form-actions button {
        width: 100%;
    }
}

/* Tablet Clearance */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        padding-top: 110px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}







/* --- ENHANCED MOBILE RESPONSIVENESS (768px and below) --- */
@media (max-width: 768px) {
    /* 1. Global Container & Body Adjustments */
    body {
        /* Increased padding to ensure hero is fully visible below the header */
        padding-top: 130px; 
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100%;
        box-sizing: border-box;
    }

    /* 2. Header: Shrink and Center */
    .main-header {
        position: fixed;
        width: 100%;
        top: 0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    nav.container {
        flex-direction: column; /* Stacks logo, links, and lang switch */
        padding: 10px 0;
        gap: 10px;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        gap: 12px;
        font-size: 13px; /* Slightly smaller text to fit on one line */
    }

    #lang-toggle {
        padding: 4px 12px;
        font-size: 12px;
    }

    /* 3. Hero Section: Centering & Margins */
    .about-hero {
        margin: 0 auto;
        padding: 0 15px; /* Creates the side margins you requested */
        text-align: center; /* Centers all text content */
    }

    .hero-image {
        position: relative;
        width: 100%;
        max-width: 500px; /* Prevents image from becoming too huge */
        margin: 0 auto; /* Centers the image block */
        border-radius: 15px; /* Matches the rounded corners in your image */
        overflow: hidden;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* 4. Text Overlay Adjustments */
   

    .hero-copy h1 {
        font-size: 1.5rem; /* Prevents text from wrapping awkwardly */
        color: white;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .btn-gold {
        width: 80%; /* Makes button prominent but centered */
        max-width: 250px;
        padding: 12px;
        text-align: center;
        margin: 0 auto;
    }

    /* 5. Hide or Adjust Lead Text on Mobile */
    .hero-copy .lead {
        display: none; /* Hide long descriptions in the hero on small phones for a cleaner look */
    }
}

/* --- TABLET ADJUSTMENTS --- */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        padding-top: 100px;
    }
    
    .about-hero {
        padding: 0 30px;
    }
}






/* =========================
   HERO SECTION FIX
   ========================= */

.product-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );
}

/* Push grey container down & center */
.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 6rem; /* moves content down */
  padding-bottom: 4rem;
}

/* Grey container */
.hero-copy {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 3rem 3rem 3.5rem;
  border-radius: 18px;

  max-width: 720px;
  width: 100%;

  text-align: center;
  margin-inline: auto;
}

/* =========================
   TEXT SPACING & TYPOGRAPHY
   ========================= */

.hero-copy .kicker {
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.hero-sub {
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 620px;
  margin-inline: auto;
}

/* Feature bullets */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* =========================
   BUTTON ALIGNMENT
   ========================= */

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-ctas a {
  min-width: 180px;
  text-align: center;
}

/* =========================
   REMOVE LEFT IMAGE (MOBILE)
   ========================= */

@media (max-width: 768px) {
  .hero-media {
    display: none;
  }

  .hero-inner {
    padding-top: 4.5rem;
  }

  .hero-copy {
    padding: 2.5rem 1.75rem 3rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-ctas a {
    width: 100%;
  }
}

















