/* ==========================================================================
   AMPM Sworn Translator - Penerjemah Tersumpah Bahasa Belanda
   High-Conversion Mobile-First Stylesheet
   ========================================================================== */

:root {
  --primary: #0a3d62;         /* Deep Royal Navy */
  --primary-dark: #072a44;
  --primary-light: #1e5a88;
  --accent-blue: #2980b9;
  --dutch-orange: #e65100;     /* Dutch accent badge */
  --wa-green: #25d366;        /* WhatsApp Green */
  --wa-hover: #1ebc59;
  --wa-dark: #128c7e;
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  --bg-page: #f9fafb;
  --bg-white: #ffffff;
  --bg-subtle: #f3f4f6;
  --border-color: #e5e7eb;
  --gold: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-cta: 0 8px 20px rgba(37, 211, 102, 0.35);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  padding-bottom: 74px; /* Space for mobile sticky CTA bar */
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Typography Helpers */
.text-center { text-align: center; }
.text-left { text-align: left; }
.fw-bold { font-weight: 700; }
.text-primary { color: var(--primary); }
.text-wa { color: var(--wa-green); }
.text-gold { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
}

.btn-wa {
  background-color: var(--wa-green);
  color: #ffffff !important;
  box-shadow: var(--shadow-cta);
}

.btn-wa:hover, .btn-wa:active {
  background-color: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  color: #fff !important;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

.btn-lg {
  padding: 15px 28px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

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

/* Top Notification Bar */
.topbar {
  background: linear-gradient(90deg, #072a44 0%, #0a3d62 50%, #1e5a88 100%);
  color: #ffffff;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-badge {
  background: #ff5722;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

.topbar-links {
  display: none;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .topbar-links {
    display: flex;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 6px 8px;
    font-size: 0.74rem;
    line-height: 1.35;
    text-align: center;
  }

  .topbar-content {
    justify-content: center;
  }
}

.topbar-links a {
  opacity: 0.9;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.topbar-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Header */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 10px 0;
  }
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 480px) {
  .logo-img {
    height: 42px;
  }
}

@media (min-width: 768px) {
  .logo-img {
    height: 46px;
  }
}

/* On mobile, the logo image already has "AMPM Sworn Translator", so hide redundant text to keep header clean */
.brand-info {
  display: none;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 768px) {
  .brand-info {
    display: flex;
  }
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-contact-info {
  display: none;
  flex-direction: column;
  text-align: right;
}

@media (min-width: 880px) {
  .header-contact-info {
    display: flex;
  }
}

.header-phone-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-phone-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
}

.header-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  border-radius: 50px;
}

.header-wa-btn .btn-icon-svg {
  width: 15px;
  height: 15px;
}

@media (min-width: 768px) {
  .header-wa-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    gap: 8px;
  }

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

/* Hero Section */
.hero {
  background: radial-gradient(circle at 80% 20%, rgba(41, 128, 185, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, #ffffff 0%, #f0f6fa 100%);
  padding: 32px 0 44px;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
  border: 1px solid #bae6fd;
}

.dutch-flag-icon {
  display: inline-flex;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  overflow: hidden;
  flex-direction: column;
}
.flag-red { height: 33.33%; background-color: #AE1C28; }
.flag-white { height: 33.33%; background-color: #FFFFFF; }
.flag-blue { height: 33.34%; background-color: #21468B; }

.hero-title {
  font-size: 1.85rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.35rem;
  }
}

.hero-highlight {
  color: #0284c7;
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .hero-points {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
}

.check-icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #a7f3d0;
}

.check-icon-circle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

@media (min-width: 540px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.cta-subtext {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--wa-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Quick Quotation / Check Document Card */
.quote-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid #e2e8f0;
  position: relative;
}

.quote-card-header {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.quote-card-tag {
  background: #ecfdf5;
  color: #047857;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.quote-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.quote-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.form-select, .form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-select:focus, .form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.15);
}

.speed-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.speed-option {
  position: relative;
}

.speed-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.speed-label {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.speed-option input[type="radio"]:checked + .speed-label {
  border-color: var(--primary);
  background-color: #f0f9ff;
}

.speed-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.speed-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.quote-guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 10px;
}

.quote-guarantee-note svg {
  width: 14px;
  height: 14px;
  fill: #10b981;
}

/* Trust Bar Section */
.trust-bar {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: center;
}

@media (min-width: 640px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .trust-badges-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
}

.trust-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #e0f2fe;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
}

.trust-badge-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.trust-badge-sub {
  font-size: 0.72rem;
  color: #64748b;
}

/* Section Header */
.section {
  padding: 44px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-header {
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  background-color: #e0f2fe;
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.1rem;
  }
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* Why Us / Keunggulan Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

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

.advantage-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.adv-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.adv-icon-box svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.adv-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.adv-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Document Category Tabs */
.doc-tabs-wrapper {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.doc-nav {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8fafc;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.doc-tab-btn {
  flex: 1;
  min-width: 160px;
  padding: 16px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #64748b;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
}

.doc-tab-btn.active {
  color: var(--primary);
  background-color: #ffffff;
  border-bottom-color: var(--primary);
}

.doc-tab-pane {
  display: none;
  padding: 26px 20px;
}

.doc-tab-pane.active {
  display: block;
}

.doc-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

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

.doc-item-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background-color: #f8fafc;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.doc-item-card:hover {
  background-color: #f0f9ff;
  border-color: #93c5fd;
}

.doc-icon-mini {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background-color: #e0f2fe;
  color: #0369a1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-icon-mini svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.doc-info {
  display: flex;
  flex-direction: column;
}

.doc-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.doc-usage {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
}

.doc-action-cta {
  margin-top: 24px;
  text-align: center;
  padding: 16px;
  background: #f0fdf4;
  border: 1px dashed #86efac;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (min-width: 640px) {
  .doc-action-cta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* 3-Step Workflow Section */
.workflow-section {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

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

.step-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  border: 1.5px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num-badge {
  position: absolute;
  top: -14px;
  background: var(--primary);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(10, 61, 98, 0.3);
}

.step-icon-img {
  width: 52px;
  height: 52px;
  margin-top: 6px;
  margin-bottom: 14px;
  color: var(--accent-blue);
  background: #f0f9ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-img svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-blue);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Comparison Table (AMPM vs Other) */
.comparison-wrapper {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  overflow-x: auto;
  margin-top: 28px;
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparison-table th, .comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
  background-color: #f8fafc;
  font-weight: 700;
  color: #334155;
}

.comparison-table th.col-ampm {
  background-color: #e0f2fe;
  color: var(--primary-dark);
  font-weight: 800;
}

.col-ampm {
  background-color: #f0f9ff;
  font-weight: 600;
  color: #0c4a6e;
}

.col-other {
  color: #64748b;
}

/* Google Reviews / Social Proof Section */
.reviews-section {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.rating-header-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  text-align: center;
}

@media (min-width: 640px) {
  .rating-header-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.rating-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-icon-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.score-text {
  font-size: 1.85rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.star-rating {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

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

.review-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0a3d62;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-details {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
}

.reviewer-sub {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-comment {
  font-size: 0.88rem;
  color: #334155;
  font-style: italic;
  line-height: 1.5;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #059669;
  font-weight: 600;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1e293b;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  fill: #64748b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  fill: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background-color: #fafbfc;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Map & Contact Details Section */
.contact-section {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.contact-info-card {
  background-color: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid #e2e8f0;
}

.contact-company-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-company-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #e0f2fe;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon-box svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.contact-val a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.map-embed-wrapper {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #cbd5e1;
  height: 400px;
  background: #ffffff;
}

.map-embed-wrapper iframe {
  width: 100%;
  flex: 1;
  min-height: 280px;
  border: 0;
}

.map-embed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 16px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.map-embed-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.2s ease;
}

.map-open-btn:hover {
  background: var(--primary-light);
}

/* Bottom CTA Banner */
.cta-banner-section {
  background: linear-gradient(135deg, #072a44 0%, #0a3d62 60%, #1e5a88 100%);
  color: #ffffff;
  padding: 56px 0;
  text-align: center;
}

.cta-banner-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .cta-banner-title {
    font-size: 2.3rem;
  }
}

.cta-banner-desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto 26px;
}

.cta-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 500px) {
  .cta-banner-btns {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  background-color: #071f33;
  color: #94a3b8;
  padding: 26px 0;
  font-size: 0.82rem;
  text-align: center;
  border-top: 1px solid #1e293b;
}

.footer p {
  margin-bottom: 6px;
}

/* Floating WhatsApp Button (Desktop & Mobile) */
.floating-wa {
  position: fixed;
  bottom: 84px;
  right: 18px;
  z-index: 999;
  background-color: var(--wa-green);
  color: #ffffff !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

@media (min-width: 992px) {
  .floating-wa {
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
  }
}

.floating-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff !important;
}

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

.wa-badge-notify {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #ef4444;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 10px 14px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 998;
  border-top: 1px solid #e2e8f0;
}

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

.mobile-cta-info {
  display: flex;
  flex-direction: column;
}

.mobile-cta-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.mobile-cta-sub {
  font-size: 0.68rem;
  color: #64748b;
}

.mobile-cta-btn {
  padding: 10px 18px;
  font-size: 0.88rem;
  flex-shrink: 0;
}

/* Real-Time Social Proof Toast Notification */
.social-proof-toast {
  position: fixed;
  bottom: 84px;
  left: 16px;
  max-width: 320px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  border: 1px solid #e2e8f0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 997;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (min-width: 992px) {
  .social-proof-toast {
    bottom: 24px;
    left: 24px;
    max-width: 350px;
  }
}

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

.toast-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0284c7;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.3);
}

.toast-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.toast-text {
  font-size: 0.78rem;
  color: #1e293b;
  line-height: 1.35;
}

.toast-text strong {
  font-weight: 700;
  color: var(--primary);
}

.toast-time {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.toast-close {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  font-size: 1rem;
  line-height: 1;
  align-self: flex-start;
}

.toast-close:hover {
  color: #334155;
}

/* Multi-Language Grid & Badges */
.lang-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 22px;
}

.lang-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.lang-badge-item:hover {
  border-color: var(--primary);
  background-color: #f0f9ff;
  transform: translateY(-1px);
}

.lang-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.languages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.language-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.language-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #93c5fd;
}

.lang-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.lang-card-flag {
  font-size: 2rem;
  line-height: 1;
}

.lang-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.lang-card-sub {
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 500;
}

.lang-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.lang-card-action {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lang-card-action:hover {
  color: var(--wa-green);
}

/* Service Pillars Grid (Apostille, Interpreter, Legal Translation) */
.services-pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

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

.service-pillar-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1.5px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.service-pillar-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e0f2fe;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pillar-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 600;
}

.pillar-list-item svg {
  width: 14px;
  height: 14px;
  fill: #10b981;
  flex-shrink: 0;
}

/* Feature Spotlight: QR Code Verification & Office Flexibility */
.spotlight-section {
  padding: 64px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

@media (min-width: 860px) {
  .spotlight-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.spotlight-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  padding: 32px 28px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.1);
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #0284c7 100%);
}

.spotlight-card.card-office::before {
  background: linear-gradient(90deg, #0f766e 0%, var(--wa-green) 100%);
}

.spotlight-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.spotlight-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spotlight-card.card-office .spotlight-icon-wrap {
  background: #ecfdf5;
  color: #059669;
}

.spotlight-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.spotlight-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #e0f2fe;
  color: #0369a1;
  margin-bottom: 6px;
}

.spotlight-card.card-office .spotlight-badge {
  background: #d1fae5;
  color: #065f46;
}

.spotlight-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.35;
}

.spotlight-desc {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 22px;
}

.spotlight-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: auto;
}

.spotlight-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #1e293b;
}

.spotlight-feature-item svg {
  width: 16px;
  height: 16px;
  fill: #10b981;
  flex-shrink: 0;
  margin-top: 3px;
}

.spotlight-action {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

