/* ============================================================
   BIMASENA ADVISORY — MAIN STYLESHEET
   Design System: Colors, Typography, Layout, Components
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Brand Colors */
  --color-navy:       #1B3A5C;
  --color-navy-dark:  #122844;
  --color-navy-light: #2A5080;
  --color-gold:       #C9972B;
  --color-gold-light: #E0B04A;
  --color-gold-pale:  #FBF3E2;

  /* Neutrals */
  --color-bg:         #EEF2F8;  /* slightly more saturated for visible contrast against white */
  --color-cream:      #FBF6EA;  /* gold-pale tint for accent sections */
  --color-white:      #FFFFFF;
  --color-text:       #222222;
  --color-text-muted: #666666;
  --color-border:     #E0E6EE;
  --color-card-bg:    #FFFFFF;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1140px;
  --container-pad: 1.5rem;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(27,58,92,0.08);
  --shadow-md:  0 4px 16px rgba(27,58,92,0.10);
  --shadow-lg:  0 8px 32px rgba(27,58,92,0.14);

  /* Transitions */
  --transition: 0.22s ease;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy);
}

h1 { font-size: clamp(2rem, 5vw, var(--text-5xl)); }
h2 { font-size: clamp(1.5rem, 3.5vw, var(--text-4xl)); }
h3 { font-size: clamp(1.2rem, 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

.text-gold   { color: var(--color-gold); }
.text-navy   { color: var(--color-navy); }
.text-muted  { color: var(--color-text-muted); }
.text-white  { color: var(--color-white); }
.text-center { text-align: center; }

/* ── 4. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--space-20);
}

.section--gray {
  background: var(--color-bg);
}

.section--white {
  background: var(--color-white);
}

.section--cream {
  background: var(--color-cream);
}

.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

/* Subtle hairline divider between adjacent same-tone sections (defensive) */
.section + .section { position: relative; }

.section--navy h2,
.section--navy h3 {
  color: var(--color-white);
}

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.flex       { display: flex; }
.flex-col   { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4      { gap: var(--space-4); }
.gap-6      { gap: var(--space-6); }

/* ── 5. SECTION HEADER ────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
}

/* ── 6. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(201,151,43,0.35);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,151,43,0.4);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── 7. NAV ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: var(--space-6);
}

/* Centered nav-links: auto margins push it equally between logo (left) and CTA (right) */
.nav-links {
  margin-inline: auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--color-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-navy);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  min-width: 320px;
  width: max-content;
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  background: var(--color-gold-pale);
  color: var(--color-navy);
}

.nav-dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--color-gold-pale);
  color: var(--color-gold);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-icon svg {
  width: 18px;
  height: 18px;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
  background: var(--color-gold);
  color: var(--color-white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  /* On mobile, nav-links + nav-cta are hidden so this auto-margin pushes the burger to the right edge */
  margin-left: auto;
}

/* Mobile slide-out menu — hidden by default at all viewports.
   The mobile media query below promotes it to a flex container when .open. */
.nav-mobile-menu { display: none; }

.nav-link-mobile {
  display: flex !important;
  align-items: center;
  gap: var(--space-3);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── 8. HERO ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding-block: var(--space-24);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201,151,43,0.2);
  border: 1px solid rgba(201,151,43,0.4);
  color: var(--color-gold-light);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.hero h1 span { color: var(--color-gold-light); }

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-8);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-10);
}

.hero-stats {
  display: flex;
  gap: var(--space-8);
}

.hero-stat-value {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* Hero card placeholder */
.hero-visual {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  backdrop-filter: blur(8px);
}

/* ── 9. CARDS ─────────────────────────────────────────────── */
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-gold);
  stroke: var(--color-gold);
}

.card h3 { margin-bottom: var(--space-3); }

.card p { color: var(--color-text-muted); font-size: var(--text-sm); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  margin-top: var(--space-5);
  transition: gap var(--transition);
}

.card-link:hover { gap: var(--space-3); color: var(--color-gold); }

/* ── 10. SERVICE CARDS ────────────────────────────────────── */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card-header {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  padding: var(--space-8);
  color: var(--color-white);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.service-card-icon svg { width: 24px; height: 24px; stroke: #fff; }

.service-card-header h3 { color: var(--color-white); margin-bottom: var(--space-2); }
.service-card-header p  { color: rgba(255,255,255,0.75); font-size: var(--text-sm); margin: 0; }

.service-card-body {
  padding: var(--space-8);
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.service-feature::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--color-gold-pale);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9972B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ── 11. TRUST PILLARS ────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  text-align: center;
}

.trust-item {
  padding: var(--space-6);
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: var(--color-gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.trust-icon svg { width: 26px; height: 26px; stroke: var(--color-gold); }

.trust-item h4 { margin-bottom: var(--space-2); font-size: var(--text-lg); }
.trust-item p  { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }

/* ── 12. TESTIMONIALS ─────────────────────────────────────── */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  position: relative;
  /* Flex column: stars top, quote grows, author pinned to bottom.
     align-self: stretch (inherited from grid/flex parent) makes all cards in a row equal height. */
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 100%;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.18;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  font-style: italic;
  flex: 1; /* push the author block to the bottom */
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: var(--text-sm); }
.testimonial-role { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ── 13. BLOG CARDS ───────────────────────────────────────── */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  object-fit: cover;
}

.blog-card-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: var(--space-6);
}

.blog-category {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.blog-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ── 14. CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10);
  text-align: center;
  color: var(--color-white);
}

.cta-banner h2 { color: var(--color-white); margin-bottom: var(--space-4); }
.cta-banner p  { color: rgba(255,255,255,0.8); font-size: var(--text-lg); margin-bottom: var(--space-8); }

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ── 15. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-16) var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-8);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-brand-name span { color: var(--color-gold); }

.footer-brand-desc {
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social-link:hover { background: var(--color-gold); }
.footer-social-link svg   { width: 16px; height: 16px; stroke: #fff; }

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-link:hover { color: var(--color-gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-3);
}

.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; stroke: var(--color-gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ── 16. FLOATING WHATSAPP BUTTON ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── 17. PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  padding-block: var(--space-16);
  color: var(--color-white);
  text-align: center;
}

.page-hero h1 { color: var(--color-white); margin-bottom: var(--space-4); }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: var(--text-lg); max-width: 560px; margin-inline: auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-4);
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--color-gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── 18. TEAM CARDS ───────────────────────────────────────── */
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-lg); }

.team-photo {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  object-fit: cover;
}

.team-photo-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.2);
}

.team-card-body { padding: var(--space-6); }
.team-name      { font-size: var(--text-lg); margin-bottom: var(--space-1); }
.team-role      { font-size: var(--text-sm); color: var(--color-gold); font-weight: 600; margin-bottom: var(--space-3); }
.team-bio       { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ── 19. FAQ ACCORDION ────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-navy);
  gap: var(--space-4);
  user-select: none;
}

.faq-question:hover { color: var(--color-gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq-icon svg { width: 14px; height: 14px; stroke: var(--color-gold); }

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-gold);
}

.faq-item.open .faq-icon svg { stroke: #fff; }

.faq-answer {
  padding: 0 var(--space-6);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: var(--space-5);
}

/* ── 20. CONTACT FORM ─────────────────────────────────────── */
.form-group { margin-bottom: var(--space-5); }

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(27,58,92,0.1);
}

textarea { resize: vertical; min-height: 140px; }

.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.form-success {
  background: #E6F9F0;
  border: 1px solid #A8E6C8;
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  color: #1A7A45;
  display: none;
}

/* ── 21. UTILITY CLASSES ──────────────────────────────────── */
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: var(--space-4); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mt-8  { margin-top: var(--space-8); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 22. LOGO TICKER (auto-scroll) ───────────────────────── */
.logo-ticker {
  overflow: hidden;
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.logo-ticker-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.logo-ticker-track {
  display: flex;
  gap: var(--space-10);
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.logo-ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 40px;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}

.logo-ticker-item:hover { opacity: 1; filter: grayscale(0); }

.logo-ticker-item img { height: 32px; width: auto; object-fit: contain; }

.logo-ticker-item span {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-muted);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

/* ── 23. CLIENT LOGOS GRID ────────────────────────────────── */
.client-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: center;
  align-items: center;
  margin-top: var(--space-8);
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  opacity: 0.6;
  filter: grayscale(1);
  transition: all var(--transition);
  min-width: 120px;
}

.client-logo-item:hover { opacity: 1; filter: grayscale(0); box-shadow: var(--shadow-md); }

.client-logo-item img { height: 28px; width: auto; object-fit: contain; }

.client-logo-item span {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ── 24. CAREERS / KARIR SECTION ──────────────────────────── */
.careers-section {
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding-block: var(--space-20);
}

.careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.careers-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.careers-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
}

.careers-badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
}

.careers-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-badge-icon svg { width: 20px; height: 20px; stroke: var(--color-gold); }

.careers-badge-title  { font-weight: 700; font-size: var(--text-sm); color: var(--color-navy); }
.careers-badge-sub    { font-size: var(--text-xs); color: var(--color-text-muted); }

.careers-label { color: var(--color-gold); }

.careers-content h2 { color: var(--color-white); margin-bottom: var(--space-5); }

.careers-content p  { color: rgba(255,255,255,0.75); margin-bottom: var(--space-8); }

.careers-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.careers-perk {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.careers-perk-name { font-weight: 700; color: var(--color-white); }
.careers-perk-desc { font-size: var(--text-sm); color: rgba(255,255,255,0.6); }

/* ── 25. STATS ROW ────────────────────────────────────────── */
.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-1);
  background: var(--color-navy);
  padding-block: var(--space-10);
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: var(--space-6);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}

/* ── 26. PROCESS STEPS ────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  counter-reset: steps;
}

.process-step {
  position: relative;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.process-step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-gold);
  opacity: 0.25;
  margin-bottom: var(--space-4);
}

.process-step h4 { margin-bottom: var(--space-3); }
.process-step p  { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }

/* ── 27. BLOG: read time + category badge ─────────────────── */
.blog-card-image-wrap {
  position: relative;
}

.blog-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--color-gold);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.blog-read-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-read-time svg { width: 13px; height: 13px; stroke: var(--color-text-muted); }

/* ── 28. MOBILE RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --container-pad: 1rem; }

  .section { padding-block: var(--space-12); }

  .nav-links,
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .nav-mobile-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-4) var(--container-pad);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: var(--space-4);
  }

  .nav-mobile-menu.open { display: flex; }

  .hero { padding-block: var(--space-16); }
  .hero-stats { flex-wrap: wrap; gap: var(--space-6); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .cta-banner { padding: var(--space-8) var(--space-6); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
}

/* ── 29. LOGO IMAGE (header + footer) ─────────────────────── */
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-brand-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: var(--space-4);
}

@media (max-width: 640px) {
  .nav-logo img { height: 38px; }
  .footer-brand-logo { height: 48px; }
}

/* ── 30. SERVICE CARD: consistent header + bottom-aligned button ── */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-header {
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.service-card-header h3 {
  font-size: var(--text-lg);
  line-height: 1.3;
}

.service-card-header p {
  flex: 1;
  /* Cap tagline at 2 lines so headers stay aligned */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.service-card-body .btn {
  margin-top: auto;
}

.grid > .service-card { height: 100%; }
.always-carousel > .service-card { height: auto; }

/* ── 31. CAROUSEL (mobile-only + always-on variants) ─────── */

/* Shared base — applied whenever carousel becomes active */
.mobile-carousel,
.always-carousel {
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.mobile-carousel::-webkit-scrollbar,
.always-carousel::-webkit-scrollbar { display: none; }

.carousel-dots { display: none; }

/* ── ALWAYS-CAROUSEL — active at every viewport (services, why-bimasena, etc.) ── */
.always-carousel {
  display: flex !important;
  align-items: stretch;
  grid-template-columns: none !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  gap: var(--space-6);
  scroll-behavior: smooth;
  /* padding-top makes room for cards that have a badge sticking above the top edge
     (e.g. the "Most Popular" pill on the middle package card at top:-14px). */
  padding-top: 18px;
  padding-bottom: var(--space-4);
}

.always-carousel > * {
  flex: 0 0 calc(33.333% - var(--space-4));
  scroll-snap-align: start;
  min-width: 0;
  /* Each item stretches to the carousel's tallest sibling — keeps card heights aligned */
  height: auto;
  align-self: stretch;
}

@media (max-width: 900px) {
  .always-carousel > * {
    flex: 0 0 calc(50% - var(--space-3));
  }
}

@media (max-width: 640px) {
  .always-carousel {
    margin-inline: calc(-1 * var(--container-pad));
    padding-inline: var(--container-pad);
    gap: var(--space-4);
  }
  .always-carousel > * {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }
  .always-carousel.trust-grid > * {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
  }
}

/* On desktop the trust-grid items are bare — give them a subtle card to sit nicely in the carousel */
@media (min-width: 641px) {
  .always-carousel.trust-grid > * {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-5);
    transition: box-shadow var(--transition), transform var(--transition);
  }
  .always-carousel.trust-grid > *:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
}

/* Dots — visible inside an always-carousel wrapper at every viewport */
.carousel-wrapper > .carousel-dots {
  display: flex;
}

/* ── MOBILE-CAROUSEL — only active <=640px (team, testimonials, blog, process) ── */
@media (max-width: 640px) {
  .mobile-carousel {
    display: flex !important;
    align-items: stretch;
    grid-template-columns: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: var(--space-4);
    margin-inline: calc(-1 * var(--container-pad));
    padding-inline: var(--container-pad);
    padding-bottom: var(--space-4);
    scroll-behavior: smooth;
  }

  .mobile-carousel > * {
    flex: 0 0 88%;
    scroll-snap-align: center;
    min-width: 0;
    height: auto;
    align-self: stretch;
  }

  .mobile-carousel.trust-grid > * {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
  }

  .mobile-carousel + .carousel-dots {
    display: flex;
  }
}

/* Dot styles — shared. Larger and higher-contrast so the carousel-ness is obvious. */
.carousel-dots {
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-6);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(27, 58, 92, 0.22);  /* navy at low opacity — visible on white */
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(27, 58, 92, 0.45);
}

.carousel-dot.active {
  background: var(--color-gold);
  width: 28px;
  border-radius: 5px;
}

/* ── 32. CAROUSEL ARROWS (always-carousel only, hidden on small touch devices) ── */
.carousel-wrapper {
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  /* Navy by default → high contrast on light section backgrounds */
  background: var(--color-navy);
  border: none;
  box-shadow: 0 6px 20px rgba(27, 58, 92, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: var(--color-white);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.carousel-arrow:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(201, 151, 43, 0.4);
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow.prev { left: -24px; }
.carousel-arrow.next { right: -24px; }

.carousel-arrow[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* On narrower desktop widths (no room for arrows outside the carousel),
   slide them inside slightly so they overlap the first/last cards */
@media (max-width: 1100px) and (min-width: 641px) {
  .carousel-arrow.prev { left: 8px; }
  .carousel-arrow.next { right: 8px; }
}

@media (max-width: 640px) {
  .carousel-arrow { display: none; }
}

/* ── 33. HERO VISUAL — logo + Doctor Business method card + badges ── */
.hero-visual {
  /* Override the generic glassy box from earlier — let the new content sit on the navy bg */
  background: transparent;
  border: none;
  padding: 0;
  backdrop-filter: none;
}

.hero-logo-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.hero-logo-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 151, 43, 0.22) 0%, rgba(201, 151, 43, 0) 65%);
  filter: blur(16px);
  pointer-events: none;
  animation: hero-glow-pulse 5s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}

.hero-logo-img {
  position: relative;
  height: 260px;
  width: auto;
  z-index: 1;
  animation: hero-logo-float 7s ease-in-out infinite;
}

@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-method-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 151, 43, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  backdrop-filter: blur(8px);
  margin-bottom: var(--space-5);
}

.hero-method-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-3);
  text-align: center;
}

.hero-method-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero-method-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 70px;
}

.hero-method-num {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.hero-method-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 2px;
}

.hero-method-arrow {
  color: rgba(201, 151, 43, 0.6);
  font-size: var(--text-lg);
  font-weight: 700;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.hero-badge--gold {
  background: rgba(201, 151, 43, 0.18);
  border-color: rgba(201, 151, 43, 0.45);
  color: var(--color-gold-light);
}

@media (max-width: 900px) {
  .hero-logo-img  { height: 200px; }
  .hero-logo-glow { width: 240px; height: 240px; }
  .hero-method-arrow { display: none; }
}

@media (max-width: 640px) {
  .hero-visual { display: block; }
  .hero-logo-img  { height: 160px; }
  .hero-logo-glow { width: 200px; height: 200px; }
  .hero-method-card { padding: var(--space-4); }
}

/* ── 34. POLISH — service card hover, section spacing, dropdown ── */
.service-card {
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(27, 58, 92, 0.18);
}

.service-card:hover .service-card-header {
  filter: brightness(1.06);
}

.service-card-header {
  position: relative;
  overflow: hidden;
}

/* Subtle gold underline accent on the card header */
.service-card-header::after {
  content: '';
  position: absolute;
  left: var(--space-8);
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  opacity: 0.85;
}

/* Trust item polish on desktop carousel */
.always-carousel.trust-grid .trust-icon {
  transition: transform var(--transition);
}
.always-carousel.trust-grid > *:hover .trust-icon {
  transform: scale(1.08);
}

/* Section header polish — subtle gold rule under the eyebrow label */
.section-label {
  position: relative;
  padding-bottom: var(--space-2);
}
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
  margin: 6px auto 0;
  border-radius: 1px;
}

/* Nav dropdown — slight lift + gold edge */
.nav-dropdown-menu {
  border-top: 3px solid var(--color-gold);
}

/* Process steps — connect them visually with a soft line on desktop */
@media (min-width: 901px) {
  .process-steps {
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: calc(var(--space-8) + 18px);
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--color-gold-pale) 0 12px, transparent 12px 24px);
    z-index: 0;
  }
  .process-step { position: relative; z-index: 1; }
}

/* Stats row — soft inner highlight */
.stats-row {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 50%, var(--color-navy-light) 100%);
}

.stat-number {
  background: linear-gradient(180deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Smooth scroll-snap on every always-carousel — make scrollbar gutter invisible on touch devices */
.always-carousel { scroll-padding-inline: var(--space-2); }
