/* ================================================
   NARSUON EXIM — SHARED STYLESHEET
   assets/css/style.css
   ================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ── VARIABLES ── */
:root {
  --black:  #0B0D11;
  --dark:   #13161C;
  --white:  #ffffff;
  --grey-1: #F4F5F7;
  --grey-2: #E8EAED;
  --text:   #0D0F14;
  --muted:  #6B7280;
  --gold:   #C9A84C;
  --gold-l: #E2C97A;
  --navy:   #0A1628;
  --fi: 'Inter', system-ui, sans-serif;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --sh:    0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --sh-lg: 0 8px 30px rgba(0,0,0,.12);
}

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

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.on { opacity: 1; transform: none; }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s} .d4{transition-delay:.32s}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--fi); font-size: .82rem; font-weight: 600;
  padding: .78rem 1.8rem; border-radius: 7px;
  transition: all .25s; white-space: nowrap; cursor: pointer; border: none;
  text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.3); color: var(--navy); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--grey-2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-lt { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-outline-lt:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); color: #fff; }

/* ── LAYOUT ── */
.wrap        { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.wrap-wide   { max-width: 1360px; margin: 0 auto; padding: 0 2rem; }
.wrap-narrow { max-width: 860px;  margin: 0 auto; padding: 0 2rem; }
.sec         { padding: 6rem 0; }
.sec.grey    { background: var(--grey-1); }
.sec.dark    { background: var(--dark); }
.tc          { text-align: center; }
.flex-c      { display: flex; justify-content: center; gap: .85rem; flex-wrap: wrap; }

/* ── TYPOGRAPHY ── */
.eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .7rem; }
.h2      { font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 800; color: var(--text); line-height: 1.14; letter-spacing: -.02em; }
.h2.lt   { color: #fff; }
.h3      { font-size: 1.15rem; font-weight: 700; color: var(--text); line-height: 1.25; letter-spacing: -.01em; margin-bottom: .5rem; }
.h3.lt   { color: #fff; }
.body-text   { font-size: .9rem; color: var(--muted); line-height: 1.8; }
.body-text.lt { color: rgba(255,255,255,.5); }
.rule    { display: block; width: 36px; height: 2.5px; background: var(--gold); border-radius: 2px; margin: .9rem 0; }
.rule.c  { margin: .9rem auto; }

/* spacing */
.mt-xs{margin-top:.5rem} .mt-s{margin-top:.8rem} .mt-m{margin-top:1.5rem}
.mt-l{margin-top:2.5rem} .mt-xl{margin-top:4rem}
.mb-s{margin-bottom:.8rem} .mb-m{margin-bottom:1.5rem} .mb-l{margin-bottom:2.5rem}

/* ── NAV BASE ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10, 22, 40, 0.72) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#nav.nav-white {
  background: rgba(10, 22, 40, 0.72) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
#nav.nav-transparent { background: transparent; }
#nav.scrolled {
  background: rgba(10, 22, 40, 0.94) !important;
  backdrop-filter: blur(20px);
  height: 64px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25) !important;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; object-fit: contain; transition: height 0.4s var(--ease); }
#nav.scrolled .nav-logo img { height: 36px; }
.nav-logo-txt { display: flex; flex-direction: column; margin-left: 0.75rem; }
.nav-logo-name { font-family: var(--fd); font-size: 1.35rem; font-weight: 600; line-height: 1; letter-spacing: .01em; color: #fff !important; }
.nav-logo-name em { color: var(--gold) !important; font-style: normal; }
.nav-logo-sub { font-size: .52rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin-top: .15rem; color: rgba(255,255,255,.5) !important; }

.nav-links { display: flex; align-items: center; }
.nav-link { font-size: .76rem; font-weight: 500; padding: .45rem .85rem; border-radius: 6px; color: rgba(255,255,255,.68) !important; transition: all .25s; }
.nav-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.nav-link.active { color: var(--gold) !important; font-weight: 600; }
.nav-cta { font-size: .76rem; font-weight: 700; background: var(--gold); color: var(--navy) !important; padding: .48rem 1.3rem; border-radius: 6px; margin-left: .6rem; transition: background .25s; }
.nav-cta:hover { background: var(--gold-l) !important; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--dark); padding: 9rem 0 5.5rem;
  margin-top: 62px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 60%, rgba(201,168,76,.07), transparent 65%),
              radial-gradient(ellipse 50% 50% at 80% 30%, rgba(201,168,76,.04), transparent 60%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── CERT TICKER ── */
.cert-bar { background: var(--gold); overflow: hidden; padding: .6rem 0; }
.cb-track { display: flex; animation: tickL 26s linear infinite; white-space: nowrap; }
.cb-track:hover { animation-play-state: paused; }
.cb-item { display: inline-flex; align-items: center; gap: .5rem; padding: 0 2.2rem; flex-shrink: 0; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); }
.cb-item::before { content: '✓'; font-weight: 900; }
.cb-dot { width: 4px; height: 4px; background: rgba(10,22,40,.25); border-radius: 50%; flex-shrink: 0; }

/* ── TICKER ── */
.ticker { background: var(--white); border-top: 1px solid var(--grey-2); border-bottom: 1px solid var(--grey-2); overflow: hidden; padding: .95rem 0; }
.t-row { display: flex; }
.t-row + .t-row { margin-top: .45rem; }
.t-track { display: flex; white-space: nowrap; animation: tickL 36s linear infinite; }
.t-track.rev { animation: tickR 40s linear infinite; }
.ticker:hover .t-track { animation-play-state: paused; }
.t-item { display: inline-flex; align-items: center; gap: .65rem; padding: .3rem 2rem; flex-shrink: 0; border-right: 1px solid var(--grey-2); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.t-item::before { content: '✦'; color: var(--gold); font-size: .6rem; }

@keyframes tickL { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes tickR { from{transform:translateX(-50%)} to{transform:translateX(0)} }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.s-cell { text-align: center; padding: 2rem 1.5rem; border-right: 1px solid rgba(255,255,255,.07); }
.s-cell:last-child { border-right: none; }
.s-n { font-size: clamp(3rem,5vw,4.5rem); font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.03em; display: block; }
.s-l { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38); display: block; margin-top: .5rem; }
.s-s { font-size: .74rem; color: rgba(255,255,255,.2); margin-top: .28rem; }

/* ── BULLETS — CSS ONLY, NO ICON FONT ──
   These will ALWAYS show correctly, no dependency on any CDN
── */
.bullets { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-top: 1rem; padding: 0; }
.bullets li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .88rem; color: var(--muted); line-height: 1.65;
  padding-left: 0;
}
.bullets li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; min-width: 20px;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  font-size: .78rem; font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .1rem;
}
.bullets li strong { color: var(--text); font-weight: 600; }

/* Dark version */
.bullets.lt li { color: rgba(255,255,255,.55); }
.bullets.lt li::before { background: rgba(201,168,76,.15); color: var(--gold); }
.bullets.lt li strong { color: #fff; }

/* ── PRODUCT CARDS ── */
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.pc { border: 1px solid var(--grey-2); border-radius: 10px; overflow: hidden; background: var(--white); display: flex; flex-direction: column; transition: box-shadow .3s, border-color .3s, transform .3s; }
.pc:hover { box-shadow: var(--sh-lg); border-color: rgba(201,168,76,.3); transform: translateY(-5px); }
.pc-img { height: 185px; position: relative; overflow: hidden; background: linear-gradient(135deg,#0d1e36,#0a1628); flex-shrink: 0; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pc:hover .pc-img img { transform: scale(1.05); }
.pc-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; }
.pc-ph-icon { font-size: 2.4rem; opacity: .2; }
.pc-ph-txt  { font-size: .56rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(201,168,76,.3); }
.pc-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.pc:hover .pc-bar { transform: scaleX(1); }
.pc-tag { position: absolute; top: .72rem; left: .72rem; background: rgba(10,22,40,.72); backdrop-filter: blur(6px); border: 1px solid rgba(201,168,76,.2); padding: .15rem .58rem; font-size: .55rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); border-radius: 4px; }
.pc-body { padding: 1.2rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pc-name { font-size: .94rem; font-weight: 700; color: var(--text); margin-bottom: .28rem; letter-spacing: -.01em; }
.pc-orig { font-size: .63rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #bbb; margin-bottom: .6rem; display: flex; align-items: center; gap: .25rem; }
.pc-orig::before { content: '📍'; font-size: .7rem; }
.pc-desc { font-size: .78rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: .85rem; }
.pc-foot { display: flex; justify-content: space-between; align-items: center; padding-top: .8rem; border-top: 1px solid var(--grey-2); }
.pc-hs { font-family: 'Courier New', monospace; font-size: .64rem; color: var(--gold); background: rgba(201,168,76,.08); padding: .1rem .4rem; border-radius: 3px; }
.pc-go { font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); display: flex; align-items: center; gap: .25rem; transition: color .2s; }
.pc-go::after { content: '→'; }
.pc:hover .pc-go { color: var(--gold); }

/* ── FEAT CARDS ── */
.feat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.feat-card { background: var(--white); border: 1px solid var(--grey-2); border-radius: 10px; padding: 2rem; transition: box-shadow .3s, border-color .3s, transform .3s; }
.feat-card:hover { box-shadow: var(--sh-lg); border-color: rgba(201,168,76,.3); transform: translateY(-4px); }
.feat-num { font-size: 2.4rem; font-weight: 800; color: rgba(201,168,76,.12); line-height: 1; margin-bottom: .55rem; letter-spacing: -.04em; font-family: var(--fd); }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-img { border-radius: 12px; overflow: hidden; background: linear-gradient(135deg,#0a1628,#1a2a4a); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-lg); }
.split-img-ph { text-align: center; opacity: .3; padding: 2rem; }
.split-img-ph span { font-size: 5rem; display: block; margin-bottom: .8rem; }
.split-img-ph p { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── DARK CARDS ── */
.dark-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 1.8rem; transition: border-color .3s, background .3s; }
.dark-card:hover { border-color: rgba(201,168,76,.35); background: rgba(201,168,76,.04); }
.dark-card-title { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.dark-card-body  { font-size: .78rem; color: rgba(255,255,255,.42); line-height: 1.7; }

/* ── CERT CARDS ── */
.cert-card { background: var(--white); border: 1px solid var(--grey-2); border-radius: 10px; padding: 1.8rem; transition: box-shadow .3s, border-color .3s; }
.cert-card:hover { box-shadow: var(--sh-lg); border-color: rgba(201,168,76,.3); }
.cert-t  { font-size: .86rem; font-weight: 700; color: var(--text); margin-bottom: .28rem; }
.cert-n  { font-size: .67rem; font-weight: 700; color: var(--gold); margin-bottom: .8rem; word-break: break-all; }
.cert-d  { font-size: .74rem; color: var(--muted); line-height: 1.65; }
.cert-ok { display: inline-flex; align-items: center; gap: .28rem; background: rgba(22,163,74,.07); color: #16a34a; border: 1px solid rgba(22,163,74,.2); padding: .17rem .62rem; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: 1rem; border-radius: 4px; }
.cert-ok::before { content: '✓'; font-weight: 900; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: .75rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; letter-spacing: .03em; }
.form-label::after { content: ' '; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .78rem 1rem;
  border: 1.5px solid var(--grey-2); border-radius: 7px;
  font-family: var(--fi); font-size: .88rem; color: var(--text);
  background: var(--white); transition: border-color .25s, box-shadow .25s;
  outline: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-hint { font-size: .75rem; color: var(--muted); margin-top: .3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-row { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.3rem; }
.cir-ico { width: 40px; height: 40px; background: rgba(201,168,76,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.cir-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: .2rem; }
.cir-val   { font-size: .88rem; color: var(--muted); line-height: 1.55; }
.cir-val a { color: var(--muted); transition: color .2s; }
.cir-val a:hover { color: var(--gold); }

/* ── TESTIMONIALS ── */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.test-c { background: var(--white); border: 1px solid var(--grey-2); border-radius: 10px; padding: 1.8rem; transition: box-shadow .3s, border-color .3s; }
.test-c:hover { box-shadow: var(--sh-lg); border-color: rgba(201,168,76,.25); }
.stars  { color: var(--gold); font-size: 1rem; margin-bottom: .9rem; letter-spacing: .1em; }
.quote  { font-size: .88rem; color: var(--text); line-height: 1.7; margin-bottom: 1.3rem; font-style: italic; }
.author { display: flex; align-items: center; gap: .7rem; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),#8a6010); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: .9rem; font-weight: 800; flex-shrink: 0; }
.a-name    { font-size: .82rem; font-weight: 700; color: var(--text); }
.a-role    { font-size: .72rem; color: var(--muted); }
.a-country { font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-top: .08rem; }

/* ── CTA ── */
.cta-sec { background: var(--dark); padding: 7rem 0; text-align: center; position: relative; }
.cta-sec::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.cta-h2   { font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.1; margin-bottom: .9rem; }
.cta-sub  { font-size: .95rem; color: rgba(255,255,255,.48); line-height: 1.75; max-width: 480px; margin: 0 auto 2.4rem; }
.cta-phones { font-size: .72rem; color: rgba(255,255,255,.24); margin-top: 1.6rem; }
.cta-phones a { color: rgba(255,255,255,.28); transition: color .2s; }
.cta-phones a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer { background: #080B10; padding: 5rem 0 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.6fr; gap: 3rem; }
.f-name { font-family: var(--fd); font-size: 1.5rem; font-weight: 600; color: #fff; }
.f-name em { color: var(--gold); font-style: normal; }
.f-tag  { font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(201,168,76,.38); margin: .28rem 0 1rem; }
.f-about { font-size: .79rem; color: rgba(255,255,255,.3); line-height: 1.82; }
.f-pills { display: flex; flex-wrap: wrap; gap: .38rem; margin-top: 1.3rem; }
.f-pill  { background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.14); padding: .2rem .68rem; font-size: .57rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(201,168,76,.5); border-radius: 4px; }
.f-hd   { font-size: .6rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.1rem; padding-bottom: .58rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.f-lnk  { display: block; font-size: .79rem; color: rgba(255,255,255,.3); padding: .26rem 0; transition: color .2s; }
.f-lnk:hover { color: var(--gold); }
.f-cr   { display: flex; align-items: flex-start; gap: .58rem; margin-bottom: .72rem; }
.f-cr-ico { color: var(--gold); font-size: .9rem; flex-shrink: 0; margin-top: .1rem; }
.f-cr span, .f-cr a { font-size: .78rem; color: rgba(255,255,255,.3); line-height: 1.5; transition: color .2s; }
.f-cr a:hover { color: var(--gold); }
.f-reg  { display: flex; flex-wrap: wrap; gap: .38rem; border-top: 1px solid rgba(255,255,255,.05); margin-top: 3rem; padding: 1.8rem 0; }
.f-ri   { background: rgba(201,168,76,.05); border: 1px solid rgba(201,168,76,.1); padding: .22rem .7rem; font-size: .56rem; font-weight: 700; letter-spacing: .07em; color: rgba(201,168,76,.4); border-radius: 3px; }
.f-bot  { border-top: 1px solid rgba(255,255,255,.04); padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; }
.f-bot p { font-size: .7rem; color: rgba(255,255,255,.18); margin: 0; }
.f-bot a { color: rgba(255,255,255,.18); transition: color .2s; }
.f-bot a:hover { color: var(--gold); }

/* ── WHATSAPP ── */
.wa { position: fixed; bottom: 2rem; right: 1.8rem; z-index: 9999; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); animation: waP 2.6s ease-in-out infinite; transition: transform .25s; text-decoration: none; }
.wa:hover { transform: scale(1.1); animation: none; }
.wa svg { width: 27px; height: 27px; fill: #fff; }
@keyframes waP { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 28px rgba(37,211,102,.65),0 0 0 8px rgba(37,211,102,.1)} }

/* ── HAMBURGER / MOB NAV ── */
.ham { display: none; background: none; border-radius: 6px; padding: .38rem .55rem; cursor: pointer; flex-direction: column; gap: 4px; }
.ham span { display: block; width: 20px; height: 1.5px; transition: all .3s; }
.nav-white .ham       { border: 1.5px solid var(--grey-2); }
.nav-white .ham span  { background: var(--text); }
.nav-transparent .ham      { border: 1.5px solid rgba(255,255,255,.28); }
.nav-transparent .ham span { background: #fff; }
.scrolled .ham       { border: 1.5px solid var(--grey-2) !important; }
.scrolled .ham span  { background: var(--text) !important; }
.mob { display: none; position: fixed; inset: 0; background: var(--black); z-index: 999; padding: 5rem 2rem 2rem; flex-direction: column; gap: .4rem; overflow-y: auto; }
.mob.open { display: flex; }
.mob-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.mob .nav-link { color: rgba(255,255,255,.65) !important; font-size: .88rem; padding: .8rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; background: none !important; }

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media(max-width:991px){
  .nav-links, .nav-cta { display: none !important; }
  .ham { display: flex; }
  .split { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width:767px){
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media(max-width:575px){
  #nav { padding: 0 1.2rem; }
  .prod-grid { grid-template-columns: 1fr; }
  .wa { bottom: 1.4rem; right: 1.2rem; width: 50px; height: 50px; }
  .sec { padding: 4rem 0; }
  .page-hero { padding: 7rem 0 4rem; }
}

/* -- INTERACTIVE GLOBAL NETWORK MAP MODAL -- */
.map-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.map-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.map-modal-content {
  background: rgba(15, 26, 42, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.map-modal.open .map-modal-content {
  transform: scale(1);
}
.map-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.map-modal-close:hover {
  color: #C9A84C;
}
.modal-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 0.4rem;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.2rem;
}
.map-modal-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.modal-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
}
.m-stat-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.m-stat-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: #C9A84C;
  margin-top: 0.2rem;
}

/* -- PREMIUM SECTIONS -- */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
@media(max-width: 900px) {
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .premium-grid { grid-template-columns: 1fr; }
}
.prem-card {
  background: rgba(15, 26, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.prem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.prem-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.prem-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.prem-card:hover .prem-card-img img {
  transform: scale(1.08);
}
.prem-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 14, 26, 0.95) 100%);
}
.prem-card-body {
  padding: 1.5rem;
}
.prem-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
}
.prem-card-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.prem-card-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A84C;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.prem-card-link::after {
  content: '?';
  transition: transform 0.25s;
}
.prem-card:hover .prem-card-link::after {
  transform: translateX(4px);
}

/* -- PROCESS TIMELINE -- */
.timeline-section {
  padding: 7rem 2rem;
  background: #080F1C;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media(max-width: 900px) {
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .timeline-grid { grid-template-columns: 1fr; }
}
.t-step {
  position: relative;
  padding: 2rem;
  background: rgba(10, 22, 40, 0.3);
  border-left: 3px solid rgba(201, 168, 76, 0.3);
  transition: all 0.3s;
}
.t-step:hover {
  background: rgba(201, 168, 76, 0.03);
  border-left-color: #C9A84C;
  transform: translateX(4px);
}
.t-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.t-step-hd {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
.t-step-body {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* -- FOOTER BRANCH LAYOUT -- */
.f-contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.f-contact-branch {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.f-branch-hd {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding-bottom: 0.3rem;
}
@media(max-width: 900px) {
  .f-contact-cols { grid-template-columns: 1fr; gap: 1.5rem; }
}


/* ============================================================
   NARSUON EXIM — COMPREHENSIVE MOBILE RESPONSIVE STYLES
   All viewports: 1200 → 992 → 768 → 576 → 360px
   ============================================================ */

/* ── LARGE TABLETS (max 1100px) ── */
@media (max-width: 1100px) {
  .wrap, .wrap-wide { padding: 0 1.5rem; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .s-cell:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── TABLETS / SMALL DESKTOP (max 991px) ── */
@media (max-width: 991px) {
  /* Navigation */
  .nav-links, .nav-cta { display: none !important; }
  .ham {
    display: flex !important;
    background: none;
    border: 1.5px solid rgba(201, 168, 76, 0.35);
    border-radius: 6px;
    padding: 0.4rem 0.55rem;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
  }
  .ham span { background: #fff !important; }

  /* Mobile Menu Full-Screen */
  .mob {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 5rem 1.8rem 2rem;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
  }
  .mob.open { display: flex; }
  .mob-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    font-size: 1.1rem;
    cursor: pointer;
  }
  .mob .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    background: none !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .mob .nav-link:last-of-type { border-bottom: none; }

  /* Layout resets */
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.rev { direction: ltr; }
  .feat-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .test-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .s-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .s-cell:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Hero adjustments */
  .hh1 { font-size: clamp(2.8rem, 8vw, 4.5rem) !important; }
  .hsub { font-size: 0.95rem !important; max-width: 500px; margin: 1.2rem auto !important; }
  .hbtns { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

  /* Info strip grid */
  .icard-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }

  /* Comparison table scroll */
  .comp-wrap { overflow-x: auto !important; }
  .comp-table { min-width: 580px; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    padding: 2rem 1.5rem 1.2rem !important;
  }
  .f-contact-cols { grid-template-columns: 1fr !important; gap: 1.2rem !important; }
}

/* ── LARGE PHONES (max 768px) ── */
@media (max-width: 768px) {
  /* Layout */
  .wrap, .wrap-wide, .wrap-narrow { padding: 0 1.2rem; }
  .sec { padding: 4rem 0; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feat-grid { grid-template-columns: 1fr; gap: 1rem; }
  .split { gap: 2rem; }
  .timeline-grid { grid-template-columns: 1fr; gap: 1rem; }
  .premium-grid { grid-template-columns: 1fr; }

  /* Footer 3-col to 1-col */
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
    padding: 2rem 1.2rem 1rem !important;
  }

  /* Info strip */
  .istrip { padding: 2.5rem 0 !important; }
  .icard-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Product cards */
  .rc { margin-bottom: 0; }
  .rc-img { height: 180px !important; }

  /* Hero */
  .hero-wrap { min-height: 80vh; }
  .hh1 { font-size: clamp(2.2rem, 9vw, 3.5rem) !important; }
  .hsub { font-size: 0.88rem !important; padding: 0 1rem; }
  .hbtns { flex-direction: column; align-items: center; gap: 0.6rem; }
  .hbtns .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Page hero titles */
  .ph-h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }

  /* Section headings */
  .stit, .comp-head-h2 { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }

  /* Comparison table */
  .comp-wrap { border-radius: 10px !important; }
  .comp-table { min-width: 520px; }
  .comp-table tbody td, .comp-table thead th { padding: 1rem 1.2rem !important; }
  .comp-table thead th:nth-child(2) { font-size: 0.72rem !important; }

  /* CTA */
  .cta-rice-sec, .cta-dehydrated-sec, .cta-sec { padding: 2.8rem 1.2rem !important; }
  .cta-rice-sec h2, section[style*="050E1A"] h2 { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; }

  /* Contact info layout */
  .contact-info-row { flex-direction: column; gap: 0.5rem; }

  /* Scroll to top btn */
  .scroll-top-btn { bottom: 5rem !important; right: 1.2rem !important; width: 42px !important; height: 42px !important; }
}

/* ── PHONES (max 576px) ── */
@media (max-width: 576px) {
  /* Base layout */
  .wrap, .wrap-wide, .wrap-narrow { padding: 0 1rem; }
  #nav { padding: 0 1rem !important; height: 64px !important; }
  .nav-logo img, .nav-logo-img { height: 36px !important; }
  .nav-logo-name { font-size: 1.1rem !important; }
  .nav-logo-sub { display: none; }
  .sec { padding: 3.5rem 0; }
  .page-hero { padding: 5.5rem 0 3rem; }

  /* Full-width product grid */
  .prod-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pc-img { height: 200px; }

  /* Millet/Rice/Spices product cards */
  .rc-img { height: 200px !important; }
  .rc-body { padding: 1.2rem !important; }
  .rc-name { font-size: 1rem !important; }
  .rc-use { font-size: 0.8rem !important; }

  /* Stats - 2 per row on small */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .s-n { font-size: clamp(2.4rem, 10vw, 3.5rem) !important; }

  /* Info strip - 1 col on small */
  .icard-grid { grid-template-columns: 1fr !important; }
  .istrip { padding: 2.5rem 1rem !important; }
  .icard { padding: 1.5rem 1.2rem !important; }
  .iico { font-size: 2rem !important; height: 40px !important; }

  /* Hero */
  .hh1 { font-size: clamp(2rem, 10vw, 2.8rem) !important; line-height: 1.15 !important; }
  .hsub { font-size: 0.85rem !important; line-height: 1.7 !important; }
  .hbtns { gap: 0.6rem; }
  .hbtns .btn { width: 100%; max-width: 100%; font-size: 0.8rem; padding: 0.7rem 1.2rem; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr !important;
    padding: 1.8rem 1rem 1rem !important;
    gap: 1.5rem !important;
  }
  .f-contact-cols { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .footer-bottom { padding: 0.8rem 1rem !important; }
  .footer-bottom p { font-size: 0.6rem !important; line-height: 1.6 !important; }

  /* Comparison table */
  .comp-table thead th, .comp-table tbody td { padding: 0.85rem 1rem !important; font-size: 0.78rem !important; }
  .check-glow-pill { width: 28px !important; height: 28px !important; font-size: 0.9rem !important; }
  .comp-red-pill, .comp-grey-pill { font-size: 0.7rem !important; padding: 0.25rem 0.6rem !important; }

  /* Mobile menu */
  .mob { padding: 4.5rem 1.2rem 1.5rem; }
  .mob .nav-link { font-size: 0.95rem; padding: 0.9rem 0.4rem; }

  /* Forms */
  .form-input, .form-select, .form-textarea { font-size: 0.85rem; padding: 0.7rem 0.85rem; }
  .btn { padding: 0.7rem 1.4rem; font-size: 0.8rem; }

  /* Cards & sections */
  .feat-card { padding: 1.5rem 1.2rem; }
  .dark-card { padding: 1.4rem; }
  .cert-card { padding: 1.4rem; }

  /* WhatsApp button */
  .wa { bottom: 1.2rem !important; right: 1.2rem !important; width: 48px !important; height: 48px !important; }

  /* Scroll to top */
  .scroll-top-btn { bottom: 4.8rem !important; right: 1.2rem !important; }

  /* Section headings */
  .stit { font-size: clamp(1.6rem, 7vw, 2rem) !important; }
  .ssub { font-size: 0.82rem !important; }
  .slbl { font-size: 0.6rem !important; }

  /* Why Us comparison */
  .comp-head-h2 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .comp-sec { padding: 3.5rem 0 !important; }

  /* About / Certifications */
  .ph-h1 { font-size: clamp(1.8rem, 8vw, 2.6rem) !important; }
  .ph-sub { font-size: 0.82rem !important; padding: 0 0.5rem; }
  .policy-box, .terms-box { padding: 1.5rem 1rem !important; }
  .policy-box h2, .terms-box h2 { font-size: 1.25rem !important; }
}

/* ── VERY SMALL PHONES (max 380px) ── */
@media (max-width: 380px) {
  .hh1 { font-size: 1.9rem !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .s-n { font-size: 2.5rem !important; }
  .prod-grid { grid-template-columns: 1fr; }
  .nav-logo-name { font-size: 1rem !important; }
  .btn { padding: 0.65rem 1.1rem; font-size: 0.76rem; }
  .footer-bottom p { font-size: 0.55rem !important; }
  .icard-grid { grid-template-columns: 1fr !important; }
}

/* ── TOUCH & INTERACTION IMPROVEMENTS ── */
@media (hover: none) {
  /* Disable hover transforms on touch devices for performance */
  .pc:hover, .feat-card:hover, .cert-card:hover, .icard:hover, .prem-card:hover {
    transform: none !important;
  }
  /* Tap highlight for links */
  a, button { -webkit-tap-highlight-color: rgba(201, 168, 76, 0.15); }
}

/* ── PRINT HIDE FLOATING ELEMENTS ── */
@media print {
  .wa, .scroll-top-btn, #nav, .mob { display: none !important; }
  .footer { break-inside: avoid; }
}
