/* ======================================================
   main.css — Layout, Components, Sections
   ====================================================== */

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garant', serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-heading {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-subheading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: 96px 0;
}

.accent { color: var(--accent); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 150ms ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: #080b14;
  border-color: var(--accent);
}
.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover {
  background-color: var(--accent);
  color: #080b14;
  transform: translateY(-1px);
}

/* ── ╔══════════════╗ ──────────────────────────────────
   ║  1 — Navigation  ║
   ╚══════════════╝ ── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 350ms ease, border-color 350ms ease, backdrop-filter 350ms ease;
}

.nav--scrolled {
  background: var(--nav-bg);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent);
  font-family: 'Cormorant Garant', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.nav__logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav__logo-text { letter-spacing: 0.12em; text-transform: uppercase; }

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 auto;
}

.nav__link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  position: relative;
  transition: color 200ms ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 1px;
  background: var(--accent);
  transition: left 200ms ease, right 200ms ease;
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--text);
}
.nav__link:hover::after,
.nav__link.is-active::after {
  left: 0.85rem;
  right: 0.85rem;
}

/* Controls: theme + lang */
.nav__controls {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__theme-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}
.nav__theme-btn:hover { color: var(--accent); border-color: var(--accent); }
.nav__theme-btn svg { width: 16px; height: 16px; pointer-events: none; }

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__lang [data-lang] {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.45rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 2px;
  transition: color 200ms ease, background-color 200ms ease;
}
.nav__lang [data-lang]:hover { color: var(--text); }
.nav__lang [data-lang].active {
  color: var(--accent);
  background: rgba(196,154,60,0.1);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  transition: color 200ms ease;
}
.nav__mobile-link:hover { color: var(--accent); }
.nav__mobile-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}


/* ── ╔═══════════╗ ────────────────────────────────────
   ║  2 — Hero   ║
   ╚═══════════╝ ─── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg);
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 7rem 2rem 4rem;
  text-align: center;
}

.hero__eyebrow {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: #f4f2ee;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  white-space: pre-line;
}

.hero__subline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(244, 242, 238, 0.72);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Stats bar */
.hero__stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(244,242,238,0.15);
  padding-top: 2rem;
}

.hero__stat {
  padding: 0.75rem 2.5rem;
  text-align: center;
  border-right: 1px solid rgba(244,242,238,0.15);
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  display: block;
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero__stat-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.55);
}


/* ── ╔══════════════╗ ──────────────────────────────────
   ║  3 — Marquee   ║
   ╚══════════════╝ ── */

.marquee {
  background-color: var(--accent);
  overflow: hidden;
  padding: 0.9rem 0;
  user-select: none;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee__inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee__item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #080b14;
  padding: 0 1.5rem;
}

.marquee__dot {
  color: rgba(8,11,20,0.4);
  font-size: 0.6rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee__track { animation-play-state: paused; }


/* ── ╔═══════════════╗ ─────────────────────────────────
   ║  4 — Heritage   ║
   ╚═══════════════╝ ─ */

.heritage {
  background-color: var(--bg);
  padding: 96px 0;
}

.heritage__intro {
  margin-bottom: 4rem;
}

.heritage__layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 4rem;
  align-items: start;
}

.heritage__chapters {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.heritage__chapter {}

.heritage__chapter-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.heritage__chapter-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.heritage__images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 96px;
}

.heritage__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.92);
}

.heritage__img-caption {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: -1rem;
  padding-left: 0.25rem;
}


/* ── ╔═══════════════╗ ─────────────────────────────────
   ║  5 — Services   ║
   ╚═══════════════╝ ─ */

.services {
  background-color: var(--surface);
  padding: 96px 0;
}

.services__header { margin-bottom: 3.5rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background-color 250ms ease;
}
.service-card:hover { background-color: var(--card-hover); }

.service-card__num {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.service-card__title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.service-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}


/* ── ╔════════════════╗ ────────────────────────────────
   ║  6 — Categories  ║
   ╚════════════════╝ ─ */

.categories {
  background-color: var(--bg);
  padding: 96px 0;
}

.categories__header { margin-bottom: 3.5rem; }

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background-color: var(--surface);
  border: 1px solid var(--border);
}

.cat-card:hover .cat-card__img { transform: scale(1.04); }

.cat-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.cat-card__info {
  padding: 1.4rem 1.5rem 1.6rem;
  border-top: 1px solid var(--border);
}

.cat-card__title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.cat-card__body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ── ╔═══════════════╗ ─────────────────────────────────
   ║  7 — Countries  ║
   ╚═══════════════╝ ─ */

.countries {
  background-color: var(--surface);
  padding: 96px 0;
}

.countries__header { margin-bottom: 3.5rem; }

.countries__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.country-card {
  background: var(--surface);
  padding: 2.5rem 1.5rem;
  transition: background-color 250ms ease;
}
.country-card:hover { background-color: var(--card-hover); }

.country-card__flag {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.country-card__name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.country-card__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.country-card__spec {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.country-card__adv {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ── ╔══════════════╗ ──────────────────────────────────
   ║  8 — Process   ║
   ╚══════════════╝ ── */

.process {
  background-color: var(--bg);
  padding: 96px 0;
}

.process__header { margin-bottom: 4rem; }

.process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

/* Horizontal connecting line */
.process__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10%);
  right: calc(10%);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  text-align: center;
}

.process__circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  font-family: 'Cormorant Garant', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.process__step-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.process__step-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ── ╔═══════════════════╗ ───────────────────────────
   ║  9 — Sustainability ║
   ╚═══════════════════╝ ─ */

.sustainability {
  background-color: var(--surface);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.sus__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/sus-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
}

.sus__inner {
  position: relative;
  z-index: 1;
}

.sus__header { margin-bottom: 3.5rem; }

.sus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.sus-pillar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  transition: border-color 250ms ease;
}
.sus-pillar:hover { border-color: var(--accent); }

.sus-pillar__icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.sus-pillar__title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.sus-pillar__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Certification badges */
.sus__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.sus__cert {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}


/* ── ╔══════════════════╗ ──────────────────────────────
   ║  10 — Why Boonaj   ║
   ╚══════════════════╝ ── */

.why {
  background-color: var(--bg);
  padding: 96px 0;
}

.why__header { margin-bottom: 3.5rem; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  transition: border-color 250ms ease, background-color 250ms ease;
}
.why-card:hover { border-color: var(--accent); }

.why-card__icon {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.why-card__title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.why-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}


/* ── ╔══════════════╗ ──────────────────────────────────
   ║  11 — Contact  ║
   ╚══════════════╝ ── */

.contact {
  background-color: var(--surface);
  padding: 96px 0;
}

.contact__header { margin-bottom: 3.5rem; }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

/* Contact info side */
.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact__info-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact__info-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}

.contact__info-value a {
  color: var(--text);
  transition: color 200ms ease;
}
.contact__info-value a:hover { color: var(--accent); }

.contact__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: #25D366;
  color: #ffffff;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background-color 200ms ease, transform 150ms ease;
  margin-top: 0.25rem;
  width: fit-content;
}
.contact__wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}
.contact__wa-btn svg { width: 18px; height: 18px; }

/* Form */
.contact__form-wrap {}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 200ms ease, background-color 300ms ease;
  outline: none;
  -webkit-appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus { border-color: var(--accent); }

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c49a3c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form__submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #080b14;
  border: 2px solid var(--accent);
  border-radius: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 150ms ease;
  margin-top: 0.5rem;
}
.form__submit:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-1px);
}
.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form__success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(196,154,60,0.1);
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}


/* ── ╔══════════════╗ ──────────────────────────────────
   ║  12 — Footer   ║
   ╚══════════════╝ ── */

footer {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 3rem;
  padding-bottom: 48px;
}

/* Footer description (below tagline) */
.footer__description {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 240px;
}

/* Footer capabilities column */
.footer__cap { }

/* Contact info sub-label */
.contact__info-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

/* Contact social links row */
.contact__info-item--social {
  display: flex;
  gap: 1.25rem;
  padding-top: 0.25rem;
}
.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 200ms ease;
}
.contact__social-link:hover { color: var(--accent); }

/* Footer logo column */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent);
  font-family: 'Cormorant Garant', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__logo svg { width: 32px; height: 32px; }

.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 200ms ease;
}
.footer__social a:hover { color: var(--accent); }
.footer__social svg { width: 16px; height: 16px; }

/* Footer nav links column */
.footer__nav-heading,
.footer__contact-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__nav-list a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 200ms ease;
}
.footer__nav-list a:hover { color: var(--text); }

/* Footer contact column */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__contact-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.footer__contact-item a {
  color: var(--text-muted);
  transition: color 200ms ease;
}
.footer__contact-item a:hover { color: var(--accent); }

/* Footer bottom bar */
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__lang {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.footer__lang [data-lang] {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.45rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 2px;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease;
}
.footer__lang [data-lang]:hover { color: var(--text); }


/* ── ╔══════════════════╗ ──────────────────────────────
   ║  Category Spec Bar  ║
   ╚══════════════════╝ ── */

.cat-card__spec {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.cat-card__spec span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}


/* ── ╔═══════════╗ ────────────────────────────────────
   ║  FAQ Section ║
   ╚═══════════╝ ─── */

.faq { background-color: var(--bg); }
.faq__header { margin-bottom: 3.5rem; }

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.faq__item {
  padding: 2rem 2.25rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background-color 200ms ease;
}
.faq__item:nth-child(even) { border-right: none; }
.faq__item:nth-last-child(-n+2) { border-bottom: none; }
.faq__item:hover { background-color: var(--card-hover); }

.faq__q {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.faq__a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}


/* ── ╔══════════════════════╗ ──────────────────────────
   ║  Form — file & hint     ║
   ╚══════════════════════╝ ── */

.form__file {
  cursor: pointer;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}
.form__file::file-selector-button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 2px;
  padding: 0.3rem 0.75rem;
  margin-right: 0.75rem;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease;
}
.form__file::file-selector-button:hover {
  background: var(--accent);
  color: #080b14;
}

.form__hint {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}


/* ── ╔══════════════════════╗ ──────────────────────────
   ║  Floating WhatsApp      ║
   ╚══════════════════╝ ────── */

.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 950;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 200ms ease, background-color 200ms ease;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.whatsapp-float:hover {
  background: #1ebe5a;
  transform: scale(1.08);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

