/* ==========================================================================
   NI-YU TEX INTERNATIONAL — Luxury B2B Apparel Sourcing & Manufacturing
   Brand: Royal Blue #1A1D6D · Gold #D4AF37 · White · Light Grey
   Style: Trust & Authority · Type: Cormorant / Montserrat
   ========================================================================== */

:root {
  --royal: #1A1D6D;
  --royal-deep: #12143f;
  --royal-soft: #2a2e94;
  --gold: #D4AF37;
  --gold-soft: #e6c968;
  --gold-deep: #b8952b;
  --white: #ffffff;
  --ivory: #fbfaf7;
  --grey-50: #f8fafc;
  --grey-100: #f1f3f7;
  --grey-200: #e4e7ee;
  --grey-400: #9aa1b1;
  --grey-500: #6b7280;
  --grey-600: #4b5162;
  --ink: #0f1120;
  --shadow-sm: 0 2px 10px rgba(26, 29, 109, 0.06);
  --shadow-md: 0 10px 34px rgba(26, 29, 109, 0.10);
  --shadow-lg: 0 24px 60px rgba(26, 29, 109, 0.16);
  --radius: 14px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Cormorant', Georgia, serif; font-weight: 600; line-height: 1.12; color: var(--royal); letter-spacing: 0.2px; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Reusable ---------- */
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 34px; height: 1px; background: var(--gold); }

.section { padding: 110px 0; }
.section-head { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.section-head p { color: var(--grey-600); margin-top: 18px; font-size: 1.02rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 16px 30px; border-radius: 4px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .25s var(--ease); white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-gold { background: var(--gold); color: var(--royal-deep); box-shadow: 0 8px 24px rgba(212,175,55,.32); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(212,175,55,.42); }
.btn-royal { background: var(--royal); color: #fff; }
.btn-royal:hover { background: var(--royal-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--royal); border-color: var(--royal); }
.btn-outline:hover { background: var(--royal); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: #fff; color: var(--royal); border-color: #fff; transform: translateY(-2px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all .4s var(--ease);
  background: transparent; padding: 18px 0;
}
.header.scrolled { background: rgba(255,255,255,.94); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 46px; transition: height .4s var(--ease); }
.header.scrolled .nav-logo img { height: 40px; }
.nav-logo .logo-dark { display: none; }
.header.scrolled .nav-logo .logo-dark { display: block; }
.header.scrolled .nav-logo .logo-light { display: none; }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a {
  font-size: 12.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.92); position: relative; padding: 6px 0; transition: color .2s;
}
.header.scrolled .nav-menu a { color: var(--royal); }
.nav-menu a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--gold); }
.header.scrolled .nav-menu a:hover { color: var(--gold-deep); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 22px; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 60; }
.burger span { width: 26px; height: 2px; background: #fff; transition: all .3s var(--ease); }
.header.scrolled .burger span, .menu-open .burger span { background: var(--royal); }
.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(212,175,55,.16), transparent 42%),
    linear-gradient(135deg, var(--royal-deep) 0%, var(--royal) 52%, #1f2384 100%);
  overflow: hidden; color: #fff; padding: 140px 0 90px;
}
.hero-weave { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.hero-glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; filter: blur(90px);
  background: radial-gradient(circle, rgba(212,175,55,.22), transparent 70%); top: -180px; right: -140px; pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero-eyebrow { color: var(--gold-soft); }
.hero-eyebrow::before { background: var(--gold); }
.hero h1 {
  color: #fff; font-size: clamp(2.9rem, 6.4vw, 5.4rem); font-weight: 600; letter-spacing: -0.5px; line-height: 1.04;
}
.hero h1 .g { color: var(--gold); font-style: italic; }
.hero .sub { font-family: 'Cormorant', serif; font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--gold-soft); margin-top: 20px; font-weight: 500; font-style: italic; }
.hero .desc { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-top: 26px; max-width: 620px; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-stats { display: flex; gap: 44px; margin-top: 56px; flex-wrap: wrap; }
.hero-stat .n { font-family: 'Cormorant', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat .l { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: 8px; }

/* Hero visual card stack */
.hero-visual { position: relative; height: 520px; }
.hv-card {
  position: absolute; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
}
.hv-card svg { width: 100%; height: 100%; }
.hv-1 { width: 66%; height: 74%; top: 0; right: 0; }
.hv-2 { width: 52%; height: 46%; bottom: 0; left: 0; }
.hv-badge {
  position: absolute; bottom: 24px; right: -10px; background: #fff; color: var(--royal); border-radius: 12px;
  padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.hv-badge .ico { width: 42px; height: 42px; background: var(--royal); border-radius: 10px; display: grid; place-items: center; color: var(--gold); }
.hv-badge .ico svg { width: 22px; height: 22px; }
.hv-badge .t { font-family: 'Cormorant', serif; font-size: 1.5rem; font-weight: 700; line-height: 1; }
.hv-badge .s { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--grey-500); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.6);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .mouse { width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--gold); border-radius: 2px; animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 0; top: 6px; } 40% { opacity: 1; } 80% { opacity: 0; top: 16px; } }

/* Trusted strip */
.trusted { background: var(--white); border-bottom: 1px solid var(--grey-200); padding: 30px 0; }
.trusted-inner { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trusted-inner .lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-400); }
.trusted-inner .item { font-family: 'Cormorant', serif; font-size: 1.5rem; font-weight: 700; color: var(--royal); opacity: .82; }
.trusted-inner .item span { color: var(--gold-deep); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.about .lead { color: var(--grey-600); margin-top: 22px; font-size: 1.05rem; }
.about .lead + .lead { margin-top: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.about-highlights li { display: flex; align-items: center; gap: 12px; font-size: .95rem; font-weight: 500; color: var(--ink); }
.about-highlights svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; }
.about-visual { position: relative; }
.about-frame { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--grey-200); }
.about-frame svg { width: 100%; height: 100%; display: block; }
.about-stat-card {
  position: absolute; left: -26px; bottom: -26px; background: var(--royal); color: #fff; padding: 26px 30px; border-radius: 14px; box-shadow: var(--shadow-lg);
}
.about-stat-card .n { font-family: 'Cormorant', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-stat-card .l { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; color: rgba(255,255,255,.8); }

/* ==========================================================================
   WHAT WE DO
   ========================================================================== */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service-card {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 30px 22px;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-ico { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--royal), var(--royal-soft)); display: grid; place-items: center; color: var(--gold); margin-bottom: 18px; transition: transform .3s var(--ease); }
.service-card:hover .service-ico { transform: rotate(-6deg) scale(1.06); }
.service-ico svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.35rem; }
.service-card p { color: var(--grey-500); font-size: .86rem; margin-top: 8px; line-height: 1.6; }

/* ==========================================================================
   PRODUCT CATEGORIES
   ========================================================================== */
.products { background: var(--grey-50); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .art { position: absolute; inset: 0; z-index: 0; }
.product-card .art svg { width: 100%; height: 100%; object-fit: cover; }
.product-card .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(18,20,63,0) 30%, rgba(18,20,63,.42) 55%, rgba(18,20,63,.9) 100%); transition: background .4s; }
.product-card:hover .scrim { background: linear-gradient(180deg, rgba(18,20,63,.15) 10%, rgba(18,20,63,.55) 45%, rgba(18,20,63,.95) 100%); }
.product-card .body { position: relative; z-index: 2; padding: 26px 24px; color: #fff; }
.product-card h3 { color: #fff; font-size: 1.7rem; }
.product-card .line { width: 34px; height: 2px; background: var(--gold); margin: 12px 0; transition: width .35s var(--ease); }
.product-card:hover .line { width: 60px; }
.product-card .tags { display: flex; flex-wrap: wrap; gap: 8px; max-height: 0; opacity: 0; overflow: hidden; transition: all .4s var(--ease); }
.product-card:hover .tags { max-height: 120px; opacity: 1; margin-top: 6px; }
.product-card .tags span { font-size: 11px; letter-spacing: .5px; padding: 4px 11px; border: 1px solid rgba(255,255,255,.4); border-radius: 40px; background: rgba(255,255,255,.08); }

/* ==========================================================================
   MANUFACTURING
   ========================================================================== */
.mfg { background: #fff; }
.mfg-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.mfg-visual { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--grey-200); }
.mfg-visual svg { width: 100%; height: 100%; }
.mfg h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.mfg .badge-own { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,175,55,.14); color: var(--gold-deep); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 16px; border-radius: 40px; margin-top: 20px; }
.mfg .lead { color: var(--grey-600); margin-top: 20px; }
.mfg-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 30px; }
.mfg-step { background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 10px; padding: 16px 14px; text-align: center; transition: all .3s var(--ease); }
.mfg-step:hover { background: var(--royal); color: #fff; transform: translateY(-4px); }
.mfg-step .num { font-family: 'Cormorant', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold-deep); }
.mfg-step:hover .num { color: var(--gold); }
.mfg-step .t { font-size: .82rem; font-weight: 600; margin-top: 4px; }
.mfg-note { margin-top: 26px; padding: 20px 24px; border-left: 3px solid var(--gold); background: var(--grey-50); border-radius: 0 10px 10px 0; color: var(--grey-600); font-size: .95rem; }

/* ==========================================================================
   QUALITY & COMPLIANCE (dark)
   ========================================================================== */
.compliance { background: linear-gradient(160deg, var(--royal-deep), var(--royal) 70%); color: #fff; position: relative; overflow: hidden; }
.compliance .hero-weave { opacity: .35; }
.compliance .container { position: relative; z-index: 2; }
.compliance .section-head h2 { color: #fff; }
.compliance .section-head p { color: rgba(255,255,255,.8); }
.compliance .eyebrow { color: var(--gold-soft); }
.certs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cert-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
  padding: 26px 16px; text-align: center; transition: all .3s var(--ease); backdrop-filter: blur(4px);
}
.cert-card:hover { background: rgba(255,255,255,.1); border-color: var(--gold); transform: translateY(-5px); }
.cert-card .badge { width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 50%; background: rgba(212,175,55,.16); display: grid; place-items: center; color: var(--gold); transition: all .3s var(--ease); }
.cert-card:hover .badge { background: var(--gold); color: var(--royal-deep); transform: scale(1.08); }
.cert-card .badge svg { width: 26px; height: 26px; }
.cert-card .name { font-family: 'Cormorant', serif; font-size: 1.5rem; font-weight: 700; letter-spacing: .5px; }
.cert-card .desc { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ==========================================================================
   GLOBAL PRESENCE
   ========================================================================== */
.global { background: var(--ivory); }
.global-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 56px; align-items: center; }
.map-wrap { position: relative; }
.map-wrap svg { width: 100%; height: auto; }
.map-land { fill: #dfe3ee; transition: fill .3s; }
.map-pin { cursor: pointer; }
.map-pin .dot { fill: var(--royal); transition: all .3s var(--ease); transform-box: fill-box; transform-origin: center; }
.map-pin .ring { fill: none; stroke: var(--gold); stroke-width: 2; opacity: 0; transform-box: fill-box; transform-origin: center; }
.map-pin:hover .dot, .map-pin.active .dot { fill: var(--gold); r: 9; }
.map-pin .pulse { fill: var(--gold); opacity: .55; transform-box: fill-box; transform-origin: center; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .55; } 70% { transform: scale(3.6); opacity: 0; } 100% { opacity: 0; } }
.global-list { display: flex; flex-direction: column; gap: 6px; }
.region-item {
  display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent; transition: all .25s var(--ease);
}
.region-item:hover, .region-item.active { background: #fff; border-color: var(--grey-200); box-shadow: var(--shadow-sm); transform: translateX(6px); }
.region-item .flag { font-size: 1.6rem; line-height: 1; }
.region-item .rt { font-weight: 600; font-size: .98rem; color: var(--royal); }
.region-item .rs { font-size: .78rem; color: var(--grey-500); }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.why-card { border: 1px solid var(--grey-200); border-radius: 12px; padding: 26px 20px; transition: all .3s var(--ease); background: #fff; }
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-5px); background: var(--ivory); }
.why-card .chk { width: 40px; height: 40px; border-radius: 50%; background: rgba(26,29,109,.08); display: grid; place-items: center; color: var(--royal); margin-bottom: 14px; transition: all .3s var(--ease); }
.why-card:hover .chk { background: var(--gold); color: var(--royal-deep); }
.why-card .chk svg { width: 20px; height: 20px; }
.why-card h3 { font-size: 1.28rem; }

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.process { background: linear-gradient(180deg, var(--grey-50), #fff); }
.timeline { position: relative; overflow-x: auto; padding: 20px 0 14px; -webkit-overflow-scrolling: touch; }
.timeline-track { display: flex; gap: 0; min-width: max-content; position: relative; padding: 0 6px; }
.tl-step { position: relative; min-width: 180px; padding: 0 14px; text-align: center; }
.tl-line { position: absolute; top: 34px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--grey-200), var(--gold), var(--grey-200)); z-index: 0; }
.tl-node { position: relative; z-index: 1; width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%; background: #fff; border: 2px solid var(--grey-200); display: grid; place-items: center; color: var(--royal); font-family: 'Cormorant', serif; font-size: 1.7rem; font-weight: 700; transition: all .35s var(--ease); }
.tl-step:hover .tl-node { background: var(--royal); color: var(--gold); border-color: var(--royal); transform: scale(1.08); box-shadow: var(--shadow-md); }
.tl-step h4 { font-size: 1.28rem; color: var(--royal); }
.tl-step p { font-size: .8rem; color: var(--grey-500); margin-top: 4px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { background: var(--ivory); }
.tcarousel { position: relative; max-width: 900px; margin: 0 auto; }
.tslides { position: relative; min-height: 300px; }
.tslide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all .6s var(--ease); background: #fff; border-radius: 18px; padding: 54px 56px; box-shadow: var(--shadow-md); border: 1px solid var(--grey-200);
}
.tslide.active { opacity: 1; visibility: visible; transform: none; position: relative; }
.tslide .quote-mark { font-family: 'Cormorant', serif; font-size: 5rem; color: var(--gold); line-height: .6; height: 40px; }
.tslide .quote { font-family: 'Cormorant', serif; font-size: 1.6rem; font-style: italic; color: var(--ink); line-height: 1.5; }
.tslide .stars { color: var(--gold); margin-top: 20px; letter-spacing: 3px; }
.tslide .who { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.tslide .who .av { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--royal), var(--royal-soft)); color: var(--gold); display: grid; place-items: center; font-family: 'Cormorant', serif; font-size: 1.5rem; font-weight: 700; }
.tslide .who .nm { font-weight: 700; color: var(--royal); }
.tslide .who .rl { font-size: .82rem; color: var(--grey-500); }
.tcontrols { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 34px; }
.tbtn { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--grey-200); background: #fff; color: var(--royal); cursor: pointer; display: grid; place-items: center; transition: all .25s var(--ease); }
.tbtn:hover { background: var(--royal); color: #fff; border-color: var(--royal); }
.tdots { display: flex; gap: 10px; }
.tdot { width: 10px; height: 10px; border-radius: 50%; background: var(--grey-200); cursor: pointer; transition: all .25s; border: none; padding: 0; }
.tdot.active { background: var(--gold); width: 30px; border-radius: 6px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); }
.director-card { display: flex; align-items: center; gap: 18px; background: var(--royal); color: #fff; padding: 22px 26px; border-radius: 14px; margin: 28px 0; }
.director-card .av { width: 60px; height: 60px; border-radius: 50%; background: var(--gold); color: var(--royal-deep); display: grid; place-items: center; font-family: 'Cormorant', serif; font-size: 1.7rem; font-weight: 700; flex-shrink: 0; }
.director-card .rl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-soft); }
.director-card .nm { font-family: 'Cormorant', serif; font-size: 1.7rem; font-weight: 700; }
.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.office { border: 1px solid var(--grey-200); border-radius: 12px; padding: 20px; transition: all .3s var(--ease); }
.office:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.office .flag { font-size: 1.5rem; }
.office h4 { font-size: 1.15rem; color: var(--royal); margin: 8px 0 6px; }
.office p { font-size: .82rem; color: var(--grey-500); line-height: 1.55; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contact-actions a { font-size: 12px; }
.wa { background: #25D366; color: #fff; border-color: #25D366; }
.wa:hover { background: #1eb455; border-color: #1eb455; }

.contact-form { background: var(--ivory); border: 1px solid var(--grey-200); border-radius: 18px; padding: 40px; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 1.9rem; }
.contact-form .fsub { color: var(--grey-500); font-size: .9rem; margin-top: 6px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--royal); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--grey-200); border-radius: 8px; font-family: inherit; font-size: .95rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(26,29,109,.1); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .78rem; color: var(--grey-400); margin-top: 4px; }
.form-success { display: none; background: rgba(37,211,102,.12); border: 1px solid #25D366; color: #12854a; padding: 14px 16px; border-radius: 8px; font-size: .9rem; margin-bottom: 18px; }
.form-success.show { display: block; }

.map-embed { margin-top: 30px; border-radius: 14px; overflow: hidden; border: 1px solid var(--grey-200); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(.2); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--royal-deep); color: rgba(255,255,255,.72); padding: 74px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { font-size: .9rem; line-height: 1.75; max-width: 340px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #fff; transition: all .25s var(--ease); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--royal-deep); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; font-size: .9rem; padding: 6px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 24px 0; font-size: .82rem; }
.footer-bottom a:hover { color: var(--gold); }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; z-index: 45; box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* Back to top */
.totop { position: fixed; bottom: 26px; left: 26px; width: 48px; height: 48px; border-radius: 50%; background: var(--royal); color: #fff; display: grid; place-items: center; z-index: 45; box-shadow: var(--shadow-md); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .3s var(--ease); border: none; }
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--gold); color: var(--royal-deep); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .services-grid, .why-grid, .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .mfg-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-menu, .nav-cta .btn-outline { display: none; }
  .burger { display: flex; }
  .nav-menu {
    position: fixed; inset: 0; background: #fff; flex-direction: column; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 55;
  }
  .menu-open .nav-menu { display: flex; transform: none; }
  .menu-open .nav-menu a { color: var(--royal); font-size: 1.1rem; }
  .hero-grid, .about-grid, .mfg-grid, .global-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { height: 380px; margin-top: 10px; }
  .about-visual { max-width: 520px; }
  .offices { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 76px 0; }
}
@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .services-grid, .why-grid, .certs-grid, .products-grid, .field-row, .about-highlights, .mfg-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .hero-actions .btn { flex: 1; }
  .tslide { padding: 36px 26px; }
  .tslide .quote { font-size: 1.3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .about-stat-card { left: 0; }
  .contact-form { padding: 28px 22px; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}
