/* =============================================
   TRIX FURNITURE — Premium Stylesheet v3
   Font: Poppins | Theme: Forest Green + Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,600&display=swap');

:root {
  --green:        #1B5E2B;
  --green-mid:    #236B34;
  --green-light:  #2E8B45;
  --green-pale:   #E8F5EC;
  --gold:         #C8922A;
  --gold-light:   #E8B84B;
  --dark:         #071209;
  --dark2:        #0D1F11;
  --text:         #1A3020;
  --text-muted:   #4A7055;
  --white:        #F6FCF8;
  --cream:        #EAF4EE;
  --border:       #C0DCC8;
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;
  --r-sm: 6px; --r-md: 14px; --r-lg: 20px;
  --shadow:    0 4px 24px rgba(7,18,9,.12);
  --shadow-lg: 0 16px 56px rgba(7,18,9,.22);
  --ease: cubic-bezier(.4,0,.2,1);
  --t: all .32s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; color: var(--dark); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.8; font-weight: 300; }

.section-label { font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--green-light); display: block; margin-bottom: .5rem; }
.gold-line { display: block; width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 99px; margin: 16px 0 24px; }
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 92px 0; }
.section-alt { background: var(--cream); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-size: .85rem; font-weight: 600; letter-spacing: .02em; padding: 12px 24px; border-radius: var(--r-sm); border: 2px solid transparent; cursor: pointer; transition: var(--t); white-space: nowrap; }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,94,43,.35); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: #b07d20; transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(7,18,9,0); backdrop-filter: blur(0); border-bottom: 1px solid transparent; transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease); }
.navbar.scrolled { background: rgba(7,18,9,.97); backdrop-filter: blur(14px); border-bottom-color: rgba(27,94,43,.4); box-shadow: 0 2px 20px rgba(7,18,9,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; max-width: 180px; object-fit: contain; filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,.3)); transition: var(--t); }
.logo-img--footer { height: 42px; filter: brightness(0) invert(1) opacity(.8) !important; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.72); transition: var(--t); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--t); border-radius: 99px; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 99px; transition: var(--t); }
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display: none; flex-direction: column; padding: 16px 28px 24px; background: #071209; border-top: 1px solid rgba(27,94,43,.4); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 0; font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(27,94,43,.3); transition: var(--t); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold-light); padding-left: 6px; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 74px; overflow: hidden; background: #071209; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(4,14,7,.93) 0%, rgba(4,14,7,.75) 45%, rgba(4,14,7,.42) 75%, rgba(4,14,7,.62) 100%); }
.hero-side-tag { position: absolute; left: 28px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2; }
.hero-side-tag span { font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); writing-mode: vertical-rl; }
.side-line { width: 1px; height: 56px; background: rgba(255,255,255,.15); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; width: 100%; min-height: calc(100vh - 74px); padding: 40px 0; }
.hero-copy { padding-right: 16px; }
.hero-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 99px; padding: 7px 16px 7px 12px; margin-bottom: 26px; }
.pill-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }
.hero-pill span:last-child { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.hero-h1 { font-weight: 800; line-height: 1.1; margin-bottom: 22px; }
.hero-h1-line { display: block; font-size: clamp(2.2rem, 5vw, 4.2rem); color: #fff; font-weight: 800; }
.hero-h1-accent em { font-style: italic; color: var(--gold-light); position: relative; }
.hero-h1-accent em::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 99px; }
.hero-desc { font-size: .95rem; color: rgba(255,255,255,.62); max-width: 480px; margin-bottom: 34px; line-height: 1.85; font-weight: 300; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 44px; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: #fff; font-family: var(--font-body); font-size: .88rem; font-weight: 600; padding: 14px 28px; border-radius: var(--r-sm); border: 2px solid var(--green); transition: var(--t); }
.btn-hero-primary:hover { background: transparent; color: var(--green-light); border-color: var(--green-light); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(27,94,43,.35); }
.btn-hero-primary svg { width: 19px; height: 19px; }
.btn-hero-ghost { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: rgba(255,255,255,.82); font-family: var(--font-body); font-size: .88rem; font-weight: 500; padding: 14px 28px; border-radius: var(--r-sm); border: 2px solid rgba(255,255,255,.2); transition: var(--t); }
.btn-hero-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.38); transform: translateY(-3px); color: #fff; }
.btn-hero-ghost svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.btn-hero-ghost:hover svg { transform: translateX(4px); }
.hero-stats { display: flex; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
.hstat { padding: 0 24px; }
.hstat:first-child { padding-left: 0; }
.hstat strong { display: block; font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.hstat strong span { color: var(--gold); }
.hstat small { font-size: .68rem; color: rgba(255,255,255,.42); letter-spacing: .05em; margin-top: 3px; display: block; font-weight: 400; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,.12); }
.hero-card-wrap { position: relative; padding: 20px 0 44px; }
.hero-card { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.5); border: 1px solid rgba(27,94,43,.3); }
.hero-card img { width: 100%; height: 440px; object-fit: cover; }
.hero-card-tag { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; background: linear-gradient(to top, rgba(7,18,9,.9), transparent); display: flex; align-items: center; gap: 9px; }
.card-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
.hero-card-tag span:last-child { font-size: .74rem; font-weight: 500; color: rgba(255,255,255,.8); }
.card-corner-tl, .card-corner-br { position: absolute; width: 28px; height: 28px; border-color: var(--gold); border-style: solid; pointer-events: none; }
.card-corner-tl { top: 14px; left: 14px; border-width: 2px 0 0 2px; border-radius: 3px 0 0 0; }
.card-corner-br { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; border-radius: 0 0 3px 0; }
.hero-trust-badge { position: absolute; bottom: -14px; left: -20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 13px 17px; display: flex; align-items: center; gap: 11px; box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.badge-star { font-size: 1.3rem; }
.hero-trust-badge strong { display: block; font-size: .83rem; color: var(--dark); font-weight: 600; }
.hero-trust-badge small { font-size: .68rem; color: var(--text-muted); font-weight: 400; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 7px; z-index: 2; }
.hero-scroll span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); font-weight: 500; }
.scroll-track { width: 2px; height: 36px; background: rgba(255,255,255,.12); border-radius: 99px; position: relative; overflow: hidden; }
.scroll-thumb { position: absolute; top: 0; left: 0; right: 0; height: 12px; background: var(--gold); border-radius: 99px; animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%{top:0;opacity:1} 80%{top:24px;opacity:.3} 100%{top:24px;opacity:0} }

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.marquee-strip { background: #071209; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.marquee-inner { display: flex; align-items: center; height: 50px; overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 26px; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee-track span { font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.42); }
.marquee-track .mx { color: var(--gold); font-size: .58rem; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ════════════════════════════════════════
   PRODUCT CATEGORIES (Services)
════════════════════════════════════════ */
.services-section { padding: 96px 0; background: #0D1F11; position: relative; overflow: hidden; }
.services-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(27,94,43,.15) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; margin-bottom: 48px; position: relative; z-index: 1; }
.services-title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: #fff; line-height: 1.1; }
.services-title em { font-style: italic; color: var(--gold-light); }
.services-header-right { max-width: 360px; text-align: right; flex-shrink: 0; }
.services-header-right p { font-size: .85rem; color: rgba(255,255,255,.48); margin-bottom: 18px; line-height: 1.8; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 1; }
.svc-col-right { display: flex; flex-direction: column; gap: 14px; }
.svc-row-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-card { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.07); background: #0c1a0f; cursor: pointer; transition: border-color .4s var(--ease), transform .4s var(--ease); }
.svc-card:hover { border-color: rgba(200,146,42,.4); transform: translateY(-4px); }
.svc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .4s var(--ease); filter: brightness(.88) saturate(1.05); }
.svc-card:hover .svc-img { transform: scale(1.06); filter: brightness(.75) saturate(1.0); }
.svc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,14,8,.93) 0%, rgba(6,14,8,.52) 32%, rgba(6,14,8,.08) 58%, transparent 100%); z-index: 1; }
.svc-body { position: relative; z-index: 2; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.svc-number { font-size: 2.8rem; font-weight: 800; color: var(--gold); opacity: .8; line-height: 1; margin-bottom: 5px; text-shadow: 0 2px 12px rgba(0,0,0,.6); transition: opacity .4s var(--ease); }
.svc-card:hover .svc-number { opacity: 1; }
.svc-tag { display: inline-block; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); background: rgba(200,146,42,.12); border: 1px solid rgba(200,146,42,.22); border-radius: 99px; padding: 3px 11px; margin-bottom: 9px; width: fit-content; }
.svc-name { font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.svc-desc { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 18px; max-width: 320px; opacity: 0; transform: translateY(8px); transition: opacity .35s var(--ease), transform .35s var(--ease); font-weight: 300; }
.svc-card:hover .svc-desc { opacity: 1; transform: none; }
.svc-sub-list { display: flex; flex-wrap: wrap; gap: 5px 12px; margin-bottom: 18px; opacity: 0; transform: translateY(8px); transition: opacity .35s .05s var(--ease), transform .35s .05s var(--ease); }
.svc-card:hover .svc-sub-list { opacity: 1; transform: none; }
.svc-sub-list li { font-size: .7rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 5px; font-weight: 400; }
.svc-sub-list li::before { content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.svc-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; font-size: .78rem; font-weight: 600; padding: 10px 18px; border-radius: 6px; border: 2px solid var(--green); width: fit-content; opacity: 0; transform: translateY(10px); transition: opacity .35s .1s var(--ease), transform .35s .1s var(--ease), background .25s, border-color .25s; }
.svc-card:hover .svc-btn { opacity: 1; transform: none; }
.svc-btn:hover { background: transparent; color: var(--green-light); border-color: var(--green-light); }
.svc-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.svc-card--large { min-height: 560px; }
.svc-card--wide { min-height: 230px; }
.svc-body--row { flex-direction: row; align-items: flex-end; gap: 20px; padding: 24px; }
.svc-body-text { flex: 1; }
.svc-card--half { min-height: 290px; }
.svc-card--half .svc-name { font-size: 1.4rem; }

/* ════════════════════════════════════════
   ORDERING PROCESS
════════════════════════════════════════ */
.process-section { padding: 96px 0; background: var(--dark); position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(27,94,43,.12) 0%, transparent 65%); pointer-events: none; }
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 56px; position: relative; z-index: 1; }
.process-steps::before { content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,146,42,.3), var(--gold), rgba(200,146,42,.3), transparent); z-index: 0; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-icon { width: 76px; height: 76px; border-radius: 50%; background: #0D1F11; border: 2px solid rgba(200,146,42,.3); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; transition: var(--t); position: relative; }
.step-icon::after { content: attr(data-num); position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; background: var(--gold); border-radius: 50%; font-size: .62rem; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; }
.step:hover .step-icon { background: rgba(27,94,43,.25); border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(200,146,42,.2); }
.step-name { font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: .76rem; color: rgba(255,255,255,.45); line-height: 1.7; font-weight: 300; }

/* ════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════ */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.trust-card { text-align: center; padding: 38px 22px; border-radius: var(--r-md); background: var(--white); border: 1px solid var(--border); transition: var(--t); }
.trust-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green-light); transform: translateY(-4px); }
.trust-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.trust-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 9px; color: var(--dark); }
.trust-card p { font-size: .83rem; font-weight: 300; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-section { background: #071209; padding: 96px 0; position: relative; overflow: hidden; }
.testimonials-section::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 700px; height: 350px; background: radial-gradient(ellipse, rgba(27,94,43,.08) 0%, transparent 70%); pointer-events: none; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; position: relative; z-index: 1; }
.testi-card--featured { grid-row: span 2; background: linear-gradient(135deg,#0d1f10 0%,#122818 100%); border: 1px solid rgba(200,146,42,.3) !important; }
.testi-card--featured .testi-text { font-size: .95rem; line-height: 1.9; }
.testi-card { background: #0b1a0d; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 18px; transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease); }
.testi-card:hover { border-color: rgba(200,146,42,.28); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.testi-quote-icon { font-size: 3.8rem; line-height: .75; color: var(--gold); opacity: .35; font-style: italic; display: block; font-weight: 700; }
.testi-text { font-size: .86rem; color: rgba(255,255,255,.68); line-height: 1.85; font-style: italic; flex: 1; font-weight: 300; }
.testi-footer { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.07); }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--green),var(--green-mid)); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-footer > div:nth-child(2) { flex: 1; }
.testi-footer strong { display: block; font-size: .83rem; color: #fff; font-weight: 600; margin-bottom: 2px; }
.testi-footer span { font-size: .7rem; color: rgba(255,255,255,.38); font-weight: 300; }
.testi-stars { font-size: .82rem; color: var(--gold); letter-spacing: 1px; flex-shrink: 0; }

/* ════════════════════════════════════════
   CLIENTS
════════════════════════════════════════ */
.clients-section { background: #050E08; padding: 72px 0; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.clients-header { text-align: center; margin-bottom: 48px; }
.clients-header h2 { color: #fff; margin-bottom: 8px; }
.clients-header .gold-line { margin: 14px auto; }
.clients-header p { color: rgba(255,255,255,.42); font-size: .85rem; max-width: 460px; margin: 0 auto; font-weight: 300; }
.clients-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; margin-bottom: 24px; }
.client-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 22px 14px; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: var(--t); }
.client-card:hover { background: rgba(27,94,43,.1); border-color: rgba(27,94,43,.3); transform: translateY(-3px); }
.client-initial { width: 48px; height: 48px; border-radius: 10px; background: linear-gradient(135deg, rgba(27,94,43,.25), rgba(27,94,43,.1)); border: 1px solid rgba(27,94,43,.25); display: flex; align-items: center; justify-content: center; font-size: .92rem; font-weight: 700; color: var(--green-light); }
.client-card > span { font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.42); text-align: center; }
.clients-sectors { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.sector-tag { padding: 7px 18px; background: rgba(27,94,43,.12); border: 1px solid rgba(27,94,43,.25); border-radius: 99px; font-size: .7rem; font-weight: 600; color: var(--green-light); letter-spacing: .05em; }
.clients-note { text-align: center; font-size: .78rem; color: rgba(255,255,255,.28); margin-top: 20px; font-weight: 300; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: start; }
.faq-left h2 { font-size: clamp(1.7rem,3.5vw,2.4rem); line-height: 1.1; }
.faq-left p { font-size: .9rem; color: var(--text-muted); max-width: 300px; font-weight: 300; }
.faq-right { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; cursor: pointer; transition: var(--t); }
.faq-q span { font-size: 1rem; font-weight: 600; color: var(--dark); line-height: 1.3; transition: color .3s; }
.faq-q:hover span { color: var(--green); }
.faq-icon { width: 32px; height: 32px; flex-shrink: 0; background: var(--white); border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--t); }
.faq-icon svg { width: 16px; height: 16px; color: var(--text-muted); transition: transform .35s var(--ease); }
.faq-item.open .faq-icon { background: var(--green); border-color: var(--green); }
.faq-item.open .faq-icon svg { color: #fff; transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 4px 22px; font-size: .88rem; color: var(--text-muted); line-height: 1.85; font-weight: 300; }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner { background: #071209; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(27,94,43,.18) 0%, transparent 70%); border-radius: 50%; }
.cta-banner::after { content: ''; position: absolute; bottom: -100px; left: 5%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(27,94,43,.1) 0%, transparent 70%); border-radius: 50%; }
.cta-banner .container { position: relative; z-index: 1; text-align: center; padding-top: 80px; padding-bottom: 80px; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 36px; font-weight: 300; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { background: #071209; color: rgba(255,255,255,.65); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.42); margin: 18px 0 24px; line-height: 1.85; font-weight: 300; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: var(--r-sm); background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: .95rem; transition: var(--t); border: 1px solid rgba(255,255,255,.09); }
.social-btn:hover { background: var(--green); border-color: var(--green); }
.footer-col h5 { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green-light); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.42); transition: var(--t); font-weight: 300; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .ico { font-size: .88rem; margin-top: 2px; opacity: .5; }
.footer-contact-item span { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.6; font-weight: 300; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.28); font-weight: 300; }

/* ════════════════════════════════════════
   INNER PAGE HERO
════════════════════════════════════════ */
.page-hero { background: var(--dark2); padding: 140px 0 80px; text-align: center; border-bottom: 1px solid rgba(27,94,43,.3); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(27,94,43,.15) 0%, transparent 65%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem,5vw,3.8rem); font-weight: 700; color: #fff; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { font-size: 1rem; max-width: 560px; margin: 0 auto; color: rgba(255,255,255,.55); font-weight: 300; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.35); margin-bottom: 20px; font-weight: 400; }
.breadcrumb a { color: var(--green-light); }

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.about-img-badge { position: absolute; top: 24px; right: -20px; background: var(--green); color: #fff; border-radius: var(--r-md); padding: 16px 20px; text-align: center; box-shadow: var(--shadow); }
.about-img-badge strong { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-img-badge small { font-size: .66rem; letter-spacing: .1em; opacity: .9; font-weight: 400; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.value-card { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); transition: var(--t); }
.value-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.value-num { font-size: 2.4rem; font-weight: 800; color: var(--green-pale); line-height: 1; margin-bottom: 8px; }
.value-card h4 { color: var(--dark); margin-bottom: 8px; font-size: .95rem; font-weight: 600; }
.value-card p { font-size: .82rem; font-weight: 300; }

/* ════════════════════════════════════════
   PRODUCTS PAGE
════════════════════════════════════════ */
.cat-section { padding: 64px 0; }
.cat-section:nth-child(even) { background: var(--cream); }
.cat-header { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.cat-header h3 { font-size: 1.6rem; font-weight: 700; }
.cat-header-line { flex: 1; height: 1px; background: var(--border); }
.cat-header-badge { background: var(--green); color: #fff; padding: 4px 14px; border-radius: 99px; font-size: .7rem; font-weight: 600; white-space: nowrap; }
/* ── Stock badges — image overlay ── */
.stock-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: .68rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: .03em;
  backdrop-filter: blur(4px);
}
.stock-in {
  background: rgba(16,120,50,.88);
  color: #fff;
  border: 1px solid rgba(37,211,102,.4);
}
.stock-limited {
  background: rgba(180,110,10,.88);
  color: #fff;
  border: 1px solid rgba(200,146,42,.4);
}
.stock-out {
  background: rgba(180,40,40,.88);
  color: #fff;
  border: 1px solid rgba(220,53,69,.4);
}

/* ── Quantity selector ── */
.qty-wrap {
  margin-bottom: 12px;
}
.qty-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.qty-input-group {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--cream);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--green); color: #fff; }
.qty-input {
  width: 52px;
  height: 34px;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  text-align: center;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── Disabled button ── */
.btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 18px;
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--r-sm);
  border: 2px solid var(--border);
  background: var(--cream);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: .7;
  text-decoration: none;
}

.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: var(--t); }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--green-light); }
.product-img-wrap { position: relative; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-body { padding: 20px; }
.product-cat-tag { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.product-body h4 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.product-body p { font-size: .8rem; margin-bottom: 16px; font-weight: 300; }
.product-body .btn { width: 100%; justify-content: center; font-size: .8rem; padding: 11px 18px; }
.catalogue-banner { background: linear-gradient(135deg, var(--green), var(--green-mid)); border-radius: var(--r-lg); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 64px; }
.catalogue-banner h3 { color: #fff; font-size: 1.7rem; font-weight: 700; margin-bottom: 8px; }
.catalogue-banner p { color: rgba(255,255,255,.7); font-size: .88rem; font-weight: 300; }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); transition: var(--t); }
.contact-info-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.contact-icon { width: 44px; height: 44px; background: var(--green-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-card strong { display: block; color: var(--dark); font-size: .86rem; margin-bottom: 2px; font-weight: 600; }
.contact-info-card span { font-size: .82rem; color: var(--text-muted); font-weight: 300; }
.map-placeholder { margin-top: 24px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); height: 200px; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: var(--text-muted); font-size: .82rem; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.contact-form-wrap > p { font-size: .86rem; margin-bottom: 28px; font-weight: 300; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: 7px; letter-spacing: .04em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-family: var(--font-body); font-size: .86rem; color: var(--text); background: var(--white); transition: var(--t); outline: none; resize: vertical; font-weight: 400; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(27,94,43,.1); }
.form-group textarea { min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: .92rem; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width:1024px) {
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-header-right { text-align: left; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-col-right { display: flex; flex-direction: column; gap: 14px; }
  .svc-row-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .svc-desc, .svc-sub-list, .svc-btn { opacity: 1 !important; transform: none !important; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy { padding-right: 0; }
  .hero-desc { margin: 0 auto 34px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-card-wrap { max-width: 480px; margin: 0 auto; }
  .hero-trust-badge { left: auto; right: -12px; }
  .hero-side-tag { display: none; }
  .hero-scroll { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-card--featured { grid-row: span 1; }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left p { max-width: 100%; }
  .process-steps { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .about-img-badge { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .catalogue-banner { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .trust-grid, .testi-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-card-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width:480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { justify-content: center; }
  .hstat { padding: 0 16px; }
  .svc-row-bottom { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
}
