/* ==========================================================================
   GOApostille.com - Modern Mobile-First High-Conversion Stylesheet
   Theme: Clean Light Background + AMPM Electric Sky Light Blue (#00b4d8 / #00c4ee)
   CTA: Vibrant WhatsApp Emerald Green (#25D366)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Clean Light Backgrounds */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;

  /* Executive Dark Navy for Headings & Text Contrast */
  --primary-navy: #0f172a;
  --primary-navy-light: #1e293b;
  --primary-navy-surface: #0f172a;
  
  /* AMPM Electric Sky Light Blue Theme (#00b4d8 / #00c4ee) */
  --brand-blue: #0077b6;
  --brand-blue-hover: #023e8a;
  --light-blue: #00b4d8;
  --light-blue-bright: #00c4ee;
  --light-blue-soft: rgba(0, 180, 216, 0.1);
  --light-blue-border: rgba(0, 180, 216, 0.3);
  
  /* WhatsApp Brand Colors (KEPT VIBRANT GREEN AS REQUESTED) */
  --wa-green: #25D366;
  --wa-green-hover: #20bd5a;
  --wa-green-dark: #128C7E;
  --wa-green-soft: rgba(37, 211, 102, 0.14);
  --wa-green-glow: rgba(37, 211, 102, 0.45);

  /* Typography & Neutrals (NO ORANGE) */
  --text-main: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  --border-light: #e2e8f0;
  --border-focus: #00b4d8;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
  --grad-logo: linear-gradient(135deg, #00c4ee 0%, #0077b6 100%); /* AMPM Sky Light Blue Gradient */
  --grad-blue: linear-gradient(135deg, #00c4ee 0%, #0077b6 100%);
  --grad-wa: linear-gradient(135deg, #25D366 0%, #128C7E 100%); /* KEPT GREEN CTA GRADIENT */

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  --shadow-wa: 0 10px 25px -5px rgba(37, 211, 102, 0.45);
  --shadow-logo: 0 8px 22px -2px rgba(0, 196, 238, 0.45);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: #e2e8f0;

  /* Layout & Spacing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --container-max: 1200px;
  --header-height: 72px;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  padding-bottom: 76px; /* Space for mobile bottom sticky nav */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--wa-green);
  color: #032b17;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #00c4ee 0%, #0077b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light-blue);
  background: var(--light-blue-soft);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--light-blue-border);
  margin-bottom: 0.75rem;
}

.kicker .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--light-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--light-blue);
  animation: pulse-ring-blue 2s infinite;
}

@keyframes pulse-ring-blue {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(0, 180, 216, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* AMPM SKY LIGHT BLUE LOGO MARK */
.brand-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #00c4ee 0%, #0077b6 100%) !important;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  box-shadow: var(--shadow-logo);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.05);
  box-shadow: 0 10px 28px -2px rgba(0, 196, 238, 0.6);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #ffffff !important;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-title span {
  color: var(--light-blue) !important;
}

.brand-subtitle {
  font-size: 0.725rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--light-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* WhatsApp Primary Header CTA Button - GREEN KEPT */
.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-wa);
  color: #032b17;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-wa);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-header-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(37, 211, 102, 0.65);
}

.btn-header-wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.phone-header-link {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

@media (min-width: 1200px) {
  .phone-header-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  .phone-header-link:hover {
    color: var(--text-main);
  }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  padding: 8px;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(-150%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

body.menu-open .mobile-menu {
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu a.cta-drawer {
  background: var(--grad-wa);
  color: #032b17;
  margin-top: 0.5rem;
  justify-content: center;
}

/* ==========================================================================
   Hero Section & Interactive WA Form (Light Theme)
   ========================================================================== */

.hero {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
  overflow: hidden;
  background: var(--grad-hero);
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .hero {
    padding-top: 4.5rem;
    padding-bottom: 5.5rem;
  }
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 196, 238, 0.22) 0%, rgba(248, 250, 252, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-secondary {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.15) 0%, rgba(248, 250, 252, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3rem;
  }
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  color: var(--text-main);
}

.hero-copy .lead {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* Preset Pill Tags for CRO */
.pill-selector-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--light-blue);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.doc-pill {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.doc-pill:hover, .doc-pill.active {
  background: #e0f2fe;
  border-color: var(--light-blue);
  color: var(--light-blue);
  transform: translateY(-2px);
}

.doc-pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Quick Trust Highlights */
.hero-trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
  list-style: none;
}

@media (min-width: 576px) {
  .hero-trust-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
}

.hero-trust-list li svg {
  width: 20px;
  height: 20px;
  color: var(--light-blue);
  flex-shrink: 0;
}

/* Hero Form Card (Light Theme Form) */
.hero-form-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

@media (min-width: 576px) {
  .hero-form-card {
    padding: 2.25rem;
  }
}

.form-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #032b17;
  background: var(--wa-green);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.form-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cro-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--text-main);
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #94a3b8;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
  background: #ffffff;
}

.form-select option {
  background-color: #ffffff;
  color: var(--text-main);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

/* WhatsApp Main Submit Button - GREEN KEPT */
.btn-submit-wa {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--grad-wa);
  color: #032b17;
  font-size: 1.0625rem;
  font-weight: 800;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-wa);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0.5rem;
}

.btn-submit-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -5px rgba(37, 211, 102, 0.65);
  background: linear-gradient(135deg, #28e06e 0%, #15a090 100%);
}

.btn-submit-wa svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.785rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.form-guarantee svg {
  width: 16px;
  height: 16px;
  color: var(--light-blue);
}

/* Authority Badges Bar */
.authority-bar {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.authority-title {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light-blue);
  margin-bottom: 1.25rem;
}

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

@media (min-width: 768px) {
  .authority-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.authority-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.authority-icon {
  width: 36px;
  height: 36px;
  background: var(--light-blue-soft);
  color: var(--light-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.authority-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.authority-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main);
}

.authority-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Services Section (Layanan Kami)
   ========================================================================== */

.section-padding {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-head p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--light-blue);
  box-shadow: var(--shadow-md);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--light-blue-soft);
  color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* BLUE BADGE - NO ORANGE */
.service-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--light-blue);
  background: var(--light-blue-soft);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--light-blue-border);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-card-action {
  margin-top: auto;
}

.btn-card-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--wa-green-dark);
  transition: gap 0.2s ease;
}

.btn-card-wa:hover {
  gap: 0.75rem;
  color: var(--light-blue);
}

.btn-card-wa svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

/* Highlighted Express Card */
.service-card.express-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  border: 1px solid var(--light-blue);
}

/* ==========================================================================
   Process Workflow Section
   ========================================================================== */

.process-section {
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.process-step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--light-blue);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: monospace, sans-serif;
}

.process-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

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

/* ==========================================================================
   Trust & Social Proof Section (NO ORANGE STARS)
   ========================================================================== */

.proof-section {
  background: var(--bg-body);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .proof-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.proof-highlight-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.proof-highlight-card h2, .proof-highlight-card p {
  color: #ffffff;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.rating-score {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

/* AMPM BLUE STARS */
.rating-stars {
  color: #00c4ee;
  font-size: 1.25rem;
}

.rating-count {
  font-size: 0.875rem;
  color: #94a3b8;
}

.proof-highlight-card p {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.maps-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.office-info {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.office-info strong {
  display: block;
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.office-info address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

/* AMPM BLUE STARS */
.testimonial-card .stars {
  color: #00b4d8;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}

.testimonial-author span {
  font-size: 0.785rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: var(--light-blue);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--light-blue);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 3.5rem 3rem;
  }
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-banner p {
  font-size: 1.1rem;
  color: #e0f2fe;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.cta-banner .kicker {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
  .cta-actions {
    flex-direction: row;
  }
}

/* GREEN CTA BUTTON KEPT */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--grad-wa);
  color: #032b17;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-wa);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -5px rgba(37, 211, 102, 0.75);
}

.btn-cta-primary svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.site-footer {
  background: #0f172a;
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem 0;
  color: #f8fafc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-col p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #00c4ee;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94a3b8;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ==========================================================================
   Sticky Mobile Bottom Navigation & Floating Widget (GREEN CTA KEPT)
   ========================================================================== */

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.bottom-bar-info {
  display: flex;
  flex-direction: column;
}

.bottom-bar-info strong {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.1;
}

.bottom-bar-info span {
  font-size: 0.725rem;
  color: var(--wa-green-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-bottom-wa {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-wa);
  color: #032e18;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-wa);
}

.btn-bottom-wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Floating WhatsApp Green Button for Desktop */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  width: 60px;
  height: 60px;
  background: var(--grad-wa);
  color: #ffffff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-wa);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 992px) {
  .floating-wa-btn {
    display: flex;
  }
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 40px -5px rgba(37, 211, 102, 0.8);
}

.floating-wa-btn svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.floating-wa-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(10px);
}

.floating-wa-btn:hover .floating-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Proof Toast Notification */
.proof-toast {
  position: fixed;
  bottom: 85px;
  left: 1rem;
  z-index: 980;
  background: #ffffff;
  border: 1px solid var(--wa-green);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 320px;
}

@media (min-width: 992px) {
  .proof-toast {
    bottom: 2rem;
    left: 2rem;
  }
}

.proof-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.proof-toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wa-green-soft);
  color: var(--wa-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.proof-toast-content strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main);
}

.proof-toast-content small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}
