/* ============================================================
   Garment Company — Shared Stylesheet
   Clean, modern B2B manufacturing design
   ============================================================ */

:root {
  --navy: #103b32;
  --navy-2: #165142;
  --navy-3: #1e6b54;
  --ink: #16232d;
  --text: #4f6272;
  --muted: #7d8f9c;
  --accent: #c8912e;
  --accent-dark: #a3721c;
  --bg: #ffffff;
  --bg-soft: #f4f8f6;
  --bg-navy-soft: #eaf3ef;
  --line: #e2ece7;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(16, 59, 50, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 59, 50, 0.1);
  --shadow-lg: 0 24px 60px rgba(16, 59, 50, 0.16);
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

section { padding: 88px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; }

.btn-primary {
  background: var(--accent);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(200, 145, 46, 0.35);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}
.btn-light-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-whatsapp {
  background: #1fa855;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #178a45;
  transform: translateY(-2px);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 9px 0;
  min-height: 38px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-links { display: flex; gap: 26px; }
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}
.topbar a:hover { color: var(--accent); }
.topbar svg { width: 14px; height: 14px; }
.topbar-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}
.brand-name {
  font-family: "Marcellus", Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* Grasim Apparel logo */
.brand-img { height: 58px; width: auto; display: block; }
.site-footer .brand-img {
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 12px;
  height: 66px;
}
@media (max-width: 560px) {
  .brand-img { height: 46px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-3); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Section headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(200, 145, 46, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-navy-soft) 0%, #ffffff 100%);
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--navy-3);
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: rgba(200, 145, 46, 0.35);
  z-index: -1;
  border-radius: 4px;
}
.hero-sub {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 42px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-2);
  box-shadow: var(--shadow-sm);
}
.trust-chip svg { width: 15px; height: 15px; color: var(--accent-dark); }

.hero-visual { position: relative; }
.hero-visual .hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.float-card .fc-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--bg-navy-soft);
  display: grid;
  place-items: center;
  color: var(--navy-3);
  flex-shrink: 0;
}
.float-card .fc-icon svg { width: 21px; height: 21px; }
.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.2;
}
.float-card span { font-size: 12.5px; color: var(--muted); }
.float-card.fc-top { top: 26px; left: -34px; animation: floatY 5s ease-in-out infinite; }
.float-card.fc-bottom { bottom: 30px; right: -24px; animation: floatY 6s ease-in-out 1s infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy); padding: 56px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat h3 {
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--white);
  margin-bottom: 6px;
}
.stat h3 span.suffix { color: var(--accent); }
.stat p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  font-weight: 500;
}

/* ---------- Category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 330px;
  box-shadow: var(--shadow-sm);
  display: block;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 59, 50, 0) 35%, rgba(16, 59, 50, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}
.cat-card h3 { color: var(--white); font-size: 21px; margin-bottom: 4px; }
.cat-card p { color: rgba(255, 255, 255, 0.78); font-size: 14px; }
.cat-card .cat-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}
.cat-card .cat-link svg { width: 15px; height: 15px; transition: transform 0.25s; }
.cat-card:hover .cat-link svg { transform: translateX(5px); }

/* ---------- Category carousel ---------- */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .cat-card {
  flex: 0 0 calc((100% - 44px) / 3);
  height: 430px;
}
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--navy);
  transition: all 0.25s ease;
}
.car-btn:hover { background: var(--navy); color: var(--white); transform: translateY(-50%) scale(1.06); }
.car-btn svg { width: 20px; height: 20px; }
.car-prev { left: -14px; }
.car-next { right: -14px; }
.car-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.car-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #ccdcd5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.car-dot:hover { background: var(--navy-3); }
.car-dot.active { background: var(--accent); width: 28px; }
@media (max-width: 1024px) {
  .carousel-track .cat-card { flex-basis: calc((100% - 22px) / 2); }
}
@media (max-width: 560px) {
  .carousel-track .cat-card { flex-basis: 100%; height: 380px; }
  .car-prev { left: -6px; }
  .car-next { right: -6px; }
}

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
/* Factory showcase — full-bleed image section, desktop only */
.factory-banner { padding: 0; line-height: 0; }
.factory-banner img { width: 100%; height: auto; display: block; }
@media (max-width: 820px) {
  .factory-banner { display: none; }
}

/* Process cards with photos */
.proc-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.proc-img { position: relative; height: 175px; overflow: hidden; }
.proc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.proc-card:hover .proc-img img { transform: scale(1.06); }
.proc-img .step-num {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.proc-body { padding: 24px 26px 28px; }
.proc-body h3 { font-size: 18.5px; margin-bottom: 10px; }
.proc-body p { font-size: 15px; }
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--bg-navy-soft);
  color: var(--navy-3);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.feature-card p { font-size: 15px; }

/* ---------- Process ---------- */
.process { background: var(--bg-soft); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s ease;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process-step .step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent-dark);
  background: rgba(200, 145, 46, 0.14);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 16.5px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--muted); }

/* ---------- Client logo marquee ---------- */
.logo-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logo-marquee:hover .marquee-track { animation-play-state: paused; }
.logo-tile {
  flex: 0 0 auto;
  width: 240px;
  height: 120px;
  margin-right: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 32px;
}
.logo-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 560px) {
  .logo-tile { width: 180px; height: 96px; margin-right: 18px; padding: 18px 22px; }
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.testimonial .stars { color: var(--accent); letter-spacing: 3px; font-size: 15px; }
.testimonial blockquote { font-size: 15.5px; color: var(--text); flex: 1; }
.testimonial .t-author { display: flex; align-items: center; gap: 13px; }
.testimonial .t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.testimonial .t-author strong { display: block; color: var(--ink); font-size: 15px; }
.testimonial .t-author span { font-size: 13px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(200, 145, 46, 0.18), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 520px; }
.cta-band .cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    linear-gradient(rgba(16, 59, 50, 0.82), rgba(16, 59, 50, 0.82)),
    var(--page-hero-img, none) center/cover;
  background-color: var(--navy);
  padding: 92px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.4vw, 48px); margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, 0.8); max-width: 640px; margin: 0 auto; font-size: 17px; }
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumb a { color: var(--accent); font-weight: 600; }

/* ---------- Products page ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--navy-3); color: var(--navy-3); }
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card.hidden { display: none; }
.product-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(16, 59, 50, 0.85);
  backdrop-filter: blur(4px);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}
.product-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 19px; margin-bottom: 12px; }
.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  flex: 1;
}
.product-specs li {
  font-size: 13.5px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 7px;
}
.product-specs li span:first-child { color: var(--muted); }
.product-specs li span:last-child { color: var(--ink); font-weight: 600; text-align: right; }
.product-body .btn { justify-content: center; width: 100%; padding: 13px 20px; font-size: 14px; }

/* ---------- Product tiles + lightbox ---------- */
.ptile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.ptile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ptile.hidden { display: none; }
.ptile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ptile:hover > img { transform: scale(1.06); }
.ptile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
}
.ptile-overlay h3 {
  color: var(--white);
  font-size: 16.5px;
  background: rgba(16, 59, 50, 0.92);
  padding: 9px 18px;
  border-radius: 999px;
}
.ptile-plain { background: var(--white); border: 1px solid var(--line); }
.ptile-plain > .zoom-btn {
  position: absolute;
  left: 20px;
  bottom: 20px;
  opacity: 0;
}
.ptile-plain:hover > .zoom-btn { opacity: 1; }
@media (hover: none) {
  .ptile-plain > .zoom-btn { opacity: 1; }
}
.zoom-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
}
.zoom-btn:hover { background: var(--accent-dark); transform: scale(1.08); }
.zoom-btn svg { width: 21px; height: 21px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 36, 30, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s;
}
.lightbox-close:hover { background: var(--accent); color: var(--navy); }

/* ---------- Split sections (about) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img { width: 100%; height: 480px; object-fit: cover; }
.split-content h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 18px; }
.split-content p { margin-bottom: 16px; }

.check-list { list-style: none; margin: 22px 0 30px; display: grid; gap: 13px; }
.check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
}
.check-list li svg {
  width: 21px;
  height: 21px;
  color: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
}
.img-badge strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy-2);
  display: block;
}
.img-badge span { font-size: 13px; color: var(--muted); }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ---------- Read-more cards (About: vision/history/strengths) ---------- */
.vh-text {
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.vh-text.expanded { max-height: 1400px; }
.vh-text p { font-size: 15px; margin-bottom: 10px; }
.vh-text p strong { color: var(--ink); }
.read-more {
  margin-top: 14px;
  background: none;
  border: none;
  padding: 0;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}
.read-more:hover { color: var(--navy-3); }

/* ---------- Certifications ---------- */
.cert-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 262px;
  height: 94px;
  padding: 0 22px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 560px) {
  .cert-badge { width: 100%; max-width: 320px; height: 84px; }
}
.cert-badge .cb-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200, 145, 46, 0.15);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
}
.cert-badge .cb-icon svg { width: 21px; height: 21px; }
.cert-badge strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--ink); }
.cert-badge span { font-size: 12.5px; color: var(--muted); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.info-card {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--bg-navy-soft);
  color: var(--navy-3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-icon svg { width: 23px; height: 23px; }
.info-card h3 { font-size: 17px; margin-bottom: 5px; }
.info-card p { font-size: 14.5px; }
.info-card a { color: var(--navy-3); font-weight: 600; }
.info-card a:hover { color: var(--accent-dark); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h2 { font-size: 26px; margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 28px; font-size: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-group label span { color: #d64545; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-3);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #e8f7ee;
  border: 1px solid #b7e4c7;
  color: #1a7a3d;
  border-radius: 11px;
  padding: 16px 20px;
  margin-top: 18px;
  font-weight: 500;
  font-size: 14.5px;
}
.form-success.show { display: block; }

.map-wrap {
  position: relative;
  margin-top: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map-link { position: absolute; inset: 0; z-index: 2; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--accent-dark);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 20px; font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name small { color: rgba(255, 255, 255, 0.5); }
.footer-brand p { margin: 18px 0 22px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.25s;
}
.footer-social a:hover { background: var(--accent); color: var(--navy); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

.site-footer h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: grid; gap: 11px; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-contact { list-style: none; display: grid; gap: 15px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(31, 168, 85, 0.42);
  z-index: 90;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 34px rgba(31, 168, 85, 0.5);
}
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .cat-grid, .feature-grid, .testimonial-grid, .product-grid, .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-card.fc-top { left: -10px; }
  .float-card.fc-bottom { right: -8px; }
}

@media (max-width: 820px) {
  section { padding: 64px 0; }
  .topbar .container { justify-content: center; }
  .topbar-note { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 4%;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; font-size: 16px; }
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual .hero-img { height: 380px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-img img { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 30px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero .eyebrow { display: none; }
  .hero h1 .h1-break { display: block; }
  .cat-grid, .feature-grid, .testimonial-grid, .product-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .float-card { padding: 12px 14px; }
  .float-card strong { font-size: 14px; }
  .contact-form-wrap { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Honeypot field — visually removed, invisible to humans */
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
