/* Go2DropTaxi — inDrive-inspired theme */
:root {
  --g2-lime: #c8f31d;
  --g2-lime-dark: #b3db12;
  --g2-lime-soft: #f4ffd4;
  --g2-black: #0a0a0a;
  --g2-yellow: var(--g2-lime);
  --g2-yellow-dark: var(--g2-lime-dark);
  --g2-yellow-soft: var(--g2-lime-soft);
  --g2-navy: #0a0a0a;
  --g2-text: #3d3d52;
  --g2-muted: #6b7280;
  --g2-white: #ffffff;
  --g2-bg: #f8f9fc;
  --g2-border: #e8ecf2;
  --g2-radius: 14px;
  --g2-radius-lg: 22px;
  --g2-shadow: 0 12px 40px rgba(26, 26, 46, 0.08);
  --g2-font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --g2-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  /* Booking form — lavender colours (layout unchanged) */
  --g2-booking-shell: #e8e4f8;
  --g2-booking-purple: #7c6ef2;
  --g2-booking-purple-deep: #6d5ce8;
  --g2-booking-purple-soft: #ded8fa;
  --g2-booking-purple-muted: #9b8ee8;
  --g2-booking-shell-border: rgba(124, 110, 242, 0.14);
  --g2-booking-badge-bg: #ded8fa;
  --g2-booking-tabs-bg: #e8e4f8;
  --g2-booking-body: #ffffff;
  --g2-booking-body-border: rgba(124, 110, 242, 0.12);
  --g2-booking-input-bg: #ffffff;
  --g2-booking-input-hover: #faf9ff;
  --g2-booking-input-text: #1f2937;
  --g2-booking-input-border: #e5e7eb;
  --g2-booking-input-placeholder: #b8aee8;
  --g2-booking-text: #4c1d95;
  --g2-booking-muted: #9b8ee8;
  --g2-booking-label: #7c6ef2;
  --g2-booking-focus: rgba(124, 110, 242, 0.22);
  --g2-booking-active: linear-gradient(135deg, #8b7cf8 0%, #7c6ef2 55%, #6d5ce8 100%);
  --font-body: var(--g2-font);
  --navy: var(--g2-navy);
  --gold: var(--g2-yellow);
  --gold-light: #ffd84d;
  --gold-pale: var(--g2-yellow-soft);
  --gold-border: rgba(245, 197, 24, 0.45);
  --white: var(--g2-white);
  --off-white: var(--g2-bg);
  --border: var(--g2-border);
  --text-soft: var(--g2-muted);
  --radius: var(--g2-radius);
  --radius-lg: var(--g2-radius-lg);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: var(--g2-shadow);
  --shadow-lg: 0 20px 50px rgba(26,26,46,0.12);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.g2-body {
  font-family: var(--g2-font);
  color: var(--g2-text);
  background: var(--g2-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92vw); margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; transition: var(--transition); font-family: inherit;
}
.btn-gold, .btn-primary {
  background: var(--g2-yellow); color: var(--g2-navy);
}
.btn-gold:hover, .btn-primary:hover {
  background: var(--g2-lime-dark); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 243, 29, 0.4);
}
.btn-outline {
  background: transparent; border: 2px solid var(--g2-navy); color: var(--g2-navy);
}
.btn-outline:hover { background: var(--g2-navy); color: var(--g2-white); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-white { background: var(--g2-white); color: var(--g2-navy); border: 1px solid var(--g2-border); }

/* Header */
.g2-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g2-border);
  transition: box-shadow 0.2s;
}
.g2-header.scrolled { box-shadow: var(--shadow-sm); }
.g2-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
}
.g2-nav { display: flex; align-items: center; gap: 6px; }
.g2-nav a {
  padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--g2-text);
  border-radius: 50px; transition: var(--transition);
}
.g2-nav a:hover, .g2-nav a.active { background: var(--g2-yellow-soft); color: var(--g2-navy); }
.g2-header-cta { display: flex; align-items: center; gap: 14px; }
.g2-call { font-size: 13px; font-weight: 700; color: var(--g2-navy); display: flex; align-items: center; gap: 6px; }
.g2-call i { color: var(--g2-yellow-dark); }
.g2-menu-btn {
  display: none; width: 42px; height: 42px; border: 1px solid var(--g2-border);
  border-radius: 10px; background: var(--g2-white); font-size: 18px; cursor: pointer;
}
.g2-mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--g2-white); padding: 24px; flex-direction: column; gap: 8px;
}
.g2-mobile-nav.open { display: flex; }
.g2-mobile-nav a { padding: 14px; font-weight: 600; border-bottom: 1px solid var(--g2-border); }

/* Logo */
.g2-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--g2-navy); }
.g2-logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--g2-yellow), #ffd84d);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--g2-navy);
}
.g2-logo-text { line-height: 1.1; }
.g2-logo-text small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--g2-muted); }

/* Page hero */
.g2-page-hero {
  background: linear-gradient(135deg, var(--g2-yellow-soft) 0%, var(--g2-white) 55%);
  padding: 120px 0 56px; position: relative; overflow: hidden;
}
.g2-page-hero::after {
  content: ''; position: absolute; right: -80px; top: 0; width: 280px; height: 100%;
  background: var(--g2-yellow); opacity: 0.15; transform: skewX(-8deg);
}
.g2-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--g2-navy); margin-bottom: 12px; }
.g2-page-hero p { color: var(--g2-muted); max-width: 640px; font-size: 16px; }
.g2-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--g2-white); border: 1px solid var(--g2-border);
  border-radius: 50px; padding: 6px 14px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--g2-yellow-dark); margin-bottom: 16px;
}
.g2-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--g2-muted); margin-top: 20px; }
.g2-breadcrumb .current { color: var(--g2-navy); font-weight: 700; }

/* Sections */
.g2-section { padding: 72px 0; }
.g2-section--soft { background: var(--g2-bg); }
.g2-section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--g2-navy); margin-bottom: 12px; text-align: center; }
.g2-section-lead { text-align: center; color: var(--g2-muted); max-width: 620px; margin: 0 auto 40px; }

/* Service cards */
.g2-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.g2-service-card {
  background: var(--g2-white); border: 1px solid var(--g2-border);
  border-radius: var(--g2-radius-lg); padding: 28px 22px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.g2-service-card:hover { border-color: var(--g2-yellow); box-shadow: var(--g2-shadow); transform: translateY(-4px); }
.g2-service-card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--g2-yellow-soft); color: var(--g2-yellow-dark);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.g2-service-card h3 { font-size: 17px; font-weight: 800; color: var(--g2-navy); margin-bottom: 8px; }
.g2-service-card p { font-size: 13px; color: var(--g2-muted); line-height: 1.7; }
.g2-service-card p a { color: var(--g2-navy); font-weight: 600; }
.g2-service-card p a:hover { color: var(--g2-yellow-dark); }
.g2-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.g2-service-card .num { position: absolute; bottom: 14px; right: 18px; font-size: 28px; font-weight: 800; color: rgba(245,197,24,0.2); }

/* Footer */
.g2-footer { background: var(--g2-navy); color: rgba(255,255,255,0.75); padding: 56px 0 24px; }
.g2-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.g2-footer h4 { color: var(--g2-white); font-size: 15px; margin-bottom: 16px; }
.g2-footer a, .g2-footer p { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,0.65); }
.g2-footer p a { display: inline; color: inherit; }
.g2-footer a:hover, .g2-footer p a:hover { color: var(--g2-yellow); }
.g2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px;
}

/* Floating call button — desktop & mobile */
.g2-call-fab {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 56px;
  height: 56px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--g2-yellow);
  color: var(--g2-navy);
  font-weight: 800;
  font-size: 14px;
  border: 2px solid var(--g2-navy);
  box-shadow:
    0 10px 28px rgba(200, 243, 29, 0.42),
    0 6px 18px rgba(10, 10, 10, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.g2-call-fab i { font-size: 20px; line-height: 1; }
.g2-call-fab__label { line-height: 1; letter-spacing: 0.02em; }
.g2-call-fab:hover {
  background: var(--g2-lime-dark);
  color: var(--g2-navy);
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(200, 243, 29, 0.48),
    0 8px 22px rgba(10, 10, 10, 0.2);
}
.g2-call-fab:focus-visible {
  outline: 3px solid var(--g2-navy);
  outline-offset: 3px;
}
@media (max-width: 599px) {
  .g2-call-fab {
    width: 56px;
    height: 56px;
    min-width: 56px;
    padding: 0;
    border-radius: 50%;
  }
  .g2-call-fab__label { display: none; }
}

/* Booking form — lavender colours only; layout from default booking_form_styles.php */
.g2-id-booking-slot .booking-card {
  --bf-gold: var(--g2-booking-purple);
  --bf-gold-light: var(--g2-booking-purple-deep);
  --bf-gold-pale: #f3f0ff;
  --bf-action-gradient: var(--g2-booking-active);
  --bf-action-shadow: 0 8px 24px rgba(124, 110, 242, 0.28);
  --bf-bg: var(--g2-booking-body);
  --bf-surface: var(--g2-booking-tabs-bg);
  --bf-surface-2: var(--g2-booking-purple-soft);
  --bf-border: rgba(124, 110, 242, 0.14);
  --bf-border-strong: var(--g2-booking-input-border);
  --bf-text: var(--g2-booking-input-text);
  --bf-text-muted: var(--g2-booking-muted);
  --bf-text-label: var(--g2-booking-label);
  --bf-placeholder: var(--g2-booking-input-placeholder);
  background: var(--g2-booking-shell);
  border-color: var(--g2-booking-shell-border);
  border-top-color: var(--g2-booking-purple);
  color: var(--g2-booking-text);
}

.g2-id-booking-slot .booking-card-premium-badge {
  background: var(--g2-booking-badge-bg);
  border-bottom-color: rgba(124, 110, 242, 0.1);
}
.g2-id-booking-slot .booking-card-premium-badge .badge-left,
.g2-id-booking-slot .booking-card-premium-badge .badge-left span {
  color: var(--g2-booking-purple-deep);
}
.g2-id-booking-slot .booking-card-premium-badge .badge-left i {
  background: var(--g2-booking-active);
  color: #fff;
  box-shadow: 0 2px 10px rgba(124, 110, 242, 0.35);
}
.g2-id-booking-slot .booking-card-premium-badge .badge-right {
  color: var(--g2-booking-muted);
}

.g2-id-booking-slot .booking-card-header {
  background: var(--g2-booking-tabs-bg);
  border-bottom-color: rgba(124, 110, 242, 0.12);
}
.g2-id-booking-slot .booking-tabs {
  background: var(--g2-booking-purple-soft);
  border-color: rgba(124, 110, 242, 0.12);
}
.g2-id-booking-slot .tab-btn {
  color: var(--g2-booking-purple);
}
.g2-id-booking-slot .tab-btn:hover {
  color: var(--g2-booking-purple-deep);
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(124, 110, 242, 0.2);
}
.g2-id-booking-slot .tab-btn.active,
.g2-id-booking-slot .booking-card .tab-btn.active {
  background: var(--g2-booking-active);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(124, 110, 242, 0.35);
}
.g2-id-booking-slot .booking-card .tab-btn.active i {
  color: #fff;
}

.g2-id-booking-slot .booking-card-body {
  background: var(--g2-booking-body);
}

/* Stack every label above its field (matches destination / location-wrap layout) */
.g2-id-booking-slot .booking-card .form-group {
  display: block;
  width: 100%;
}
.g2-id-booking-slot .booking-card .form-group label,
.g2-id-booking-slot .stops-label {
  display: block;
  width: 100%;
  color: var(--g2-booking-label);
}
.g2-id-booking-slot .booking-card .form-group label i,
.g2-id-booking-slot .stops-label i {
  color: var(--g2-booking-purple);
}
.g2-id-booking-slot .booking-card .location-wrap {
  display: block;
  width: 100%;
}

.g2-id-booking-slot .booking-card .form-group input,
.g2-id-booking-slot .booking-card .form-group select,
.g2-id-booking-slot .booking-card .time-select,
.g2-id-booking-slot .location-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--g2-booking-input-bg);
  color: var(--g2-booking-input-text);
  border-color: var(--g2-booking-input-border);
}
.g2-id-booking-slot .booking-card .time-picker-row {
  width: 100%;
}
.g2-id-booking-slot .booking-card .form-group input::placeholder,
.g2-id-booking-slot .location-input::placeholder {
  color: var(--g2-booking-input-placeholder);
}
.g2-id-booking-slot .booking-card .form-group input:hover,
.g2-id-booking-slot .booking-card .form-group select:hover,
.g2-id-booking-slot .booking-card .time-select:hover {
  border-color: #d4ccf8;
  background: var(--g2-booking-input-hover);
}
.g2-id-booking-slot .booking-card .form-group input:focus,
.g2-id-booking-slot .booking-card .form-group select:focus,
.g2-id-booking-slot .booking-card .time-select:focus,
.g2-id-booking-slot .location-input:focus {
  border-color: var(--g2-booking-purple);
  box-shadow: 0 0 0 3px var(--g2-booking-focus);
  background: #fff;
}

.g2-id-booking-slot .btn-add-stop {
  background: #f3f0ff;
  border-color: rgba(124, 110, 242, 0.55);
  color: var(--g2-booking-purple-deep);
}
.g2-id-booking-slot .btn-add-stop:hover {
  background: var(--g2-booking-active);
  border-color: var(--g2-booking-purple);
  color: #fff;
}
.g2-id-booking-slot .stop-number {
  background: #f3f0ff;
  border-color: #ded8fa;
  color: var(--g2-booking-label);
}
.g2-id-booking-slot .stop-input-wrap .location-input {
  background: #fff;
  color: var(--g2-booking-input-text);
  border-color: var(--g2-booking-input-border);
}

.g2-id-booking-slot .time-sep {
  color: var(--g2-booking-muted);
}
.g2-id-booking-slot .ampm-wrap {
  background: #fff;
  border-color: var(--g2-booking-input-border);
}
.g2-id-booking-slot .ampm-btn {
  color: var(--g2-booking-muted);
}
.g2-id-booking-slot .ampm-btn.active {
  background: var(--g2-booking-active);
  color: #fff;
  border-color: transparent;
}

.g2-id-booking-slot .booking-footer {
  border-top-color: rgba(124, 110, 242, 0.12);
}
.g2-id-booking-slot .booking-security {
  color: var(--g2-booking-muted);
}
.g2-id-booking-slot .booking-security i {
  color: var(--g2-booking-purple);
}

.g2-id-booking-slot .booking-card .btn-gold,
.g2-id-booking-slot .booking-card #booking-submit-btn {
  background: var(--g2-booking-active);
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 110, 242, 0.32);
}
.g2-id-booking-slot .booking-card .btn-gold:hover,
.g2-id-booking-slot .booking-card #booking-submit-btn:hover {
  box-shadow: 0 6px 18px rgba(124, 110, 242, 0.38);
}

.g2-id-booking-slot .location-suggestions {
  background: #fff;
  border-color: #ded8fa;
}
.g2-id-booking-slot .suggestion-item {
  color: var(--g2-booking-input-text);
  border-bottom-color: #f3f0ff;
}
.g2-id-booking-slot .suggestion-item:hover {
  background: #f3f0ff;
}
.g2-id-booking-slot .suggestion-item i {
  color: var(--g2-booking-purple);
}
.g2-id-booking-slot .suggestion-item .s-sub {
  color: var(--g2-booking-muted);
}

/* Page section only — do not override default booking grid/footer alignment */
body.g2-body .g2-id-booking-slot .booking-section {
  background: transparent;
  padding: 0;
}
body.g2-body .g2-id-booking-slot .booking-section::before {
  display: none;
}

/* Blog */
.g2-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.g2-blog-card {
  background: var(--g2-white); border: 1px solid var(--g2-border);
  border-radius: var(--g2-radius-lg); padding: 24px; transition: var(--transition);
}
.g2-blog-card:hover { border-color: var(--g2-yellow); box-shadow: var(--g2-shadow); }
.g2-blog-card h2 { font-size: 18px; font-weight: 800; color: var(--g2-navy); margin: 10px 0; }

/* Legal */
.g2-legal-card {
  background: var(--g2-white); border: 1px solid var(--g2-border);
  border-radius: var(--g2-radius-lg); padding: 36px; box-shadow: var(--shadow-sm);
}
.g2-legal-card h2 { font-size: 20px; color: var(--g2-navy); margin: 28px 0 12px; }
.g2-legal-card p, .g2-legal-card li { color: var(--g2-muted); line-height: 1.85; margin-bottom: 10px; }

/* SEO content blocks (about, service, blog) */
.g2-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.g2-prose p { color: var(--g2-muted); line-height: 1.85; margin-bottom: 14px; font-size: 15px; }
.g2-check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.g2-check-list li { display: flex; gap: 10px; margin-bottom: 10px; color: var(--g2-muted); font-size: 14px; line-height: 1.6; }
.g2-check-list i { color: var(--g2-yellow-dark); margin-top: 4px; flex-shrink: 0; }
.g2-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.g2-stat { background: var(--g2-white); border: 1px solid var(--g2-border); border-radius: var(--g2-radius-lg); padding: 24px 16px; }
.g2-stat strong { display: block; font-size: clamp(1.6rem, 3vw, 2rem); color: var(--g2-navy); margin-bottom: 6px; }
.g2-stat span { font-size: 13px; color: var(--g2-muted); font-weight: 600; }
.g2-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g2-step { background: var(--g2-white); border: 1px solid var(--g2-border); border-radius: var(--g2-radius-lg); padding: 28px 22px; }
.g2-step-num { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: var(--g2-yellow); font-weight: 800; color: var(--g2-navy); margin-bottom: 12px; font-size: 14px; }
.g2-step h3 { font-size: 17px; font-weight: 800; color: var(--g2-navy); margin-bottom: 8px; }
.g2-step p { font-size: 13px; color: var(--g2-muted); line-height: 1.7; }
.g2-route-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.g2-route-pills span { padding: 8px 14px; border-radius: 50px; background: var(--g2-yellow-soft); font-size: 12px; font-weight: 700; color: var(--g2-navy); }
.g2-cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--g2-navy); color: rgba(255,255,255,0.8); border-radius: var(--g2-radius-lg); padding: 36px 40px;
}
.g2-cta-band h2 { color: var(--g2-white); font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: 8px; }
.g2-cta-band p { font-size: 14px; margin: 0; }
.g2-faq-list { display: grid; gap: 16px; }
.g2-faq-item { background: var(--g2-white); border: 1px solid var(--g2-border); border-radius: var(--g2-radius-lg); padding: 22px 24px; }
.g2-faq-item h3 { font-size: 16px; font-weight: 800; color: var(--g2-navy); margin-bottom: 8px; }
.g2-faq-item p { font-size: 14px; color: var(--g2-muted); line-height: 1.75; margin: 0; }

@media (max-width: 992px) {
  .g2-nav, .g2-call { display: none; }
  .g2-menu-btn { display: flex; align-items: center; justify-content: center; }
  .g2-services-grid { grid-template-columns: repeat(2, 1fr); }
  .g2-footer-grid { grid-template-columns: 1fr 1fr; }
  .g2-blog-grid { grid-template-columns: 1fr; }
  .g2-split, .g2-steps { grid-template-columns: 1fr; }
  .g2-stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .g2-services-grid, .g2-footer-grid, .g2-contact-cards { grid-template-columns: 1fr; }
  .g2-stats-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   inDrive-style homepage (go2droptaxi)
   ═══════════════════════════════════════════ */

/* Hero — full-bleed photo banner (inDrive reference) */
.g2-id-hero-top {
  position: relative;
  width: 100%;
  min-height: clamp(300px, 38vw, 520px);
  max-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #141414;
}
.g2-id-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--g2-hero-img);
  background-size: cover;
  background-position: 58% 42%;
  background-repeat: no-repeat;
}
.g2-id-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.32) 38%,
    rgba(0, 0, 0, 0.12) 58%,
    rgba(0, 0, 0, 0) 78%
  );
}
.g2-id-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
  padding-left: clamp(28px, 10.5vw, 148px);
}
.g2-id-hero-top h1 {
  margin: 0;
  max-width: 520px;
  color: #ffffff;
  font-family: var(--g2-font);
  font-size: clamp(1.875rem, 3.9vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: left;
}

/* Form section — page band only; booking alignment uses default partial styles */
.g2-id-form-section {
  position: relative;
  z-index: 5;
  padding: 44px 0 56px;
  margin-top: 0;
  background: var(--g2-bg);
}
.g2-id-booking-slot {
  width: 100%;
}

/* Sections */
.g2-id-section { padding: 72px 0; }
.g2-id-section--soft { background: var(--g2-bg); }
.g2-id-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--g2-lime-soft);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  color: var(--g2-black);
  margin-bottom: 16px;
}
.g2-id-tag--dark { background: rgba(200, 243, 29, 0.2); color: var(--g2-lime); }
.g2-id-eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--g2-muted);
  margin-bottom: 8px;
}
.g2-id-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--g2-black);
  line-height: 1.12;
  margin-bottom: 16px;
  text-align: center;
}
.g2-id-h2--left { text-align: left; }
.g2-id-h2--light { color: var(--g2-white); }
.g2-id-lead {
  font-size: 16px;
  color: var(--g2-muted);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 20px;
}
.g2-id-lead--light { color: rgba(255, 255, 255, 0.82); }
.g2-id-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--g2-black);
  margin-bottom: 40px;
}
.g2-id-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 640px;
}
.g2-id-stats strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--g2-black);
  line-height: 1;
}
.g2-id-stats span { font-size: 14px; color: var(--g2-muted); font-weight: 600; }

/* City cards scroll */
.g2-id-cities-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.g2-id-cities-scroll::-webkit-scrollbar { height: 6px; }
.g2-id-cities-scroll::-webkit-scrollbar-thumb { background: var(--g2-border); border-radius: 3px; }
.g2-id-city-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: var(--g2-white);
  border: 1px solid var(--g2-border);
  transition: var(--transition);
}
.g2-id-city-card:hover { transform: translateY(-4px); box-shadow: var(--g2-shadow); }
.g2-id-city-card img { width: 100%; height: 120px; object-fit: cover; }
.g2-id-city-card span {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--g2-black);
}

/* Fair prices dark band */
.g2-id-fair {
  background: var(--g2-black);
  color: var(--g2-white);
}
.g2-id-fair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.g2-id-fair-visual img { width: 100%; max-width: 420px; margin: 0 auto; }

/* Service cards */
.g2-id-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.g2-id-service-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--g2-bg);
  border: 1px solid var(--g2-border);
  transition: var(--transition);
}
.g2-id-service-card:hover { box-shadow: var(--g2-shadow); transform: translateY(-3px); }
.g2-id-service-card img { width: 100%; height: 200px; object-fit: cover; }
.g2-id-service-card h3 {
  padding: 16px 18px 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--g2-black);
}
.g2-id-service-link {
  display: inline-block;
  padding: 0 18px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--g2-black);
  text-decoration: underline;
}

/* App banner */
.g2-id-app-banner {
  position: relative;
  overflow: hidden;
  background: var(--g2-lime);
  padding: 56px 0;
}
.g2-id-app-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.35;
  mix-blend-mode: multiply;
}
.g2-id-app-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.g2-id-app-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--g2-black);
  margin-bottom: 8px;
}
.g2-id-app-banner p { color: var(--g2-text); font-size: 15px; }
.g2-id-app-btn--dark { background: var(--g2-black); color: var(--g2-white); }

/* Steps */
.g2-id-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.g2-id-steps article {
  padding: 24px;
  background: var(--g2-bg);
  border-radius: 18px;
  border: 1px solid var(--g2-border);
}
.g2-id-step-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--g2-lime-dark);
  margin-bottom: 12px;
}
.g2-id-steps h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--g2-black);
  margin-bottom: 10px;
}
.g2-id-steps p { font-size: 14px; color: var(--g2-muted); line-height: 1.7; }

/* Payments */
.g2-id-payments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.g2-id-payment-card {
  padding: 28px 24px;
  background: var(--g2-white);
  border: 1px solid var(--g2-border);
  border-radius: 18px;
  text-align: center;
}
.g2-id-payment-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: var(--g2-lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--g2-black);
}
.g2-id-payment-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.g2-id-payment-card p { font-size: 13px; color: var(--g2-muted); line-height: 1.6; }

/* Destinations tabs */
.g2-id-dest-tabs { margin-top: 32px; }
.g2-id-dest-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.g2-id-dest-nav button {
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid var(--g2-border);
  background: var(--g2-white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--g2-text);
  cursor: pointer;
  transition: var(--transition);
}
.g2-id-dest-nav button.is-active,
.g2-id-dest-nav button:hover {
  background: var(--g2-black);
  color: var(--g2-white);
  border-color: var(--g2-black);
}
.g2-id-dest-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--g2-black);
  color: var(--g2-white);
  border-radius: 20px;
  padding: 32px;
  overflow: hidden;
}
.g2-id-dest-panel.is-active { display: grid; }
.g2-id-dest-panel h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.g2-id-dest-panel p { color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 16px; }
.g2-id-dest-panel .g2-id-service-link { color: var(--g2-lime); padding: 0; }
.g2-id-dest-panel img { width: 100%; border-radius: 14px; object-fit: cover; max-height: 280px; }

/* Advantages */
.g2-id-advantages ul {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 16px;
  max-width: 800px;
}
.g2-id-advantages li {
  padding: 18px 20px;
  background: var(--g2-white);
  border: 1px solid var(--g2-border);
  border-radius: 14px;
  font-size: 15px;
  color: var(--g2-muted);
  line-height: 1.65;
}
.g2-id-advantages strong { color: var(--g2-black); }

/* Reviews */
.g2-id-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.g2-id-review-card {
  padding: 24px;
  background: var(--g2-white);
  border: 1px solid var(--g2-border);
  border-radius: 18px;
  margin: 0;
}
.g2-id-review-card p {
  font-size: 14px;
  color: var(--g2-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.g2-id-review-card footer strong {
  display: block;
  font-size: 14px;
  color: var(--g2-black);
}
.g2-id-review-card footer span { font-size: 12px; color: var(--g2-muted); }

/* FAQ */
.g2-id-faq { max-width: 800px; margin: 32px auto 0; }
.g2-id-faq-item {
  border: 1px solid var(--g2-border);
  border-radius: 14px;
  margin-bottom: 10px;
  background: var(--g2-white);
  overflow: hidden;
}
.g2-id-faq-item summary {
  padding: 18px 20px;
  font-weight: 800;
  font-size: 15px;
  color: var(--g2-black);
  cursor: pointer;
  list-style: none;
}
.g2-id-faq-item summary::-webkit-details-marker { display: none; }
.g2-id-faq-item p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--g2-muted);
  line-height: 1.75;
}

/* Header height token */
:root { --g2-header-h: 70px; }
.g2-header-inner { min-height: var(--g2-header-h); }

@media (max-width: 992px) {
  .g2-id-hero-bg {
    background-image: var(--g2-hero-img-tablet);
    background-position: 62% center;
  }
  .g2-id-hero-top {
    min-height: clamp(280px, 52vw, 420px);
    max-height: none;
  }
  .g2-id-hero-content {
    padding-left: clamp(24px, 6vw, 64px);
  }
  .g2-id-hero-top h1 {
    max-width: 420px;
    font-size: clamp(1.75rem, 5.5vw, 2.5rem);
  }
  .g2-id-fair-grid,
  .g2-id-services,
  .g2-id-steps,
  .g2-id-reviews,
  .g2-id-dest-panel.is-active,
  .g2-id-payments { grid-template-columns: 1fr; }
  .g2-id-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .g2-id-app-banner-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .g2-id-form-section { padding: 28px 0 40px; }
  .g2-id-stats { grid-template-columns: 1fr; }
  .g2-id-hero-bg {
    background-image: var(--g2-hero-img-mobile);
    background-position: 70% center;
  }
  .g2-id-hero-top {
    min-height: 300px;
    align-items: flex-end;
  }
  .g2-id-hero-content {
    padding: 32px 20px 40px;
    padding-left: 20px;
  }
  .g2-id-hero-top h1 {
    font-size: 1.75rem;
    line-height: 1.15;
    max-width: 300px;
  }
  .g2-id-hero-shade {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.65) 100%
    );
  }
}
