/* ==========================================================================
   PAS TRAVEL - Modern Luxury Tour & Rent Car Landing Page
   PT Pasaribu Abadi Sentosa · Batam, Kepulauan Riau
   ========================================================================== */

:root {
  /* Color Palette */
  --ink: #0f172a;
  --ink-secondary: #334155;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --body-bg: #f8fafc;
  --card-bg: #ffffff;
  --line: #e2e8f0;
  --line-light: #f1f5f9;

  /* Accent Colors Aligned with PAS TRAVEL Logo */
  --gold-primary: #d97706;
  --gold-vibrant: #f59e0b;
  --gold-deep: #b45309;
  --gold-dark: #92400e;
  --gold-light: #fffbeb;
  --gold-border: rgba(217, 119, 6, 0.28);
  --gold-glow: rgba(217, 119, 6, 0.16);

  --navy-primary: #0b1536;
  --navy-deep: #060d24;
  --navy-light: #162454;
  --navy-surface: #0f1c44;

  --blue-accent: #0284c7;
  --blue-light: #f0f9ff;
  --blue-border: rgba(2, 132, 199, 0.25);

  /* Primary Brand Theme Aliases (Gold & Royal Navy) */
  --teal-primary: #d97706;
  --teal-deep: #b45309;
  --teal-dark: #92400e;
  --teal-light: #fffbeb;
  --teal-border: rgba(217, 119, 6, 0.28);
  --teal-glow: rgba(217, 119, 6, 0.16);

  --gold: #d97706;
  --gold-dark: #b45309;
  --gold-light: #fffbeb;
  --gold-border: rgba(217, 119, 6, 0.25);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 16px 32px -4px rgba(15, 23, 42, 0.08), 0 6px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 22px 40px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(13, 148, 136, 0.06);

  /* Borders & Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Layout */
  --container: min(1200px, calc(100% - 40px));
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background-color: var(--body-bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(13, 148, 136, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(217, 119, 6, 0.025) 0%, transparent 40%);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.hero-image-card picture,
.card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 100px 0;
}

/* Typography Helpers */
h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.35rem, 4.2vw, 3.85rem);
  line-height: 1.12;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.gradient-text {
  background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  background: var(--teal-light);
  border: 1px solid var(--teal-border);
  color: var(--teal-deep);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.25);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #a7f3d0;
}
.badge-dark .badge-dot {
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-fast);
}

.nav-wrap {
  min-height: 104px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.16));
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-monogram {
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

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

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-secondary);
}

.nav a:not(.nav-cta):hover {
  color: var(--teal-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--teal-light);
  border: 1px solid var(--teal-border);
  color: var(--teal-deep);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--teal-deep);
  color: #fff;
  border-color: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}

.icon-inline {
  width: 16px;
  height: 16px;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 11px 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn.primary {
  background: linear-gradient(135deg, #0b1536 0%, #162454 100%);
  color: #fff;
  box-shadow: 0 8px 20px -3px rgba(11, 21, 54, 0.4);
  border: 1px solid rgba(217, 119, 6, 0.45);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -2px rgba(217, 119, 6, 0.4);
}

.btn.secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn.secondary:hover {
  border-color: var(--teal-primary);
  color: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn.primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-car-icon {
  width: 18px;
  height: 18px;
  color: var(--teal-deep);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding-top: 60px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: center;
}

.hero-kicker-wrap {
  margin-bottom: 18px;
}

.hero-text {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-text strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 36px 0 42px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stat-item span {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.35;
}

.star-gold {
  color: var(--gold);
  font-size: 1.1rem;
}

/* Hero Visual Media Card */
.hero-media {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #e2e8f0;
}

.hero-image-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

/* Floating Glass Badges on Hero Image */
.hero-glass-top {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.rating-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.rating-info strong {
  font-size: 0.92rem;
  color: var(--ink);
}

.rating-info small {
  font-size: 0.72rem;
  color: var(--muted);
}

.hero-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
}

.note-tag {
  font-size: 0.74rem;
  color: var(--teal-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-note strong {
  font-size: 1.15rem;
  color: var(--ink);
  margin: 3px 0 2px;
  letter-spacing: -0.01em;
}

.hero-note small {
  color: var(--muted);
  font-size: 0.84rem;
}

/* ==========================================================================
   About / Corporate Profile Section
   ========================================================================== */
.about {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: stretch;
}

.about-title {
  margin-top: 10px;
  margin-bottom: 16px;
  color: var(--navy-primary);
  font-size: clamp(1.85rem, 2.8vw, 2.4rem);
}

.about-lead {
  font-size: 1.05rem;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* 4 Pillars Grid */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}

.pillar-card {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
  box-shadow: 0 10px 20px -4px rgba(217, 119, 6, 0.12);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.pillar-icon.icon-legal { background: rgba(217, 119, 6, 0.12); color: #b45309; }
.pillar-icon.icon-fleet { background: rgba(11, 21, 54, 0.1); color: #0b1536; }
.pillar-icon.icon-bank { background: rgba(16, 185, 129, 0.12); color: #059669; }
.pillar-icon.icon-guide { background: rgba(2, 132, 199, 0.12); color: #0284c7; }

.pillar-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.pillar-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid rgba(217, 119, 6, 0.25);
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.pillar-text p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Trust Metrics */
.about-trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.a-metric strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
}

.a-metric span {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.35;
  display: block;
}

/* Corporate Credential Card (Right Column) */
.about-corporate-card {
  height: 100%;
  display: flex;
}

.corp-card-inner {
  width: 100%;
  background: linear-gradient(145deg, #070d22 0%, #0b1536 50%, #13214d 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 20px 45px -10px rgba(7, 13, 34, 0.45), 0 0 30px rgba(217, 119, 6, 0.1);
  position: relative;
  overflow: hidden;
}

.corp-card-inner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.corp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.corp-logo-box {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
}

.corp-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.corp-seal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-full);
  color: #fcd34d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.corp-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.corp-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.corp-legal-item {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-md);
}

.cl-label {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.cl-val {
  display: block;
  font-size: 0.95rem;
  color: #fcd34d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.02em;
}

/* Official Bank Account Protection Box */
.corp-bank-protection {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cbp-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cbp-shield {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cbp-kicker {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fcd34d;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cbp-title {
  margin: 0;
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 700;
}

.cbp-account-box {
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
}

.cbp-acc-label {
  display: block;
  font-size: 0.68rem;
  color: #94a3b8;
  margin-bottom: 2px;
}

.cbp-acc-target strong {
  display: block;
  font-size: 1rem;
  color: #38bdf8;
  letter-spacing: 0.02em;
}

.cbp-notice-text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.74rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.cbp-notice-text svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #fbbf24;
}

/* Contacts Bar inside Card */
.corp-contacts-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cc-btn {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cc-btn.highlight {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
}

.cc-btn.highlight:hover {
  background: rgba(37, 211, 102, 0.22);
  transform: translateY(-2px);
}

.cc-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.cc-label {
  font-size: 0.66rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.cc-btn strong {
  font-size: 0.82rem;
  color: #ffffff;
}

.cc-btn.highlight strong {
  color: #4ade80;
}

.corp-location-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #94a3b8;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Tour Packages Section
   ========================================================================== */
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.tour-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.tour-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-border);
  box-shadow: var(--shadow-hover);
}

.card-media {
  position: relative;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .card-media img {
  transform: scale(1.05);
}

.duration-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.duration-badge.badge-accent {
  background: rgba(13, 148, 136, 0.88);
  border-color: rgba(255, 255, 255, 0.3);
}

.duration-badge.badge-gold {
  background: rgba(217, 119, 6, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.card-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  font-size: 1.38rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.card-body p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-perks {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 18px;
}

.card-perks li {
  font-size: 0.85rem;
  color: var(--ink-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.card-perks li span {
  color: var(--teal-primary);
  font-weight: 800;
  font-size: 0.9rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.price-val small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.price-note {
  font-size: 0.76rem;
  color: var(--muted);
}

.btn-card {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--body-bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.btn-card:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
}

/* Featured Wide Card */
.tour-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.tour-card.wide .card-media {
  height: 100%;
}

.tour-card.wide .card-media img {
  height: 100%;
  min-height: 380px;
}

.tour-card.wide .card-body {
  padding: 36px 38px;
  justify-content: center;
}

.package-highlight-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.tour-card.wide h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.wide-perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 18px 0 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.wide-perk {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wide-perk span {
  color: var(--teal-primary);
  font-weight: 800;
}

/* ==========================================================================
   Rent Car Section (Showroom Style)
   ========================================================================== */
.rentcar {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vehicle-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-border);
  box-shadow: var(--shadow-hover);
}

/* Showroom Stage / Podium */
.vehicle-stage {
  position: relative;
  height: 180px;
  background: radial-gradient(circle at 50% 65%, #f8fafc 0%, #edf2f7 100%);
  border-bottom: 1px solid var(--line-light);
  padding: 14px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.vehicle-category {
  position: absolute;
  top: 12px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.vehicle-category.badge-gold {
  background: var(--gold-light);
  border-color: var(--gold-border);
  color: var(--gold-dark);
}

.vehicle-category.badge-accent {
  background: var(--teal-light);
  border-color: var(--teal-border);
  color: var(--teal-deep);
}

.vehicle-photo-wrap {
  width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.vehicle-photo-wrap img {
  max-width: 92%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 4px 6px rgba(15, 23, 42, 0.06));
}

.vehicle-card:hover .vehicle-photo-wrap img {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 10px 14px rgba(15, 23, 42, 0.12));
}

.vehicle-podium-shadow {
  width: 78%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
  border-radius: 50%;
  margin-top: -6px;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}

.vehicle-card:hover .vehicle-podium-shadow {
  width: 72%;
  opacity: 0.7;
}

/* Vehicle Content */
.vehicle-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-title-wrap {
  margin-bottom: 14px;
}

.vehicle-info h3 {
  font-size: 1.18rem;
  color: var(--ink);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.vehicle-model-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  flex-grow: 1;
}

.vehicle-specs span {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  background: var(--body-bg);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  font-size: 0.74rem;
  color: var(--ink-secondary);
  font-weight: 600;
}

.vehicle-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
}

.v-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.v-price strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
}

.v-price small {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.btn-vehicle-cta {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: var(--teal-light);
  border: 1px solid var(--teal-border);
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.btn-vehicle-cta:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.25);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-box {
  background: linear-gradient(145deg, #091420 0%, #0f1d2e 60%, #13273d 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-box::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-main h2 {
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 14px;
}

.contact-desc {
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-grid-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.c-info-card {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.c-info-card.full-width {
  grid-column: 1 / -1;
}

.c-info-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.c-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.c-info-icon.map-icon { background: rgba(239, 68, 68, 0.18); color: #f87171; }
.c-info-icon.wa-icon { background: rgba(37, 211, 102, 0.18); color: #25d366; }
.c-info-icon.phone-icon { background: rgba(245, 158, 11, 0.18); color: #fbbf24; }
.c-info-icon.email-icon { background: rgba(56, 189, 248, 0.18); color: #38bdf8; }

.c-info-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.c-info-text span.c-label {
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 2px;
}

.c-info-text strong {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.c-info-text span.c-detail {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 3px;
  line-height: 1.4;
}

.c-info-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #34d399;
  transition: transform var(--transition-fast);
}

.c-info-card:hover .c-info-action {
  transform: translateX(3px);
}

.contact-legal-box {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
}

.legal-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fcd34d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.legal-sku-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 3px 10px;
  border-radius: 6px;
  margin: 4px 0 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.legal-bank-notice {
  font-size: 0.78rem;
  color: #38bdf8;
  margin-bottom: 8px;
}

.contact-legal-box strong {
  display: block;
  font-size: 0.95rem;
  color: #f1f5f9;
  margin-bottom: 4px;
}

.contact-legal-box p {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.5;
}

.map-container {
  display: flex;
  height: 100%;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  background: #1e293b;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.12));
  flex-shrink: 0;
}

.footer-brand .brand-monogram {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

.footer-brand strong {
  color: var(--ink);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.back-to-top:hover {
  color: var(--teal-deep);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  z-index: 40;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  display: block;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all var(--transition-fast);
}

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

/* ==========================================================================
   Scroll Reveal Animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1040px) {
  .hero-grid,
  .about-grid,
  .contact-box,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image-card img {
    height: 480px;
  }

  .map-frame {
    min-height: 380px;
    height: 380px;
  }

  .map-frame iframe {
    min-height: 380px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    width: 260px;
    gap: 16px;
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-wrap {
    min-height: 90px;
  }

  .brand-logo {
    width: 74px;
    height: 74px;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .footer-logo {
    width: 56px;
    height: 56px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .tour-card.wide {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }

  .tour-card.wide .card-media img {
    min-height: 260px;
    height: 260px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .contact-box {
    padding: 30px 18px;
    gap: 24px;
  }

  .contact-grid-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .map-frame {
    min-height: 320px;
    height: 320px;
  }

  .map-frame iframe {
    min-height: 320px;
  }

  .contact-badges {
    grid-template-columns: 1fr;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-trust-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .corp-card-inner {
    padding: 24px 18px;
    gap: 16px;
  }

  .corp-contacts-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .section {
    padding: 70px 0;
  }

  .contact-box {
    padding: 24px 14px;
    gap: 20px;
  }

  .c-info-card {
    padding: 14px 14px;
  }

  .map-frame {
    min-height: 280px;
    height: 280px;
    border-radius: var(--radius-lg);
  }

  .map-frame iframe {
    min-height: 280px;
  }

  .hero-image-card img {
    height: 400px;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-glass-top {
    top: 14px;
    right: 14px;
    padding: 8px 12px;
  }

  .hero-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}
