/* ============================================================
   Lombok Good Rentcar — Custom Stylesheet
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
/* --- CSS Variables --- */
:root {
  --brand-blue: #2563eb;
  --brand-blue-dark: #1d4ed8;
  --brand-blue-light: #dbeafe;
  --brand-emerald: #059669;
  --brand-slate-900: #0f172a;
  --brand-slate-800: #1e293b;
  --brand-slate-700: #334155;
  --brand-slate-500: #64748b;
  --brand-slate-400: #94a3b8;
  --brand-slate-200: #e2e8f0;
  --brand-slate-100: #f1f5f9;
  --brand-slate-50: #f8fafc;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-blue: 0 10px 25px -5px rgba(37,99,235,.25);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-slate-700);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.2;
  color: var(--brand-slate-900);
}

a { text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--brand-blue); }

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

/* --- Layout Utilities --- */
.max-w-7xl { max-width: 80rem; }
.section-padding { padding: 4rem 0; }
.animate-fade-in { animation: fadeIn 0.3s ease forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- NAVBAR --- */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-slate-200);
  box-shadow: var(--shadow-sm);
}

.navbar-brand-logo {
  width: 40px; height: 40px;
  background: var(--brand-blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
  flex-shrink: 0;
}

.navbar-brand-text .brand-name {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-slate-900);
  line-height: 1;
}

.navbar-brand-text .brand-name span { color: var(--brand-blue); }
.navbar-brand-text .brand-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--brand-slate-400);
  text-transform: uppercase;
}

.nav-link-custom {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-slate-700) !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: all .15s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--brand-blue) !important;
  background: var(--brand-blue-light);
}

.dropdown-menu-custom {
  border: 1px solid var(--brand-slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
}

.dropdown-item-custom {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-slate-800);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  transition: background .12s;
}

.dropdown-item-custom:hover {
  background: var(--brand-slate-50);
  color: var(--brand-blue);
}

.dropdown-item-custom .item-sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--brand-slate-400);
  display: block;
  margin-top: 1px;
}

.btn-whatsapp-nav {
  background: #059669;
  color: #fff !important;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(5,150,105,.25);
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .15s, transform .1s;
}

.btn-whatsapp-nav:hover { background: #047857; color: #fff !important; transform: translateY(-1px); }

/* Mobile tab bar */
.mobile-tabs-bar {
  display: none;
  overflow-x: auto;
  background: var(--brand-slate-50);
  border-top: 1px solid var(--brand-slate-200);
  padding: 6px 8px;
  gap: 4px;
  white-space: nowrap;
  scrollbar-width: none;
}
.mobile-tabs-bar::-webkit-scrollbar { display: none; }
.mobile-tab-btn {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--brand-slate-600);
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}
.mobile-tab-btn.active,
.mobile-tab-btn:hover {
  background: #fff;
  color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--brand-slate-200);
}
/* ========================================
   FLOATING CONTACT BUTTONS
   ======================================== */

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.floating-whatsapp {
    background: #25D366;
}

.floating-phone {
    background: var(--primary-color);
}
@media (max-width: 991px) {
  .mobile-tabs-bar { display: flex; }
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--brand-slate-900);
  border-radius: var(--radius-3xl);
  color: #fff;
  padding: 4rem 3rem;
}

.hero-bg-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: 0.28;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,.95) 0%, rgba(15,23,42,.75) 55%, transparent 100%);
  border-radius: var(--radius-3xl);
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.3);
  color: #93c5fd;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}

.hero-badge .pulse-dot {
  width: 7px; height: 7px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.hero-title {
  margin-top: 1rem;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}

.hero-title .accent { color: #60a5fa; }

.hero-desc {
  margin-top: .75rem;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.75;
}

.hero-cta-group { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 12px; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-blue);
  color: #fff; font-family: var(--font-main);
  font-size: 12px; font-weight: 800;
  padding: 14px 24px; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-blue);
  transition: background .15s, transform .1s;
  border: none; cursor: pointer; text-decoration: none;
}

.btn-hero-primary:hover { background: var(--brand-blue-dark); color: #fff; transform: translateY(-1px); }

.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-family: var(--font-main);
  font-size: 12px; font-weight: 800;
  padding: 14px 24px; border-radius: var(--radius-xl);
  transition: background .15s, transform .1s;
  cursor: pointer; text-decoration: none;
}

.btn-hero-secondary:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-1px); }

.hero-trust-grid {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}

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

.trust-item {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 12px;
}

.trust-item h4 { font-size: 11px; font-weight: 800; color: #f1f5f9; margin: 0; }
.trust-item p  { font-size: 9px; color: #94a3b8; margin: 0; }
.trust-icon { color: #60a5fa; font-size: 18px !important; flex-shrink: 0; }

/* --- SECTION HEADERS --- */
.section-label {
  font-size: 10px; font-weight: 800; font-family: var(--font-main);
  letter-spacing: .15em; text-transform: uppercase;
  display: block; margin-bottom: 6px;
}
.section-label.blue   { color: var(--brand-blue); }
.section-label.emerald { color: var(--brand-emerald); }

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900; line-height: 1.2;
  color: var(--brand-slate-900); margin: 0;
}

.section-desc {
  font-size: 13px; color: var(--brand-slate-500);
  margin-top: 6px; line-height: 1.7;
}

/* --- CARDS --- */
.card-custom {
  background: #fff;
  border: 1px solid var(--brand-slate-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

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

.card-img-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--brand-slate-100);
}

.card-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}

.card-custom:hover .card-img-wrapper img { transform: scale(1.05); }

.badge-popular {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--brand-blue);
  color: #fff; font-size: 9px; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.card-body-custom { padding: 1.25rem; }

.car-name {
  font-family: var(--font-main);
  font-size: 1rem; font-weight: 800;
  color: var(--brand-slate-900); margin: 0;
}

.car-desc {
  font-size: 11px; color: var(--brand-slate-500);
  margin-top: 6px; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.spec-grid {
  display: flex; flex-wrap: wrap; gap: 6px;
  background: var(--brand-slate-50);
  border: 1px solid var(--brand-slate-200);
  border-radius: var(--radius-lg); padding: 10px;
  margin-top: 14px; font-size: 10px; font-weight: 700; color: var(--brand-slate-500);
}

.spec-item { display: flex; align-items: center; gap: 4px; }
.spec-item .material-icons { font-size: 13px; color: var(--brand-slate-400); }

.price-grid { margin-top: 16px; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--brand-slate-50); border: 1px solid var(--brand-slate-100);
  border-radius: var(--radius-md); padding: 8px 12px; margin-bottom: 6px;
  font-size: 10px;
}
.price-row .label { font-weight: 700; color: var(--brand-slate-400); text-transform: uppercase; }
.price-row .amount { font-weight: 900; font-family: var(--font-main); color: var(--brand-slate-900); }
.price-row .amount.premium { color: #4f46e5; }

.btn-book-car {
  display: block; width: 100%;
  background: var(--brand-blue); color: #fff;
  font-family: var(--font-main); font-size: 12px; font-weight: 800;
  text-align: center; padding: 12px;
  border-radius: var(--radius-xl); border: none; cursor: pointer;
  margin-top: 14px; text-decoration: none;
  transition: background .15s, transform .1s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

.btn-book-car:hover { background: var(--brand-blue-dark); color: #fff; transform: translateY(-1px); }

/* --- WHY CHOOSE US SECTION --- */
.why-section {
  background: linear-gradient(135deg, var(--brand-slate-50) 0%, #e8edf5 100%);
  border: 1px solid var(--brand-slate-200);
  border-radius: var(--radius-3xl);
  padding: 3rem;
}

.why-card {
  background: #fff; border: 1px solid var(--brand-slate-200);
  border-radius: var(--radius-2xl); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}

.why-card:hover { box-shadow: var(--shadow-md); }

.why-icon {
  width: 48px; height: 48px; border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

.why-icon.green  { background: #d1fae5; color: #059669; }
.why-icon.blue   { background: #dbeafe; color: #2563eb; }
.why-icon.amber  { background: #fef3c7; color: #d97706; }

.why-card h4 {
  font-size: 15px; font-weight: 900;
  color: var(--brand-slate-900); margin: 0 0 8px;
}

.why-card p { font-size: 12px; color: var(--brand-slate-500); margin: 0; }

/* --- STEPS SECTION --- */
.steps-section {
  background: #0f172a; color: #fff;
  border-radius: var(--radius-3xl);
  padding: 3.5rem 3rem;
  position: relative; overflow: hidden;
}

.steps-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://picsum.photos/seed/step-bg/1200/505') center/cover;
  opacity: .06;
}

.steps-grid { display: grid; gap: 20px; position: relative; z-index: 1; }

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

.step-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-2xl);
  padding: 1.5rem; text-align: center;
  backdrop-filter: blur(4px);
}

.step-number {
  width: 40px; height: 40px;
  background: var(--brand-blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-size: 14px; font-weight: 900;
  margin: 0 auto 12px; box-shadow: var(--shadow-blue);
}

.step-card h4 { font-size: 12px; font-weight: 800; color: #f1f5f9; margin: 0 0 6px; }
.step-card p  { font-size: 10px; color: #94a3b8; margin: 0; line-height: 1.6; }

/* --- DESTINATION CARDS --- */
.destination-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--brand-slate-900);
  cursor: pointer;
  display: block; text-decoration: none;
  border: 1px solid var(--brand-slate-200);
}

.destination-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .6; transition: transform .5s;
}

.destination-card:hover img { transform: scale(1.07); }

.destination-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
}

.dest-cat { font-size: 9px; font-weight: 800; color: #fbbf24; text-transform: uppercase; letter-spacing: .1em; }
.dest-name { font-size: 14px; font-weight: 900; color: #fff; margin: 4px 0; line-height: 1.2; }
.dest-desc { font-size: 10px; color: #cbd5e1; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dest-action { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; font-size: 10px; font-weight: 700; color: #fff; }
.dest-action .link-arrow { color: #60a5fa; display: flex; align-items: center; gap: 2px; font-weight: 800; }

/* --- TESTIMONIALS --- */
.review-card {
  background: #fff; border: 1px solid var(--brand-slate-200);
  border-radius: var(--radius-2xl); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; justify-content: space-between;
}

.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--brand-slate-300); }

.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: #fff;
  flex-shrink: 0;
}

.reviewer-name { font-size: 12px; font-weight: 800; color: var(--brand-slate-900); }
.reviewer-date { font-size: 10px; color: var(--brand-slate-400); }

.stars { color: #f59e0b; font-size: 14px; margin: 10px 0 8px; }

.service-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--brand-blue-light);
  border: 1px solid #bfdbfe;
  color: #1d4ed8; font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 8px; border-radius: 6px; margin-bottom: 10px;
}

.review-text { font-size: 12px; color: #475569; line-height: 1.7; font-style: italic; }

.review-footer {
  border-top: 1px solid var(--brand-slate-100);
  padding-top: 12px; margin-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px;
}

.verified-badge { color: #059669; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.gmaps-link { color: var(--brand-blue); font-weight: 800; display: flex; align-items: center; gap: 2px; }
.gmaps-link:hover { text-decoration: underline; }

/* --- FORM STYLES --- */
.form-section { background: #fff; border: 1px solid var(--brand-slate-200); border-radius: var(--radius-2xl); padding: 2rem; box-shadow: var(--shadow-sm); }

.form-label-custom {
  font-family: var(--font-main); font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--brand-slate-700); display: block; margin-bottom: 6px;
}

.form-control-custom {
  width: 100%; border: 1px solid var(--brand-slate-200);
  background: var(--brand-slate-50); border-radius: var(--radius-xl);
  padding: 10px 14px; font-size: 13px; color: var(--brand-slate-900);
  font-family: var(--font-body); outline: none;
  transition: border-color .15s, background .15s;
}

.form-control-custom:focus { border-color: var(--brand-blue); background: #fff; }

.form-control-custom.has-icon-left { padding-left: 38px; }

.input-icon-wrapper { position: relative; }
.input-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--brand-slate-400); font-size: 16px !important;
}

/* Service Type Buttons */
.service-type-group { display: grid; gap: 10px; }

@media (min-width: 576px) { .service-type-group { grid-template-columns: repeat(3, 1fr); } }

.service-type-btn {
  padding: 14px; border-radius: var(--radius-xl);
  border: 1px solid var(--brand-slate-200); background: #fff;
  cursor: pointer; text-align: left; transition: all .15s;
  display: flex; flex-direction: column;
}

.service-type-btn.active { border: 2px solid var(--brand-blue); background: rgba(37,99,235,.03); }
.service-type-btn:hover:not(.active) { background: var(--brand-slate-50); }
.service-type-btn.disabled { opacity: .55; cursor: not-allowed; background: var(--brand-slate-100); }

.service-type-btn .service-name { font-size: 11px; font-weight: 800; font-family: var(--font-main); color: var(--brand-slate-900); display: flex; align-items: center; gap: 6px; }
.service-type-btn .service-sub  { font-size: 9px; color: var(--brand-slate-400); margin-top: 4px; }
.service-type-btn .service-price { font-size: 12px; font-weight: 900; color: var(--brand-blue); font-family: var(--font-main); margin-top: 8px; }
.service-type-btn .price-unavail { font-size: 11px; color: var(--brand-slate-400); font-style: italic; margin-top: 8px; }

/* Duration stepper */
.duration-stepper { display: flex; align-items: center; border: 1px solid var(--brand-slate-200); border-radius: var(--radius-xl); overflow: hidden; background: var(--brand-slate-50); }
.duration-btn {
  padding: 10px 14px; background: transparent; border: none;
  cursor: pointer; font-weight: 900; font-size: 16px; color: var(--brand-slate-600);
  transition: background .12s;
}
.duration-btn:hover { background: var(--brand-slate-200); }
.duration-input {
  flex: 1; text-align: center; border: none; background: transparent;
  font-size: 14px; font-weight: 700; outline: none; padding: 10px 0;
  -moz-appearance: textfield;
}
.duration-input::-webkit-outer-spin-button,
.duration-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Invoice panel */
.invoice-panel {
  background: var(--brand-slate-50); border: 1px solid var(--brand-slate-200);
  border-radius: var(--radius-2xl); padding: 1.25rem;
}

.invoice-header {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--brand-slate-200); padding-bottom: 12px; margin-bottom: 16px;
}

.invoice-label { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-slate-400); }
.invoice-tag { background: rgba(37,99,235,.1); color: var(--brand-blue); font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 999px; }

.invoice-car-row { display: flex; gap: 12px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,.08); margin-bottom: 12px; }
.invoice-car-img { width: 80px; height: 56px; border-radius: var(--radius-md); overflow: hidden; background: #fff; border: 1px solid var(--brand-slate-100); flex-shrink: 0; }
.invoice-car-img img { width: 100%; height: 100%; object-fit: cover; }
.invoice-car-name { font-family: var(--font-main); font-size: 14px; font-weight: 800; color: var(--brand-slate-900); }
.invoice-car-sub  { font-size: 10px; color: var(--brand-slate-400); }

.line-item { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 8px; }
.line-item .li-label { color: var(--brand-slate-500); }
.line-item .li-value { font-weight: 700; color: var(--brand-slate-800); }
.line-item .li-value.free { color: #059669; }

.total-row {
  border-top: 2px dashed var(--brand-slate-300);
  padding-top: 12px; margin-top: 8px;
  display: flex; justify-content: space-between; align-items: center;
}

.total-label span:first-child { font-size: 11px; font-weight: 900; text-transform: uppercase; color: var(--brand-slate-700); display: block; }
.total-label span:last-child   { font-size: 9px; color: var(--brand-slate-400); text-transform: uppercase; }
.total-amount { font-family: var(--font-main); font-size: 1.6rem; font-weight: 900; color: var(--brand-blue); }

.guarantee-box {
  background: #fff; border: 1px solid var(--brand-slate-200);
  border-radius: var(--radius-xl); padding: 12px; margin-top: 14px; font-size: 10px; color: var(--brand-slate-500);
}

.guarantee-box .g-title { font-size: 11px; font-weight: 800; color: var(--brand-slate-700); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.guarantee-item { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.guarantee-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-blue); flex-shrink: 0; }

/* Agreement checkbox */
.agreement-box { background: var(--brand-slate-50); border: 1px solid var(--brand-slate-200); border-radius: var(--radius-xl); padding: 12px; margin-top: 14px; }
.agreement-box label { display: flex; gap: 10px; cursor: pointer; font-size: 12px; font-weight: 700; color: var(--brand-slate-700); }
.agreement-box input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--brand-blue); cursor: pointer; flex-shrink: 0; }

/* Submit button */
.btn-submit-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: var(--brand-blue); color: #fff;
  font-family: var(--font-main); font-size: 13px; font-weight: 900;
  padding: 14px; border-radius: var(--radius-xl); border: none; cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: background .15s, transform .1s;
  margin-top: 14px; text-decoration: none;
}

.btn-submit-wa:hover { background: var(--brand-blue-dark); color: #fff; transform: translateY(-1px); }
.btn-submit-wa svg { width: 20px; height: 20px; fill: currentColor; }

/* --- AIRPORT TRANSFER PAGE --- */
.airport-hero {
  background: linear-gradient(135deg, #0c4a6e 0%, #1e1b4b 100%);
  border-radius: var(--radius-3xl); color: #fff;
  padding: 4rem 3rem; position: relative; overflow: hidden;
}

.airport-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,.04); border-radius: 50%;
}

.airport-hero::after {
  content: ''; position: absolute; bottom: -60px; left: 60px;
  width: 240px; height: 240px;
  background: rgba(14,165,233,.08); border-radius: 50%; filter: blur(24px);
}

/* Tariff cards */
.tariff-card { background: #fff; border: 1px solid var(--brand-slate-200); border-radius: var(--radius-2xl); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.tariff-card .tc-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--brand-slate-100); padding-bottom: 12px; margin-bottom: 14px; }
.tariff-card .tc-title { font-size: 14px; font-weight: 900; color: var(--brand-slate-900); display: flex; align-items: center; gap: 8px; }
.tariff-card .tc-dist { font-size: 10px; font-weight: 700; color: var(--brand-slate-400); }

.tariff-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--brand-slate-50); border: 1px solid var(--brand-slate-100);
  border-radius: var(--radius-lg); padding: 10px 14px; margin-bottom: 8px;
}

.tariff-row.premium { background: rgba(79,70,229,.04); border-color: #c7d2fe; }
.tariff-class { font-size: 10px; font-weight: 800; text-transform: uppercase; }
.tariff-class.std { color: var(--brand-blue); }
.tariff-class.prem { color: #4f46e5; }
.tariff-vehicle { font-size: 9px; color: var(--brand-slate-400); }
.tariff-price { font-size: 13px; font-weight: 900; font-family: var(--font-main); }
.tariff-price.std  { color: var(--brand-slate-900); }
.tariff-price.prem { color: #4338ca; }

.btn-select-route {
  display: block; width: 100%; text-align: center;
  padding: 8px; font-family: var(--font-main); font-size: 11px; font-weight: 800;
  color: var(--brand-slate-700); background: var(--brand-slate-100); border: none;
  border-radius: var(--radius-md); cursor: pointer; text-decoration: none;
  transition: background .15s;
}
.btn-select-route:hover { background: var(--brand-slate-200); color: var(--brand-slate-900); }

/* Map container */
.map-container {
  border: 1px solid var(--brand-slate-200); border-radius: var(--radius-xl); overflow: hidden;
  height: 380px; position: relative; background: var(--brand-slate-100);
}

/* Rules section */
.rules-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .rules-grid { grid-template-columns: repeat(2, 1fr); } }

.rule-card { background: #fff; border: 1px solid var(--brand-slate-200); border-radius: var(--radius-2xl); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.rule-card .rule-icon { font-size: 20px !important; margin-right: 8px; }
.rule-card h4 { font-size: 13px; font-weight: 900; color: var(--brand-slate-900); margin: 0 0 8px; display: flex; align-items: center; }
.rule-card p  { font-size: 12px; color: var(--brand-slate-500); margin: 0; }

/* --- PROFILE PAGE --- */
.pillar-card { background: #fff; border: 1px solid var(--brand-slate-200); border-radius: var(--radius-xl); padding: 14px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; }
.pillar-num { width: 40px; height: 40px; background: var(--brand-blue-light); color: var(--brand-blue); font-family: var(--font-main); font-size: 18px; font-weight: 900; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar-title { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--brand-slate-800); margin: 0 0 4px; }
.pillar-desc  { font-size: 11px; color: var(--brand-slate-500); margin: 0; }

/* --- FAQ / ACCORDION --- */
.faq-item { background: #fff; border: 1px solid var(--brand-slate-200); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 10px; }
.faq-trigger {
  width: 100%; background: none; border: none; padding: 16px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-main); font-size: 13px; font-weight: 800;
  color: var(--brand-slate-900); text-align: left; cursor: pointer;
  transition: background .12s;
}
.faq-trigger:hover { background: var(--brand-slate-50); }
.faq-trigger[aria-expanded="true"] { background: var(--brand-slate-50); }
.faq-trigger .faq-icon { font-size: 20px !important; color: var(--brand-blue); flex-shrink: 0; margin-right: 10px; }
.faq-body { padding: 0 18px 16px; font-size: 13px; color: var(--brand-slate-600); line-height: 1.7; border-top: 1px solid var(--brand-slate-100); padding-top: 14px; }

/* --- TERMS PAGE --- */
.terms-section { font-size: 13px; color: var(--brand-slate-600); }
.terms-section h5 { font-family: var(--font-main); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-slate-800); margin-bottom: 10px; }
.terms-section ul { padding-left: 18px; }
.terms-section ul li { margin-bottom: 6px; line-height: 1.7; }
.terms-accept-box { background: var(--brand-slate-50); border: 1px solid var(--brand-slate-200); border-radius: var(--radius-xl); padding: 16px; text-align: center; font-size: 12px; font-weight: 600; color: var(--brand-slate-500); margin-top: 2rem; }

/* --- CONFIRMATION PAGE --- */
.confirm-hero {
  background: rgba(37,99,235,.04); border: 1px solid rgba(37,99,235,.12);
  border-radius: var(--radius-3xl); padding: 2rem; text-align: center;
}

.confirm-icon {
  width: 64px; height: 64px;
  background: #d1fae5; color: #059669;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 36px !important;
}

.booking-detail-card { background: #fff; border: 1px solid var(--brand-slate-200); border-radius: var(--radius-3xl); box-shadow: var(--shadow-md); overflow: hidden; }
.booking-detail-header { background: var(--brand-slate-900); padding: 1.25rem 1.75rem; color: #fff; }
.booking-detail-header .booking-id { font-family: var(--font-main); font-size: 1.1rem; font-weight: 900; }
.booking-detail-header .booking-id span { color: #fbbf24; font-family: monospace; }

.status-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3); color: #6ee7b7; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }

.detail-block { display: flex; gap: 12px; align-items: flex-start; padding: 12px; background: #fff; border: 1px solid var(--brand-slate-100); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
.detail-block .material-icons { color: var(--brand-blue); font-size: 20px !important; flex-shrink: 0; margin-top: 2px; }
.detail-block .d-label { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-slate-400); display: block; margin-bottom: 2px; }
.detail-block .d-value { font-size: 12px; font-weight: 800; color: var(--brand-slate-900); }

/* Cost summary */
.cost-summary { background: rgba(37,99,235,.04); border: 1px solid rgba(37,99,235,.12); border-radius: var(--radius-2xl); padding: 1.25rem; }
.cost-line { display: flex; justify-content: space-between; font-size: 12px; color: var(--brand-slate-600); margin-bottom: 8px; }
.cost-line .c-val { font-weight: 700; color: var(--brand-slate-800); }
.cost-total { border-top: 1px solid var(--brand-slate-200); padding-top: 14px; display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.cost-total .ct-label h6 { font-size: 11px; font-weight: 900; text-transform: uppercase; color: var(--brand-slate-700); margin: 0; }
.cost-total .ct-label p  { font-size: 9px; color: var(--brand-slate-400); margin: 0; }
.cost-total .ct-amount { font-family: var(--font-main); font-size: 1.75rem; font-weight: 900; color: var(--brand-blue); }

/* --- FILTER BUTTONS --- */
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
  padding: 8px 18px; font-family: var(--font-main); font-size: 11px; font-weight: 800;
  border-radius: var(--radius-xl); border: 1px solid var(--brand-slate-200);
  background: #fff; color: var(--brand-slate-600); cursor: pointer; transition: all .15s;
}
.filter-btn.active { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); box-shadow: var(--shadow-blue); }
.filter-btn:hover:not(.active) { background: var(--brand-slate-50); }

/* --- FOOTER --- */
.site-footer { border-top: 1px solid var(--brand-slate-200); background: #fff; padding: 4rem 0 2rem; }
.footer-brand h4 { font-family: var(--font-main); font-size: 16px; font-weight: 900; color: var(--brand-slate-900); margin: 12px 0 8px; }
.footer-brand h4 span { color: var(--brand-blue); }
.footer-brand p { font-size: 12px; color: var(--brand-slate-400); line-height: 1.7; }
.footer-col-title { font-family: var(--font-main); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; color: var(--brand-slate-900); margin-bottom: 1rem; display: block; }
.footer-nav-list { list-style: none; padding: 0; margin: 0; }
.footer-nav-list li { margin-bottom: 8px; }
.footer-nav-list a { font-size: 12px; font-weight: 600; color: var(--brand-slate-500); text-decoration: none; transition: color .12s; }
.footer-nav-list a:hover { color: var(--brand-blue); }
.footer-area-list { list-style: none; padding: 0; margin: 0; }
.footer-area-list li { font-size: 12px; color: var(--brand-slate-400); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-area-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-blue); flex-shrink: 0; }
.footer-contact { font-size: 12px; color: var(--brand-slate-400); line-height: 1.7; }
.footer-contact strong { color: var(--brand-slate-800); }
.footer-bottom { border-top: 1px solid var(--brand-slate-100); margin-top: 3rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; font-size: 11px; color: var(--brand-slate-400); }
.footer-bottom .secure-badge { color: var(--brand-blue); font-weight: 700; display: flex; align-items: center; gap: 4px; }

/* --- UTILITY --- */
.text-blue   { color: var(--brand-blue) !important; }
.text-emerald{ color: var(--brand-emerald) !important; }
.bg-blue-light { background: var(--brand-blue-light); }
.rounded-pill { border-radius: 999px; }
.font-main { font-family: var(--font-main); }

/* Responsive tweaks */
@media (max-width: 767px) {
  .hero-section { padding: 2.5rem 1.5rem; }
  .why-section, .steps-section { padding: 2rem 1.25rem; }
  .airport-hero { padding: 2rem 1.5rem; }
  .form-section { padding: 1.25rem; }
  .booking-detail-header { padding: 1rem 1.25rem; }
}
