/* =====================================================================
   JARITY SOLUTIONS — Global Sourcing & Trade Consultancy
   Design system & site styles
   Palette inspired by the ocean/marine brand: deep navy, ocean blues,
   bright azure, with a warm gold accent for trust & commodities.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors */
  --navy-900: #061529;
  --navy-800: #0a1f3c;
  --navy-700: #0e2c54;
  --ocean-700: #0b4f9e;
  --ocean-600: #1266c7;
  --ocean-500: #1a7ae0;
  --azure-400: #22b8e6;
  --azure-300: #5fd0f0;
  --teal-500: #0e9488;
  --gold-500: #e0a92e;
  --gold-400: #edc25a;

  /* Neutrals */
  --ink: #10233d;
  --slate-700: #33475b;
  --slate-500: #5a6b7f;
  --slate-400: #8394a7;
  --line: #e4ebf2;
  --surface: #ffffff;
  --surface-alt: #f4f8fc;
  --surface-sea: #eef5fb;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10, 31, 60, 0.06), 0 1px 3px rgba(10, 31, 60, 0.08);
  --shadow-md: 0 6px 20px rgba(10, 31, 60, 0.08), 0 2px 6px rgba(10, 31, 60, 0.06);
  --shadow-lg: 0 24px 60px rgba(8, 21, 41, 0.16), 0 8px 24px rgba(8, 21, 41, 0.10);
  --shadow-glow: 0 18px 50px rgba(18, 102, 199, 0.30);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --grad-ocean: linear-gradient(135deg, #0b4f9e 0%, #1266c7 45%, #22b8e6 100%);
  --grad-deep: linear-gradient(160deg, #061529 0%, #0a1f3c 55%, #0e2c54 100%);
  --grad-gold: linear-gradient(135deg, #edc25a 0%, #e0a92e 100%);

  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--surface);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1.1rem; }
a { color: var(--ocean-600); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ocean-500); }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--surface-alt); }
.section--sea { background: var(--surface-sea); }
.narrow { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }

.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Eyebrow / section headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--slate-500); font-size: 1.08rem; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-ocean);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 22px 55px rgba(18, 102, 199, 0.40); }
.btn-gold {
  background: var(--grad-gold);
  color: var(--navy-800);
  box-shadow: 0 14px 34px rgba(224, 169, 46, 0.36);
}
.btn-gold:hover { transform: translateY(-2px); color: var(--navy-900); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ocean-700);
  border-color: var(--ocean-600);
}
.btn-outline:hover { background: var(--ocean-600); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.brand__tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean-600);
  font-weight: 700;
  margin-top: 4px;
}
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--slate-700);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__links a:hover { color: var(--ocean-700); background: var(--surface-sea); }
.nav__links a.active { color: var(--ocean-700); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle span { width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }

@media (max-width: 940px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav.open .nav__links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--surface-alt); }
  .nav__cta .btn-cta-desktop { display: none; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-deep);
  color: #eaf2fb;
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) 0 0;
}
.hero__world {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 640px; height: 640px;
  top: -220px; right: -160px;
  background: radial-gradient(circle, rgba(34,184,230,0.35) 0%, rgba(34,184,230,0) 68%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #cfe6fb;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ce0b0; box-shadow: 0 0 0 4px rgba(76,224,176,0.25); }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent { background: linear-gradient(120deg, #edc25a, #22b8e6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 1.18rem; color: #c3d5ea; max-width: 560px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; color: #9fb6d0; font-size: 0.9rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 18px; height: 18px; color: var(--gold-400); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 460px; }
}

/* Hero art card (routes) */
.hero__art { position: relative; }
.route-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.route-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.route-card__head strong { color: #fff; font-family: var(--font-head); font-size: 1.02rem; }
.route-card__head span { font-size: 0.78rem; color: #9fb6d0; }
.route-legend { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.route-legend span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; color: #b8cbe2; }
.route-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }

/* ---------- Marquee / logos strip ---------- */
.strip {
  background: var(--navy-900);
  color: #bcd0e8;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.strip__inner { display: flex; align-items: center; justify-content: center; gap: clamp(20px,4vw,54px); flex-wrap: wrap; text-align: center; }
.strip__item { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 10px; }
.strip__item svg { width: 20px; height: 20px; color: var(--azure-300); }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 30px); }
.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ocean-700); letter-spacing: -0.03em; line-height: 1; }
.stat__num small { font-size: 0.55em; color: var(--gold-500); }
.stat__label { margin-top: 8px; font-size: 0.92rem; color: var(--slate-500); }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #cfe0f2; }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--surface-sea);
  color: var(--ocean-600);
  margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate-500); font-size: 0.98rem; margin-bottom: 0; }

/* Service card variant with number */
.service-card { position: relative; overflow: hidden; }
.service-card__no {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem;
  color: var(--surface-sea);
  line-height: 1;
}
.service-card ul { margin-top: 14px; }
.service-card li { position: relative; padding-left: 24px; font-size: 0.94rem; color: var(--slate-500); margin-bottom: 6px; }
.service-card li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--surface-sea);
  border: 3px solid var(--azure-400);
}

/* ---------- Category (products) cards ---------- */
.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card__top {
  padding: 26px 26px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cat-card__top.agri { background: linear-gradient(140deg, #0e9488 0%, #0b6e63 100%); }
.cat-card__top.herbal { background: linear-gradient(140deg, #3f9d5a 0%, #237a45 100%); }
.cat-card__top.energy { background: linear-gradient(140deg, #1266c7 0%, #0b4f9e 100%); }
.cat-card__emoji {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(255,255,255,0.16);
  display: grid; place-items: center; margin-bottom: 14px;
}
.cat-card__emoji svg { width: 30px; height: 30px; color: #fff; }
.cat-card__top h3 { color: #fff; margin-bottom: 4px; }
.cat-card__top p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin: 0; }
.cat-card__body { padding: 22px 26px 26px; flex: 1; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--surface-sea);
  color: var(--slate-700);
  border: 1px solid var(--line);
}

/* ---------- Split feature (about / why) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.feature-list { display: grid; gap: 16px; margin-top: 22px; }
.feature-item { display: flex; gap: 14px; }
.feature-item__ic {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad-ocean); color: #fff;
  display: grid; place-items: center;
}
.feature-item__ic svg { width: 22px; height: 22px; }
.feature-item h4 { font-family: var(--font-head); margin: 2px 0 4px; color: var(--ink); font-size: 1.05rem; }
.feature-item p { margin: 0; color: var(--slate-500); font-size: 0.95rem; }

/* Media panel with gradient + illustration */
.media-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-deep);
  padding: 30px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.media-panel--sea { background: var(--grad-ocean); }
.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--surface-sea);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder {
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  text-align: center;
  color: var(--slate-400);
  background:
    linear-gradient(135deg, rgba(18,102,199,0.06), rgba(34,184,230,0.10)),
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(18,102,199,0.05) 14px, rgba(18,102,199,0.05) 28px);
  padding: 24px;
}
.image-placeholder svg { width: 48px; height: 48px; color: var(--ocean-500); margin-bottom: 12px; opacity: 0.7; }
.image-placeholder span { font-size: 0.85rem; font-family: var(--font-head); font-weight: 600; }
.image-placeholder small { font-size: 0.75rem; color: var(--slate-400); }

/* Image collage: a main photo with a smaller overlapping inset photo */
.media-collage { position: relative; padding-bottom: 34px; padding-right: 22px; }
.media-collage .image-frame.main { border-radius: var(--radius-lg); }
.media-collage .image-frame.inset {
  position: absolute; right: 0; bottom: 0; width: 52%;
  border: 5px solid #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 520px) { .media-collage .image-frame.inset { width: 58%; } }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step__no {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-gold); color: var(--navy-800);
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h4 { font-family: var(--font-head); font-size: 1.08rem; margin-bottom: 6px; color: var(--ink); }
.step p { font-size: 0.92rem; color: var(--slate-500); margin: 0; }

/* ---------- Pillars / why-us list ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
@media (max-width: 620px) { .pillars { grid-template-columns: 1fr; } }
.pillar { display: flex; gap: 12px; align-items: flex-start; padding: 6px 0; }
.pillar svg { flex: none; width: 24px; height: 24px; color: var(--teal-500); margin-top: 2px; }
.pillar span { font-size: 0.98rem; color: var(--slate-700); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--grad-ocean);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -20%, rgba(255,255,255,0.22), transparent 55%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin-inline: auto; position: relative; }
.cta-band .hero__actions { justify-content: center; position: relative; margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); height: 100%;
}
.quote-card__stars { color: var(--gold-500); margin-bottom: 12px; letter-spacing: 2px; }
.quote-card blockquote { margin: 0 0 18px; font-size: 1.02rem; color: var(--slate-700); font-style: italic; }
.quote-card__by { display: flex; align-items: center; gap: 12px; }
.quote-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-ocean); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote-card__by strong { display: block; color: var(--ink); font-size: 0.95rem; }
.quote-card__by span { font-size: 0.82rem; color: var(--slate-400); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; padding: 4px 22px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0;
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--ocean-500); transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; color: var(--slate-500); font-size: 0.97rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 16px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.contact-item__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--surface-sea); color: var(--ocean-600); display: grid; place-items: center; }
.contact-item__ic svg { width: 22px; height: 22px; }
.contact-item strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: 0.98rem; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: var(--slate-500); font-size: 0.95rem; word-break: break-word; }

/* Form */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: #e05656; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-alt); transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ocean-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 122, 224, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }
.form-note { font-size: 0.82rem; color: var(--slate-400); margin-top: 4px; }
.form-status { display: none; margin-top: 14px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.92rem; }
.form-status.show { display: block; }
.form-status.success { background: #e7f7ef; color: #1a7a4d; border: 1px solid #b6e4cc; }
.form-status.error { background: #fdeaea; color: #b23b3b; border: 1px solid #f3c6c6; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 13px 20px 13px 15px; border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 16px 38px rgba(37, 211, 102, 0.55); }
.wa-float svg { width: 24px; height: 24px; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 15px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #a7bcd6; padding: clamp(56px, 7vw, 84px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 48px); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { margin: 16px 0 20px; font-size: 0.94rem; color: #8ea6c4; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: #cfe0f2;
  display: grid; place-items: center; transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--ocean-600); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { color: #fff; font-size: 0.98rem; font-family: var(--font-head); margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #a7bcd6; font-size: 0.93rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--azure-300); flex: none; margin-top: 2px; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: #7f97b6;
}
.footer-bottom a { color: #a7bcd6; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--grad-deep);
  color: #eaf2fb;
  padding: clamp(60px, 9vw, 110px) 0 clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero__world { position: absolute; inset: 0; opacity: 0.4; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: #c3d5ea; max-width: 620px; margin-inline: auto; font-size: 1.1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: #8ba7c8; margin-bottom: 20px; }
.breadcrumb a { color: #9fc3e8; }

/* ---------- Wave divider ---------- */
.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; height: auto; display: block; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

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

/* animated dash flow for routes */
@keyframes dashflow { to { stroke-dashoffset: -60; } }
.route-flow { stroke-dasharray: 6 8; animation: dashflow 2.4s linear infinite; }
