/* ==========================================================================
   Arrow Business Solutions — Stylesheet
   Fonts: Montserrat (headings/buttons) · Poppins (body/forms)
   ========================================================================== */

:root {
  /* Brand colors */
  --navy: #0D2C5A;
  --navy-dark: #0A2148;
  --navy-deep: #071733;
  --gold: #D4A017;
  --gold-dark: #B8890F;
  --gold-light: #E8B838;
  --white: #FFFFFF;
  --light-bg: #F8FAFC;
  --light-grey: #E5E7EB;
  --dark-text: #1F2937;
  --muted: #64748B;
  --muted-light: #94A3B8;

  /* Typography */
  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13, 44, 90, 0.06);
  --shadow: 0 8px 30px rgba(13, 44, 90, 0.08);
  --shadow-lg: 0 20px 50px rgba(13, 44, 90, 0.12);
  --shadow-gold: 0 10px 25px rgba(212, 160, 23, 0.28);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  /* Size-specific tracking: headings tighten slightly; body stays at 0 */
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
  text-wrap: balance;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

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

/* Icon helper */
.icon { width: 24px; height: 24px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-fill { fill: currentColor; stroke: none; }

/* Accessibility: visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 3px; }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .float-whatsapp { animation: none !important; }
}

/* Frostier / solid materials when translucency is reduced */
@media (prefers-reduced-transparency: reduce) {
  .header, .header.scrolled { background: var(--white); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .struct-tag { backdrop-filter: none; background: rgba(255,255,255,0.28); }
}

/* Near-solid backgrounds and defined borders in high-contrast mode */
@media (prefers-contrast: more) {
  .header { background: var(--white); border-bottom: 1px solid var(--navy); }
  .btn-outline { border-color: var(--navy); }
  .svc-card, .struct-card, .ind-card, .mv-card, .guide-card, .testi-card { border-color: var(--muted); }
  .hero-text, .section-sub, .svc-list li, .struct-body p { color: var(--dark-text); }
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                     */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn .icon { width: 18px; height: 18px; }

.btn-gold { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212, 160, 23, 0.38); }

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

.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--light-grey); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(212,160,23,0.05); }

.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
/* Instant, physical press feedback (respond on press, not release) */
.btn:active { transform: scale(0.97); transition-duration: 0.09s; }

/* -------------------------------------------------------------------------- */
/* Section helpers                                                             */
/* -------------------------------------------------------------------------- */
.section { padding: 84px 0; }
.section-alt { background: var(--light-bg); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; margin-bottom: 16px; }
.section-title .accent { color: var(--gold); }
.section-sub { color: var(--muted); font-size: 1.02rem; }
.title-rule { width: 64px; height: 3px; background: var(--gold); border-radius: 3px; margin: 18px auto 0; }
.section-head.left .title-rule { margin-left: 0; }

/* -------------------------------------------------------------------------- */
/* Top bar                                                                     */
/* -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-family: var(--font-body);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 26px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; transition: var(--transition); }
.topbar-item .icon { width: 15px; height: 15px; color: var(--gold); }
.topbar a.topbar-item:hover { color: var(--white); }
.topbar-lang { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }

/* -------------------------------------------------------------------------- */
/* Header / navigation                                                         */
/* -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Apple-style translucent chrome: content scrolls under a blurred material */
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(13, 44, 90, 0.06);
  transition: var(--transition);
}
.header.scrolled { background: rgba(255, 255, 255, 0.85); box-shadow: var(--shadow); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; max-width: 1320px; gap: 16px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 50px; width: auto; display: block; }
.logo-img-footer { height: 50px; width: auto; display: block; }
.logo-mark { width: 46px; height: 46px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.12em; color: var(--navy); }
.logo-sub { font-family: var(--font-head); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.22em; color: var(--muted); margin-top: 3px; }
.logo-tag { font-family: var(--font-body); font-weight: 500; font-size: 0.55rem; letter-spacing: 0.08em; color: var(--gold-dark); text-transform: uppercase; margin-top: 3px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav-item { position: relative; flex-shrink: 0; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-text);
  padding: 10px 11px;
  white-space: nowrap;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold-dark); }
.nav-link .chev { width: 14px; height: 14px; transition: var(--transition); }
.nav-item:hover .chev { transform: rotate(180deg); }
.nav-link.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--gold); border-radius: 2px;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-grey);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--dark-text);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--light-bg); color: var(--navy); }
.dropdown a .icon { width: 20px; height: 20px; color: var(--gold-dark); }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-cta .btn { white-space: nowrap; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--navy); }
.nav-toggle .icon { width: 28px; height: 28px; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--white); padding: 64px 0 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-content { padding-bottom: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,0.12); color: var(--gold-dark);
  font-family: var(--font-head); font-weight: 600; font-size: 0.78rem;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 18px; }
.hero h1 .accent { color: var(--gold); }
.hero-lead { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--navy); margin-bottom: 14px; }
.hero-text { color: var(--muted); font-size: 1.02rem; max-width: 520px; margin-bottom: 28px; }

.hero-features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 32px; }
.hero-feature { display: flex; align-items: center; gap: 9px; min-width: 0; }
.hero-feature .hf-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,44,90,0.06); color: var(--navy);
}
.hero-feature .hf-icon .icon { width: 21px; height: 21px; }
.hf-title { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.hf-sub { font-size: 0.76rem; color: var(--muted); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero-rating { display: flex; align-items: center; gap: 12px; }
.google-badge { width: 34px; height: 34px; flex-shrink: 0; }
.rating-stars { display: flex; gap: 2px; color: var(--gold); }
.rating-stars .icon { width: 16px; height: 16px; }
.rating-text { font-size: 0.82rem; color: var(--muted); }
.rating-text strong { color: var(--navy); font-family: var(--font-head); }

/* Hero visual */
.hero-visual { position: relative; align-self: stretch; display: flex; align-items: flex-end; justify-content: center; }
.hero-scene {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 4.4;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13,44,90,0.10) 0%, rgba(13,44,90,0.32) 100%), url('assets/images/hero.jpg') center 30% / cover no-repeat;
  box-shadow: var(--shadow-lg);
}
.hero-scene::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 12%, rgba(255,255,255,0.14), transparent 50%);
}
.hero-float {
  position: absolute; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; z-index: 3;
}
.hero-float .hf-ic { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(212,160,23,0.14); color: var(--gold-dark); }
.hero-float .hf-ic .icon { width: 22px; height: 22px; }
.hero-float .num { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--navy); line-height: 1; }
.hero-float .lbl { font-size: 0.72rem; color: var(--muted); }
.hero-float.f1 { top: 22%; left: -18px; }
.hero-float.f2 { bottom: 12%; right: -12px; }

/* -------------------------------------------------------------------------- */
/* Services strip                                                              */
/* -------------------------------------------------------------------------- */
.services-strip {
  position: relative;
  margin-top: -24px;
  z-index: 5;
}
.strip-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-grey);
  padding: 26px 18px;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 6px;
}
.strip-item {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 12px 6px; border-radius: var(--radius-sm); text-align: center;
  transition: var(--transition); position: relative;
}
.strip-item:not(:last-child)::after {
  content: ''; position: absolute; right: -3px; top: 20%; bottom: 20%; width: 1px; background: var(--light-grey);
}
.strip-item:hover { background: var(--light-bg); transform: translateY(-3px); }
.strip-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(13,44,90,0.08), rgba(212,160,23,0.10));
  color: var(--navy); transition: var(--transition);
}
.strip-icon .icon { width: 24px; height: 24px; }
.strip-item:hover .strip-icon { background: var(--navy); color: var(--gold); }
.strip-label { font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; color: var(--dark-text); line-height: 1.25; }

/* -------------------------------------------------------------------------- */
/* About                                                                       */
/* -------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual { position: relative; }
.about-img {
  border-radius: var(--radius-lg); aspect-ratio: 4/3.4; overflow: hidden;
  background: linear-gradient(140deg, rgba(13,44,90,0.34) 0%, rgba(13,44,90,0.08) 60%), url('assets/images/about.jpg') center/cover no-repeat;
  position: relative; box-shadow: var(--shadow-lg);
  display: flex; align-items: flex-end;
}
.about-badge {
  position: absolute; right: -18px; bottom: 30px;
  background: var(--gold); color: var(--navy);
  padding: 20px 26px; border-radius: var(--radius);
  box-shadow: var(--shadow-gold); text-align: center;
}
.about-badge .num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; line-height: 1; }
.about-badge .lbl { font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.about-content p { color: var(--muted); margin-bottom: 18px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.mv-card { background: var(--light-bg); border: 1px solid var(--light-grey); border-radius: var(--radius); padding: 22px; }
.mv-card .mv-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.mv-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.mv-card p { font-size: 0.9rem; margin-bottom: 0; }

/* -------------------------------------------------------------------------- */
/* Structure + Calculator                                                      */
/* -------------------------------------------------------------------------- */
.structure-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 44px; align-items: start; }
.structure-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.struct-card {
  border: 1px solid var(--light-grey); border-radius: var(--radius);
  overflow: hidden; background: var(--white); transition: var(--transition);
}
.struct-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.struct-card.wide { grid-column: 1 / -1; }
.struct-media {
  height: 140px; position: relative; display: flex; align-items: flex-end; padding: 14px;
  background: var(--navy); background-size: cover; background-position: center;
}
.struct-media.m1 { background: linear-gradient(to top, rgba(13,44,90,0.80), rgba(13,44,90,0.12)), url('assets/images/struct-mainland.jpg') center/cover no-repeat; }
.struct-media.m2 { background: linear-gradient(to top, rgba(13,44,90,0.80), rgba(13,44,90,0.12)), url('assets/images/struct-freezone.jpg') center/cover no-repeat; }
.struct-media.m3 { background: linear-gradient(to top, rgba(13,44,90,0.80), rgba(13,44,90,0.12)), url('assets/images/struct-offshore.jpg') center/cover no-repeat; }
.struct-tag { position: relative; z-index: 2; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.struct-body { padding: 20px; }
.struct-body h4 { font-size: 1.08rem; margin-bottom: 8px; }
.struct-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; }
.struct-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--gold-dark); transition: var(--transition); }
.struct-link .icon { width: 16px; height: 16px; transition: var(--transition); }
.struct-link:hover .icon { transform: translateX(4px); }

/* Calculator */
.calculator {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg); padding: 34px; color: var(--white);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.calculator::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(212,160,23,0.25), transparent 70%); }
.calc-head { text-align: center; margin-bottom: 24px; position: relative; }
.calc-head h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.calc-head p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.calc-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.calc-field { display: flex; flex-direction: column; gap: 7px; }
.calc-field.full { grid-column: 1 / -1; }
.calc-field label { font-family: var(--font-head); font-weight: 500; font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.calc-field select, .calc-field input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm); padding: 12px 14px; color: var(--white);
  font-size: 0.88rem; transition: var(--transition); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4A017' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.calc-field input { background-image: none; }
.calc-field select:focus, .calc-field input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.14); }
.calc-field select option { color: var(--dark-text); }
.calc-check { grid-column: 1/-1; display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.9); cursor: pointer; }
.calc-check input { width: 18px; height: 18px; accent-color: var(--gold); }
.calc-result {
  grid-column: 1/-1; background: rgba(212,160,23,0.14); border: 1px dashed rgba(212,160,23,0.5);
  border-radius: var(--radius-sm); padding: 16px; text-align: center; display: none;
}
.calc-result.show { display: block; }
.calc-result .amount { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--gold-light); }
.calc-result .rlabel { font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.calc-note { grid-column: 1/-1; text-align: center; font-size: 0.74rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.calc-help { grid-column:1/-1; text-align:center; font-size: 0.85rem; color: rgba(255,255,255,0.85); display:flex; align-items:center; justify-content:center; gap:8px; }
.calc-help .icon { width: 18px; height:18px; color: #25D366; }

/* -------------------------------------------------------------------------- */
/* Stats                                                                       */
/* -------------------------------------------------------------------------- */
.stats { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.stat { display: flex; align-items: center; gap: 16px; justify-content: center; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.12); }
.stat-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(212,160,23,0.16); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon .icon { width: 26px; height: 26px; }
.stat-num { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* -------------------------------------------------------------------------- */
/* Process                                                                     */
/* -------------------------------------------------------------------------- */
.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; position: relative; }
.process-track::before {
  content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--light-grey) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--white); border: 2px solid var(--light-grey);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
  position: relative; transition: var(--transition);
}
.step-circle .icon { width: 32px; height: 32px; }
.step:hover .step-circle { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  position: absolute; top: -8px; right: -6px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--navy); font-family: var(--font-head); font-weight: 700;
  font-size: 0.8rem; display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: 0.98rem; margin-bottom: 6px; }
.step p { font-size: 0.8rem; color: var(--muted); }

/* -------------------------------------------------------------------------- */
/* Core services grid                                                          */
/* -------------------------------------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card {
  background: var(--white); border: 1px solid var(--light-grey);
  border-radius: var(--radius); padding: 26px 22px; transition: var(--transition);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.svc-card .svc-list { flex: 1; }
.svc-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, rgba(13,44,90,0.08), rgba(212,160,23,0.12)); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: var(--transition); }
.svc-icon .icon { width: 28px; height: 28px; }
.svc-card:hover .svc-icon { background: var(--navy); color: var(--gold); }
.svc-card h4 { font-size: 1.08rem; margin-bottom: 14px; }
.svc-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.84rem; color: var(--muted); padding: 5px 0; }
.svc-list li .icon { width: 15px; height: 15px; color: var(--gold); margin-top: 4px; }
.svc-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: 0.83rem; color: var(--navy); transition: var(--transition); }
.svc-more .icon { width: 15px; height: 15px; color: var(--gold); transition: var(--transition); }
.svc-more:hover { color: var(--gold-dark); }
.svc-more:hover .icon { transform: translateX(4px); }
.svc-cta { text-align: center; margin-top: 40px; }

/* -------------------------------------------------------------------------- */
/* Why choose                                                                  */
/* -------------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { margin-top: 26px; display: grid; gap: 14px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-check { width: 30px; height: 30px; border-radius: 50%; background: rgba(212,160,23,0.14); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-check .icon { width: 17px; height: 17px; }
.why-item h4 { font-size: 0.98rem; margin-bottom: 2px; }
.why-item p { font-size: 0.85rem; color: var(--muted); }
.why-visual { position: relative; }
.why-media {
  border-radius: var(--radius-lg); aspect-ratio: 4/4; overflow: hidden; position: relative;
  background: linear-gradient(to top, rgba(7,23,51,0.90) 0%, rgba(7,23,51,0.12) 55%), url('assets/images/why.jpg') center/cover no-repeat;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-lg);
}
.why-caption { position: absolute; left: 22px; right: 22px; bottom: 22px; color: var(--white); z-index: 2; }
.why-caption h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.why-caption p { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.why-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 68px; height: 68px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 3; transition: var(--transition); }
.why-play:not(:disabled):hover { transform: translate(-50%,-50%) scale(1.08); background: var(--white); }
.why-play:disabled { cursor: not-allowed; opacity: 0.55; }
.why-play .icon { width: 28px; height: 28px; margin-left: 3px; }

/* Consultation form */
.consult-form { background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.consult-form h3 { font-size: 1.3rem; margin-bottom: 6px; }
.consult-form p.sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 22px; }
.form-field { margin-bottom: 14px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--light-grey);
  border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--dark-text);
  background: var(--light-bg); transition: var(--transition);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(212,160,23,0.12); }
.form-msg { display: none; margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm); background: rgba(34,197,94,0.12); color: #15803d; font-size: 0.86rem; text-align: center; }
.form-msg.show { display: block; }
.form-msg.error { background: rgba(220,38,38,0.10); color: #b91c1c; }
/* Honeypot field — visually removed, still present for bots */
.hp-field { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* -------------------------------------------------------------------------- */
/* Industries                                                                  */
/* -------------------------------------------------------------------------- */
.ind-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.ind-card {
  background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius);
  padding: 28px 16px; text-align: center; transition: var(--transition);
}
.ind-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; background: var(--navy); }
.ind-icon { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 14px; background: linear-gradient(135deg, rgba(13,44,90,0.07), rgba(212,160,23,0.12)); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.ind-icon .icon { width: 28px; height: 28px; }
.ind-card:hover .ind-icon { background: rgba(212,160,23,0.2); color: var(--gold); }
.ind-card span { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--dark-text); transition: var(--transition); }
.ind-card:hover span { color: var(--white); }

/* -------------------------------------------------------------------------- */
/* Company profile band                                                        */
/* -------------------------------------------------------------------------- */
.profile-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg); padding: 50px; display: grid;
  grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: center; position: relative; overflow: hidden;
}
.profile-band::after { content:''; position:absolute; bottom:-80px; left:-40px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(212,160,23,0.2), transparent 70%); }
.profile-band .eyebrow { color: var(--gold); }
.profile-band h2 { color: var(--white); font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 16px; }
.profile-band p { color: rgba(255,255,255,0.78); margin-bottom: 24px; max-width: 560px; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 14px; position: relative; z-index: 2; }
.profile-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 2; }
.pv-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 20px; }
.pv-card .icon { width: 28px; height: 28px; color: var(--gold); margin-bottom: 10px; }
.pv-card h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 5px; }
.pv-card p { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin: 0; }

/* -------------------------------------------------------------------------- */
/* Testimonials                                                                */
/* -------------------------------------------------------------------------- */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.testi-card { background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius); padding: 30px; transition: var(--transition); position: relative; }
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-quote { color: var(--gold); opacity: 0.35; }
.testi-quote .icon { width: 40px; height: 40px; }
.testi-stars { display: flex; gap: 3px; color: var(--gold); margin: 14px 0; }
.testi-stars .icon { width: 17px; height: 17px; }
.testi-text { font-size: 0.94rem; color: var(--dark-text); margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--gold)); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.testi-author .name { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.testi-author .role { font-size: 0.8rem; color: var(--muted); }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--light-grey); cursor: pointer; transition: var(--transition); }
.testi-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* -------------------------------------------------------------------------- */
/* Guides / blog                                                               */
/* -------------------------------------------------------------------------- */
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.guide-card { background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.guide-media { height: 190px; position: relative; display: flex; align-items: flex-start; padding: 14px; }
.guide-media.g1 { background: linear-gradient(160deg, rgba(13,44,90,0.40), rgba(13,44,90,0.10)), url('assets/images/guide-tax.jpg') center/cover no-repeat; }
.guide-media.g2 { background: linear-gradient(160deg, rgba(13,44,90,0.40), rgba(13,44,90,0.10)), url('assets/images/guide-setup.jpg') center/cover no-repeat; }
.guide-media.g3 { background: linear-gradient(160deg, rgba(13,44,90,0.40), rgba(13,44,90,0.10)), url('assets/images/guide-visa.jpg') center/cover no-repeat; }
.guide-cat { position: relative; z-index: 2; background: var(--gold); color: var(--navy); font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; padding: 5px 12px; border-radius: 100px; }
.guide-body { padding: 22px; }
.guide-date { font-size: 0.78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.guide-date .icon { width: 15px; height: 15px; color: var(--gold-dark); }
.guide-body h4 { font-size: 1.05rem; margin-bottom: 12px; line-height: 1.35; }
.guide-body h4 a { transition: var(--transition); }
.guide-body h4 a:hover { color: var(--gold-dark); }
.guide-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: 0.83rem; color: var(--gold-dark); }
.guide-link .icon { width: 15px; height: 15px; transition: var(--transition); }
.guide-link:hover .icon { transform: translateX(4px); }

/* -------------------------------------------------------------------------- */
/* Contact                                                                     */
/* -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 14px; }
.contact-info > p { color: var(--muted); margin-bottom: 30px; }
.contact-list { display: grid; gap: 18px; margin-bottom: 30px; }
.contact-line { display: flex; align-items: flex-start; gap: 16px; }
.contact-line .ci { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-line .ci .icon { width: 22px; height: 22px; }
.contact-line .cl { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.contact-line .cv { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1rem; }
.contact-line .cv a:hover { color: var(--gold-dark); }
.contact-socials { display: flex; gap: 12px; }
.contact-socials a { width: 44px; height: 44px; border-radius: 12px; background: var(--light-bg); border: 1px solid var(--light-grey); color: var(--navy); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.contact-socials a:hover { background: var(--navy); color: var(--gold); transform: translateY(-3px); }
.contact-form { background: var(--light-bg); border: 1px solid var(--light-grey); border-radius: var(--radius-lg); padding: 34px; }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* -------------------------------------------------------------------------- */
/* Footer                                                                      */
/* -------------------------------------------------------------------------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.footer .logo-name { color: var(--white); }
.footer .logo-sub { color: rgba(255,255,255,0.55); }
.footer-about { margin: 20px 0; font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-socials a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 0.9rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; }
.footer-contact li .icon { width: 18px; height: 18px; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; gap: 16px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }

/* -------------------------------------------------------------------------- */
/* Floating buttons                                                            */
/* -------------------------------------------------------------------------- */
.float-whatsapp {
  position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45); z-index: 90; transition: var(--transition);
  animation: pulse 2.4s infinite;
}
.float-whatsapp:hover { transform: scale(1.1); }
.float-whatsapp .icon { width: 30px; height: 30px; }
@keyframes pulse { 0% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4);} 70% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0);} }

.back-top {
  position: fixed; bottom: 26px; left: 26px; width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 90; opacity: 0; visibility: hidden; transform: translateY(12px); transition: var(--transition);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--navy-dark); }

/* -------------------------------------------------------------------------- */
/* Scroll reveal                                                               */
/* -------------------------------------------------------------------------- */
/* Critically-damped settle (no overshoot) — refined, not bouncy */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------------------- */
/* Mobile nav panel                                                            */
/* -------------------------------------------------------------------------- */
.mobile-nav { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.mobile-nav.open { visibility: visible; }
.mobile-overlay { position: absolute; inset: 0; background: rgba(7,23,51,0.5); opacity: 0; transition: var(--transition); }
.mobile-nav.open .mobile-overlay { opacity: 1; }
.mobile-panel {
  position: absolute; top: 0; right: 0; width: 320px; max-width: 85vw; height: 100%;
  background: var(--white); box-shadow: var(--shadow-lg); padding: 24px;
  transform: translateX(100%); transition: var(--transition); overflow-y: auto;
}
.mobile-nav.open .mobile-panel { transform: translateX(0); }
.mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--light-grey); }
.mobile-close { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.mobile-links a { display: block; padding: 14px 12px; font-family: var(--font-head); font-weight: 500; font-size: 1rem; color: var(--dark-text); border-radius: var(--radius-sm); transition: var(--transition); }
.mobile-links a:hover { background: var(--light-bg); color: var(--gold-dark); }
.mobile-panel .btn { margin-top: 18px; }
.mobile-contact { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--light-grey); display: grid; gap: 12px; }
.mobile-contact a { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.mobile-contact a .icon { width: 18px; height: 18px; color: var(--gold-dark); }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                  */
/* -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 1080px) {
  .strip-inner { grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .strip-item::after { display: none; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .stat { flex-direction: column; text-align: center; gap: 8px; }
  .stat + .stat { border-left: none; }
}

@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .hero { padding-top: 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-content { padding-bottom: 0; }
  /* Show the hero photo as a banner under the copy instead of hiding it */
  .hero-visual { margin-bottom: 30px; }
  .hero-scene { max-width: 100%; aspect-ratio: 16 / 11; }
  .hero-float { padding: 10px 14px; }
  .hero-float .num { font-size: 1rem; }
  .hero-float.f1 { top: 14px; left: 14px; }
  .hero-float.f2 { bottom: 14px; right: 14px; }
  .about-grid, .structure-grid, .why-grid, .contact-grid, .profile-band { grid-template-columns: 1fr; }
  .about-badge { right: 20px; }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 26px 12px; }
  .process-track::before { display: none; }
  .svc-grid, .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid, .testi-grid { grid-template-columns: 1fr; }
  .testi-grid .testi-card:nth-child(n+2) { display: none; }
  .testi-grid.slider .testi-card { display: block; }
  .profile-values { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .topbar-left .topbar-item:not(:first-child), .topbar-right .topbar-item { display: none; }
  .header .container { height: 68px; }
  .logo-img { height: 40px; }
  .section { padding: 52px 0; }
  /* Services strip becomes a swipeable row instead of a tall grid */
  .services-strip { margin-top: -18px; }
  .strip-inner { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; padding: 14px 12px; scrollbar-width: none; }
  .strip-inner::-webkit-scrollbar { display: none; }
  .strip-item { flex: 0 0 auto; min-width: 102px; scroll-snap-align: start; }
  .structure-cards, .calc-form, .form-row, .mv-grid { grid-template-columns: 1fr; }
  .stats { padding: 38px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 10px; }
  .stats-grid .stat:nth-child(5) { grid-column: 1 / -1; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .process-track .step:last-child { grid-column: 1 / -1; }
  .svc-grid, .ind-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-head { margin-bottom: 36px; }
  .hero-actions .btn { flex: 1; }
  .hero-rating { flex-wrap: wrap; }
  .calculator { padding: 24px 20px; }
  .contact-form { padding: 24px 18px; }
  .testi-card { padding: 24px 20px; }
  .profile-band { padding: 30px 22px; }
  .about-badge { padding: 14px 18px; }
  .about-badge .num { font-size: 1.5rem; }
  /* 16px inputs stop iOS Safari from auto-zooming into form fields */
  .form-field input, .form-field select, .form-field textarea,
  .calc-field select, .calc-field input { font-size: 1rem; }
  .float-whatsapp { width: 54px; height: 54px; right: 16px; bottom: calc(18px + env(safe-area-inset-bottom)); }
  .back-top { width: 42px; height: 42px; left: 16px; bottom: calc(18px + env(safe-area-inset-bottom)); }
}

/* ==========================================================================
   Inner pages (multi-page)
   ========================================================================== */
.page-hero { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(212,160,23,0.22), transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.02em; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 660px; font-size: 1.02rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; margin-bottom: 16px; color: rgba(255,255,255,0.7); font-family: var(--font-head); font-weight: 500; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold); } .breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.5; }

/* Service detail */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 46px; align-items: start; }
.detail-media { border-radius: var(--radius-lg); overflow: hidden; height: 300px; background-size: cover; background-position: center; margin-bottom: 30px; box-shadow: var(--shadow); position: relative; }
.detail-media::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(13,44,90,0.45), rgba(13,44,90,0.05)); }
.detail-main .lead { font-size: 1.12rem; color: var(--dark-text); margin-bottom: 20px; font-weight: 500; }
.detail-main p { color: var(--muted); margin-bottom: 16px; }
.detail-main h2 { font-size: 1.4rem; margin: 30px 0 14px; }
.detail-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 18px 0 6px; }
.detail-checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--dark-text); }
.detail-checklist li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.detail-checklist li .ci { width: 26px; height: 26px; border-radius: 50%; background: rgba(212,160,23,0.15); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.detail-checklist li .ci .icon { width: 15px; height: 15px; }
.detail-note { background: rgba(212,160,23,0.10); border-left: 3px solid var(--gold); border-radius: 8px; padding: 14px 18px; font-size: 0.9rem; color: var(--dark-text); margin: 22px 0; }

/* Sidebar */
.side-card { background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius); padding: 22px; margin-bottom: 22px; }
.side-card > h4 { font-size: 1.05rem; margin-bottom: 12px; }
.side-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 0.88rem; color: var(--dark-text); font-weight: 500; transition: var(--transition); }
.side-nav a:hover { background: var(--light-bg); color: var(--navy); }
.side-nav a.current { background: var(--light-bg); color: var(--navy); border-left: 3px solid var(--gold); font-weight: 600; }
.side-nav a .icon { width: 18px; height: 18px; color: var(--gold-dark); }
.side-cta { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-radius: var(--radius); padding: 26px; text-align: center; }
.side-cta h4 { color: #fff; font-size: 1.1rem; } .side-cta p { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin: 8px 0 16px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--navy-deep)); border-radius: var(--radius-lg); padding: 48px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::after { content:''; position:absolute; left:-60px; bottom:-80px; width:260px; height:260px; background: radial-gradient(circle, rgba(212,160,23,0.18), transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 10px; } .cta-band p { color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto 24px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Packages */
.pkg-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.pkg-card { grid-column: span 2; background: #fff; border: 1px solid var(--light-grey); border-radius: var(--radius-lg); padding: 32px 26px; position: relative; transition: var(--transition); display: flex; flex-direction: column; }
.pkg-card:nth-last-child(2) { grid-column: 2 / span 2; }
.pkg-card:last-child { grid-column: 4 / span 2; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-lg); }
.pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; padding: 5px 15px; border-radius: 100px; white-space: nowrap; }
.pkg-icon { width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(135deg, rgba(13,44,90,0.08), rgba(212,160,23,0.12)); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pkg-name { font-size: 1.25rem; margin-bottom: 8px; } .pkg-for { font-size: 0.88rem; color: var(--muted); min-height: 44px; }
.pkg-list { margin: 18px 0 22px; display: grid; gap: 10px; flex: 1; }
.pkg-list li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--muted); } .pkg-list li .icon { width: 16px; height: 16px; color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* Prose (legal / long text) */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.4rem; margin: 34px 0 12px; } .prose h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; line-height: 1.78; }
.prose ul { margin: 0 0 14px 22px; list-style: disc; } .prose a { color: var(--gold-dark); text-decoration: underline; }
.prose .updated { font-size: 0.85rem; color: var(--muted-light); margin-bottom: 26px; }

/* Contact map */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; border: 1px solid var(--light-grey); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 340px; }

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card, .pkg-card:nth-last-child(2), .pkg-card:last-child { grid-column: auto; }
  .detail-checklist { grid-template-columns: 1fr; }
  .cta-band, .page-hero { padding: 34px 0; }
  .cta-band { padding: 34px; }
}

/* Partner / authority logos strip */
.partners { padding-top: 64px; padding-bottom: 64px; }
.partners-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 34px 56px; }
.partners-strip img {
  height: auto; width: auto; max-height: 52px; max-width: 150px; object-fit: contain;
  filter: grayscale(1); opacity: 0.55; transition: filter var(--transition), opacity var(--transition);
}
.partners-strip img:hover { filter: grayscale(0); opacity: 1; }
.partners-note { text-align: center; font-size: 0.72rem; color: var(--muted-light); margin-top: 26px; }
@media (max-width: 640px) {
  .partners-strip { gap: 26px 36px; }
  .partners-strip img { max-height: 40px; max-width: 116px; }
}

/* -------------------------------------------------------------------------- */
/* Small phones                                                                */
/* -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero-badge { font-size: 0.7rem; padding: 6px 12px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 22px 20px; }
  .profile-values { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .page-hero { padding: 30px 0; }
  .detail-media { height: 200px; }
  .cta-band { padding: 30px 20px; }
  .cta-actions .btn { width: 100%; }
  .pkg-card { padding: 26px 20px; }
  .side-cta { padding: 22px 18px; }
  .map-embed, .map-embed iframe { min-height: 260px; }
}
