/* =============================================
   BELMA RENT — global.css
   Clean SaaS Design System
   Reusable across all pages
   Includes: Homepage + About Us styles
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  /* Brand Colors */
  --color-primary:        #0F2557;   /* Biru gelap */
  --color-primary-mid:   #1A3A8F;
  --color-primary-light: #2563EB;
  --color-accent:        #38BDF8;   /* Biru terang */
  --color-accent-hover:  #0EA5E9;

  /* Neutral */
  --color-white:    #FFFFFF;
  --color-bg:       #F8FAFC;
  --color-bg-alt:   #EEF2FF;
  --color-border:   #E2E8F0;
  --color-text:     #1E293B;
  --color-text-sub: #64748B;
  --color-text-muted: #94A3B8;

  /* WhatsApp */
  --color-wa:       #25D366;
  --color-wa-hover: #1EBE5C;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py:   80px;
  --container-px: 20px;
  --container-max: 1200px;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15,37,87,0.08), 0 1px 2px rgba(15,37,87,0.05);
  --shadow-md:  0 4px 16px rgba(15,37,87,0.10), 0 2px 6px rgba(15,37,87,0.06);
  --shadow-lg:  0 8px 32px rgba(15,37,87,0.14), 0 4px 12px rgba(15,37,87,0.08);
  --shadow-xl:  0 20px 60px rgba(15,37,87,0.18);

  /* Transitions */
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-text);
}

details { list-style: none; }
summary  { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ---------- Utilities ---------- */
.text-accent { color: var(--color-primary-light); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

/* Sizes */
.btn--sm  { font-size: 13px; padding: 9px 20px; }
.btn--md  { font-size: 15px; padding: 12px 28px; }
.btn--lg  { font-size: 16px; padding: 15px 34px; }
.btn--xl  { font-size: 17px; padding: 18px 42px; }
.btn--block { width: 100%; }

/* Variants */
.btn--primary {
  background: var(--color-primary-light);
  color: var(--color-white);
  border-color: var(--color-primary-light);
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn--primary:hover {
  background: var(--color-primary-mid);
  border-color: var(--color-primary-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.btn--primary:active { transform: translateY(0); }

.btn--whatsapp {
  background: var(--color-wa);
  color: var(--color-white);
  border-color: var(--color-wa);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn--whatsapp:hover {
  background: var(--color-wa-hover);
  border-color: var(--color-wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* ---------- Section Base ---------- */
.section {
  padding: var(--section-py) 0;
}
.section--alt {
  background: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  background: rgba(37,99,235,0.08);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section__desc {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 1.7;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1600&q=85');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 20, 60, 0.88) 0%,
    rgba(15, 37, 87, 0.78) 50%,
    rgba(10, 20, 50, 0.70) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown 0.7s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 68px);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 22px;
  animation: fadeInDown 0.8s ease 0.1s both;
}

.hero__title .text-accent {
  color: var(--color-accent);
}

.hero__sub {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 18px 36px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto;
  animation: scrollDown 1.5s ease-in-out infinite;
}

/* =============================================
   FLEET GRID
   ============================================= */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.fleet-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.fleet-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.fleet-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.fleet-card:hover .fleet-card__img-wrap img {
  transform: scale(1.06);
}

.fleet-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-white);
}
.fleet-card__badge--premium {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}
.fleet-card__badge--vip {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}

.fleet-card__body {
  padding: 18px 20px 20px;
}

.fleet-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.fleet-card__meta {
  margin-bottom: 10px;
}

.fleet-card__cap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--color-text-sub);
  font-weight: 500;
}

.fleet-card__price {
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 16px;
}
.fleet-card__price strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-light);
}

/* =============================================
   TRUST / KEUNGGULAN
   ============================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.trust-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.trust-card--highlight {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.trust-card--highlight .trust-card__title,
.trust-card--highlight .trust-card__desc {
  color: rgba(255,255,255,0.92);
}
.trust-card--highlight .trust-card__icon {
  background: rgba(255,255,255,0.12);
  color: var(--color-accent);
}

.trust-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(37,99,235,0.08);
  color: var(--color-primary-light);
  margin-bottom: 16px;
}

.trust-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.trust-card__desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.65;
}

/* =============================================
   DESTINATION GRID
   ============================================= */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 14px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.dest-card:hover img {
  transform: scale(1.08);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,60,0.80) 0%, rgba(10,20,60,0.15) 60%);
  transition: opacity var(--transition);
}
.dest-card:hover .dest-card__overlay {
  opacity: 0.9;
}

.dest-card__content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dest-card__icon {
  font-size: 20px;
  line-height: 1;
}

.dest-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  margin: 0;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-card__stars {
  font-size: 18px;
  color: #F59E0B;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-sub);
  margin-bottom: 20px;
  font-style: normal;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__name {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.review-card__city {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  user-select: none;
  gap: 16px;
  transition: background var(--transition);
}
.faq-item__q:hover {
  background: rgba(37,99,235,0.04);
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background var(--transition);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--color-primary-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-item__icon::before { width: 10px; height: 2px; }
.faq-item__icon::after  { width: 2px;  height: 10px; }

.faq-item[open] .faq-item__icon {
  background: var(--color-primary-light);
}
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after {
  background: white;
}
.faq-item[open] .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  padding: 0 22px 20px;
  border-top: 1px solid var(--color-border);
}
.faq-item__a p {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.75;
  padding-top: 16px;
}
.faq-item__a strong {
  color: var(--color-primary);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 60%, #1E40AF 100%);
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(56,189,248,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.15) 0%, transparent 50%);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.cta-section__title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}

.cta-section__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   RESPONSIVE — TABLET (768px)
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --section-py: 64px;
  }
  .dest-grid {
    grid-template-rows: repeat(2, 170px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --container-px: 16px;
  }

  /* Hero */
  .hero {
    background-attachment: scroll;
    min-height: 100svh;
  }
  .hero__stats {
    flex-wrap: wrap;
    gap: 18px;
    padding: 16px 24px;
  }
  .hero__stat-divider { display: none; }

  /* Sections */
  .section__header { margin-bottom: 36px; }

  /* Fleet */
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Destination */
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
  }

  /* Reviews */
  .review-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section__actions { flex-direction: column; align-items: center; }
  .btn--xl { width: 100%; max-width: 340px; }
}

/* =============================================
   RESPONSIVE — MOBILE (480px)
   ============================================= */
@media (max-width: 480px) {
  :root {
    --section-py: 48px;
  }

  /* Hero */
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: 100%; max-width: 300px; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr; }

  /* Destination */
  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 140px);
  }

  /* Hero stats */
  .hero__stats { flex-direction: column; gap: 12px; }

  /* Trust */
  .trust-card { padding: 22px 20px; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .hero { min-height: auto; padding: 40px 0; }
  .hero__overlay { background: rgba(10,20,60,0.5); }
  .cta-section { break-inside: avoid; }
}
/* =============================================
   ABOUT US PAGE — tentang-kami.html
   ============================================= */

/* =============================================
   ABOUT HERO (overrides/extends .hero)
   ============================================= */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?w=1600&q=85');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  overflow: hidden;
  padding-bottom: 0;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 18, 55, 0.92) 0%,
    rgba(15, 37, 87, 0.82) 45%,
    rgba(26, 58, 143, 0.65) 100%
  );
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}
.about-hero__breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.about-hero__breadcrumb a:hover { color: var(--color-accent); }

.about-hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.about-hero__wave svg {
  width: 100%;
  height: 80px;
}

/* =============================================
   STORY SECTION
   ============================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.story-img-wrap:hover .story-img { transform: scale(1.03); }

.story-img__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.story-img__badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
}
.story-img__badge-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-sub);
  white-space: nowrap;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 32px;
}
.story-body p {
  font-size: 15.5px;
  color: var(--color-text-sub);
  line-height: 1.8;
}
.story-body strong { color: var(--color-primary); font-weight: 600; }

.story-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}
.story-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.story-value__icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.story-value strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 3px;
}
.story-value p {
  font-size: 13.5px;
  color: var(--color-text-sub);
  line-height: 1.65;
}

/* =============================================
   STATS GRID
   ============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.stat-card:hover::before { opacity: 1; }

.stat-card--accent {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.stat-card--accent .stat-card__icon { background: rgba(255,255,255,0.1); color: var(--color-accent); }
.stat-card--accent .stat-card__num { color: var(--color-accent); }
.stat-card--accent .stat-card__label { color: rgba(255,255,255,0.85); }
.stat-card--accent .stat-card__desc { color: rgba(255,255,255,0.6); }

.stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(37,99,235,0.08);
  color: var(--color-primary-light);
  margin: 0 auto 18px;
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card__num span {
  font-size: 24px;
  font-weight: 700;
  opacity: 0.75;
}

.stat-card__label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.stat-card__desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* =============================================
   VISI & MISI
   ============================================= */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  align-items: start;
}

.vm-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  height: 100%;
}

.vm-card--vision {
  background: var(--color-primary);
  color: var(--color-white);
}
.vm-card--vision .vm-card__icon { background: rgba(255,255,255,0.1); color: var(--color-accent); }
.vm-card--vision .vm-card__label { color: var(--color-accent); }
.vm-card--vision .vm-card__text { color: rgba(255,255,255,0.85); }
.vm-card--vision .vm-card__text strong { color: var(--color-accent); }

.vm-card--mission {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.vm-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.vm-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37,99,235,0.08);
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.vm-card__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-light);
}

.vm-card__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-sub);
}

.vm-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vm-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.65;
}
.vm-card__list li strong { color: var(--color-primary); font-weight: 600; }

.vm-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: var(--radius-full);
  background: rgba(37,99,235,0.1);
  color: var(--color-primary-light);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* =============================================
   KEUNGGULAN / ADVANTAGE
   ============================================= */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantage-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.advantage-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
}

.advantage-card--featured {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  border-color: var(--color-primary);
  grid-column: span 1;
}
.advantage-card--featured:hover { border-color: var(--color-accent); }
.advantage-card--featured .advantage-card__icon { background: rgba(255,255,255,0.1); color: var(--color-accent); }
.advantage-card--featured .advantage-card__title { color: var(--color-white); }
.advantage-card--featured .advantage-card__desc  { color: rgba(255,255,255,0.75); }

.advantage-card__inner { display: flex; flex-direction: column; height: 100%; }

.advantage-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(37,99,235,0.08);
  color: var(--color-primary-light);
  margin-bottom: 16px;
}

.advantage-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.advantage-card__desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.7;
  flex: 1;
}

.advantage-card__stars {
  font-size: 22px;
  color: #F59E0B;
  letter-spacing: 3px;
  margin-top: 16px;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.team-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}
.team-card:hover .team-card__img-wrap img { transform: scale(1.06); }

.team-card__body {
  padding: 22px 22px 24px;
}

.team-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.team-card__role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary-light);
  background: rgba(37,99,235,0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.team-card__desc {
  font-size: 13.5px;
  color: var(--color-text-sub);
  line-height: 1.7;
}

/* Driver Banner */
.team-driver-banner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-primary);
  box-shadow: var(--shadow-xl);
}

.team-driver-banner__content {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.team-driver-banner__text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.team-driver-banner__text p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.team-driver-banner__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.team-driver-banner__list li {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.team-driver-banner__img-wrap {
  overflow: hidden;
  min-height: 280px;
}
.team-driver-banner__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
}

/* =============================================
   AREA LAYANAN
   ============================================= */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.area-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}
.area-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-primary-light);
}

.area-card--large {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(56,189,248,0.04) 100%);
  border-color: rgba(37,99,235,0.2);
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 16px 24px;
  padding: 28px 32px;
}
.area-card--large .area-card__city { font-size: 22px; }
.area-card--large .area-card__desc {
  grid-column: span 1;
  margin-bottom: 0;
  max-width: 480px;
}

.area-card__pin {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.area-card__city {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.area-card__desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.65;
  margin-bottom: 0;
}

.area-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-light);
  background: rgba(37,99,235,0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .about-hero { min-height: 60vh; background-attachment: scroll; }
  .story-grid { gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .area-card--large {
    grid-column: span 2;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .area-card--large .area-card__tag { grid-column: span 2; }
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-driver-banner { grid-template-columns: 1fr; }
  .team-driver-banner__img-wrap { min-height: 240px; max-height: 280px; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card--vision .vm-card__text { font-size: 15px; }
}

@media (max-width: 768px) {
  .about-hero { min-height: 55vh; }
  .about-hero__content { padding-top: 80px; padding-bottom: 80px; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-img-wrap { aspect-ratio: 16/10; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-card { padding: 24px 18px; }
  .stat-card__num { font-size: 32px; }
  .advantage-grid { grid-template-columns: 1fr; gap: 14px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-driver-banner__content { padding: 30px 24px; }
  .team-driver-banner__list { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .area-card--large {
    grid-column: span 1;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px 16px;
  }
  .area-card--large .area-card__desc { grid-column: span 2; }
  .area-card--large .area-card__tag { grid-column: span 2; }
}

@media (max-width: 480px) {
  .about-hero__content { padding-top: 70px; padding-bottom: 70px; }
  .about-hero__breadcrumb { font-size: 12px; }
  .story-img__badge { padding: 10px 14px; }
  .story-img__badge-num { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 24px 20px; }
  .team-card__body { padding: 16px 16px 18px; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .btn--xl { width: 100%; max-width: 340px; }
}



    /*
     * Style tambahan MINIMAL untuk komponen yang belum tersedia di global.css.
     * Semua menggunakan CSS variables dari global.css (:root).
     * Tidak ada warna/nilai hardcode baru — semua merujuk ke var() yang sudah ada.
     */

    /* Hero kontak: background berbeda, height berbeda dari .hero default */
    .contact-hero {
      background-image: url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?w=1600&q=85');
      background-attachment: scroll;
      min-height: 72vh;
    }

    /* Trust bar kecil di bawah CTA hero */
    .hero__trust-bar {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px 20px;
      justify-content: center;
      background: rgba(255,255,255,0.07);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-full);
      padding: 12px 28px;
      margin-top: 32px;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
    }
    .hero__trust-bar span {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .hero__trust-bar .divider {
      width: 1px;
      height: 16px;
      background: rgba(255,255,255,0.2);
    }

    /* Banner CTA: layout grid 2 kolom */
    .cta-banner {
      background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(56,189,248,0.03) 100%);
      border: 1px solid rgba(37,99,235,0.12);
      border-radius: var(--radius-xl);
      padding: 40px 48px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 32px;
    }
    .cta-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }

    /* Grid 3 kolom untuk 5 info card */
    .contact-info-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* Variant WhatsApp hijau pada trust-card */
    .trust-card--wa {
      border-color: rgba(37,211,102,0.3);
      background: linear-gradient(135deg, #F0FFF4 0%, #ECFDF5 100%);
    }
    .trust-card--wa:hover {
      border-color: var(--color-wa);
      box-shadow: 0 8px 32px rgba(37,211,102,0.15);
    }
    .trust-card--wa .trust-card__icon {
      background: rgba(37,211,102,0.12);
      color: var(--color-wa);
    }

    /* Nilai (nomor/alamat) di dalam trust-card */
    .trust-card__value {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      color: var(--color-primary);
      text-decoration: none;
      display: block;
      margin-bottom: 6px;
      transition: color var(--transition);
      word-break: break-word;
    }
    a.trust-card__value:hover { color: var(--color-primary-light); }
    .trust-card__value--address {
      font-family: var(--font-body);
      font-size: 15px;
      font-style: normal;
      line-height: 1.6;
    }

    /* Jam besar di card operasional */
    .trust-card__hours {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 800;
      color: var(--color-primary);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    /* Indikator "Sekarang Buka" */
    .trust-card__open {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 600;
      color: var(--color-wa);
      margin-top: 8px;
    }
    .trust-card__open-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--color-wa);
      animation: dot-pulse 2s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes dot-pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%       { transform: scale(1.4); opacity: 0.7; }
    }

    /* Google Maps embed */
    .maps-wrap {
      display: grid;
      grid-template-columns: 1fr 320px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--color-border);
    }
    .maps-wrap__frame { height: 420px; }
    .maps-wrap__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
    .maps-wrap__info {
      background: var(--color-white);
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
    }
    .maps-wrap__info h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: 4px;
    }
    .maps-wrap__info address {
      font-style: normal;
      font-size: 14px;
      color: var(--color-text-sub);
      line-height: 1.65;
    }
    .maps-dir-label {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-text-muted);
      margin-bottom: 8px;
    }
    .maps-dir-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: var(--color-text-sub);
      margin-bottom: 6px;
    }
    .maps-dir-item svg { color: var(--color-wa); flex-shrink: 0; }

    /* Form kontak: layout 2 kolom */
    .form-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .form-checks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 20px 0;
    }
    .form-checks li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--color-text);
    }
    .form-checks li svg { color: var(--color-wa); flex-shrink: 0; }
    .form-img {
      width: 100%;
      border-radius: var(--radius-lg);
      object-fit: cover;
      aspect-ratio: 16/9;
      box-shadow: var(--shadow-md);
      margin-top: 8px;
    }
    .form-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      padding: 40px 36px;
      box-shadow: var(--shadow-lg);
    }
    .form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
    .form-label {
      font-family: var(--font-display);
      font-size: 13.5px;
      font-weight: 600;
      color: var(--color-text);
    }
    .form-label span { color: #EF4444; }
    .form-input, .form-textarea {
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--color-text);
      background: var(--color-bg);
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      width: 100%;
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
      -webkit-appearance: none;
    }
    .form-input:focus, .form-textarea:focus {
      border-color: var(--color-primary-light);
      box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
      background: var(--color-white);
    }
    .form-input::placeholder, .form-textarea::placeholder {
      color: var(--color-text-muted);
      font-size: 14px;
    }
    .form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
    .form-prefix-wrap { display: flex; align-items: stretch; }
    .form-prefix {
      display: flex;
      align-items: center;
      padding: 0 14px;
      background: var(--color-bg-alt);
      border: 1.5px solid var(--color-border);
      border-right: none;
      border-radius: var(--radius-md) 0 0 var(--radius-md);
      font-size: 15px;
      font-weight: 600;
      color: var(--color-text-sub);
      white-space: nowrap;
    }
    .form-prefix-wrap:focus-within .form-prefix { border-color: var(--color-primary-light); }
    .form-prefix-wrap:focus-within .form-input {
      border-color: var(--color-primary-light);
      box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
      background: var(--color-white);
    }
    .form-input--tel { border-radius: 0 var(--radius-md) var(--radius-md) 0; flex: 1; }
    .form-privacy {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--color-text-muted);
      justify-content: center;
      margin-top: 12px;
    }

    /* Area layanan: card dengan gambar (extend .area-card dari global) */
    .area-card--photo {
      padding: 0;
      overflow: hidden;
      aspect-ratio: 16/9;
      position: relative;
    }
    .area-card--photo-main { grid-column: span 2; aspect-ratio: 16/7; }
    .area-card--photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      position: absolute; inset: 0;
      transition: transform var(--transition-slow);
    }
    .area-card--photo:hover img { transform: scale(1.05); }
    .area-card--photo .photo-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,20,60,0.85) 0%, rgba(10,20,60,0.15) 60%);
    }
    .area-card--photo .photo-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 22px 26px; z-index: 2;
    }
    .area-card--photo .area-card__tag {
      color: var(--color-white);
      background: rgba(37,99,235,0.55);
      margin-bottom: 8px;
    }
    .area-card--photo .area-card__city {
      color: var(--color-white);
      text-shadow: 0 2px 8px rgba(0,0,0,0.4);
      margin-bottom: 4px;
    }
    .area-card--photo .area-card__desc { color: rgba(255,255,255,0.82); }

    /* WhatsApp Floating Button */
    .wa-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--color-wa);
      color: var(--color-white);
      padding: 14px 22px 14px 18px;
      border-radius: var(--radius-full);
      box-shadow: 0 6px 24px rgba(37,211,102,0.45);
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all var(--transition);
    }
    .wa-float:hover {
      background: var(--color-wa-hover);
      box-shadow: 0 10px 32px rgba(37,211,102,0.55);
      transform: translateY(-3px);
    }

    /* ---- Responsive ---- */
    @media (max-width: 1024px) {
      .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 32px 28px; }
      .cta-banner__actions { justify-content: center; }
      .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
      .maps-wrap { grid-template-columns: 1fr; }
      .maps-wrap__frame { height: 300px; }
      .form-wrap { gap: 40px; }
    }
    @media (max-width: 768px) {
      .contact-hero { min-height: 80vh; }
      .hero__trust-bar .divider { display: none; }
      .contact-info-grid { grid-template-columns: 1fr; }
      .cta-banner__actions { flex-direction: column; align-items: center; width: 100%; }
      .cta-banner__actions .btn { width: 100%; max-width: 320px; }
      .form-wrap { grid-template-columns: 1fr; gap: 32px; }
      .form-card { padding: 28px 20px; }
      .area-grid { grid-template-columns: 1fr !important; }
      .area-card--photo-main { grid-column: span 1; aspect-ratio: 16/9; }
      .maps-wrap__info { padding: 24px 20px; }
      .wa-float span { display: none; }
      .wa-float { padding: 16px; border-radius: 50%; }
    }
    @media (max-width: 480px) {
      .form-card { padding: 24px 16px; }
      .maps-wrap__frame { height: 240px; }
    }
  