/* Wild Gaze Safaris – Car Rental Page */

/* ── Page header (shared pattern) ─────────────────────────── */
.wg-page-header {
  position: relative;
  width: 100%;
  height: clamp(340px, 48vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h, 64px);
}

.wg-ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  z-index: 0;
}

.wg-ph-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(245, 208, 96, 0.2) 0%,
      rgba(232, 176, 32, 0.1) 30%,
      rgba(184, 148, 26, 0.06) 50%,
      rgba(26, 20, 8, 0.22) 78%,
      rgba(26, 20, 8, 0.42) 100%
    ),
    radial-gradient(ellipse 100% 75% at 50% 28%, rgba(245, 208, 96, 0.28) 0%, transparent 72%);
}

/* Override global dark wg-ph-bg overlay from wg-components.css */
#wgCarRentalHero .wg-ph-bg::after {
  background:
    linear-gradient(
      to bottom,
      rgba(245, 208, 96, 0.22) 0%,
      rgba(232, 176, 32, 0.12) 32%,
      rgba(184, 148, 26, 0.05) 55%,
      rgba(26, 20, 8, 0.18) 80%,
      rgba(26, 20, 8, 0.38) 100%
    ),
    radial-gradient(ellipse 100% 80% at 50% 25%, rgba(245, 208, 96, 0.32) 0%, transparent 70%) !important;
}

.wg-page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-lt) 50%, var(--gold) 70%, transparent 100%);
  z-index: 3;
}

.wg-ph-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px) clamp(32px, 5vw, 48px);
}

.wg-ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(10px);
  animation: wg-cr-up 0.6s 0.15s forwards ease;
}

.wg-ph-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.wg-ph-breadcrumb a:hover { color: var(--gold-lt); }
.wg-ph-breadcrumb .sep { color: rgba(184, 148, 26, 0.5); font-size: 0.5rem; }
.wg-ph-breadcrumb .current { color: var(--gold-lt); }

.wg-ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-brand);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(12px);
  animation: wg-cr-up 0.65s 0.28s forwards ease;
}

.wg-ph-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
  opacity: 0.7;
}

.wg-ph-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin-bottom: 0;
  text-shadow: 0 2px 18px rgba(26, 20, 8, 0.45);
  opacity: 0;
  transform: translateY(14px);
  animation: wg-cr-up 0.7s 0.42s forwards ease;
}

.wg-ph-title .gold-word { color: var(--gold-lt); }

.wg-ph-rule {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale), transparent);
  margin: 14px 0 16px;
  animation: wg-cr-expand 0.7s 0.88s forwards ease;
}

.wg-ph-sub {
  font-family: var(--font-body);
  font-size: clamp(0.84rem, 1.5vw, 0.92rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  line-height: 1.65;
  max-width: 560px;
  text-shadow: 0 1px 12px rgba(26, 20, 8, 0.4);
  opacity: 0;
  transform: translateY(10px);
  animation: wg-cr-up 0.65s 0.7s forwards ease;
}

.wg-ph-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  animation: wg-cr-up 0.6s 0.88s forwards ease;
}

.wg-ph-badge {
  position: absolute;
  top: clamp(20px, 4vw, 36px);
  right: clamp(20px, 4vw, 40px);
  z-index: 2;
  opacity: 0;
  animation: wg-cr-up 0.7s 0.5s forwards ease;
}

.wg-ph-badge-box {
  background: rgba(26, 20, 8, 0.88);
  border: 1px solid rgba(184, 148, 26, 0.35);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}

.wg-ph-badge-box i { color: var(--gold-lt); font-size: 1rem; }
.wg-ph-badge-val {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.06em;
  display: block;
}
.wg-ph-badge-lbl {
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

@keyframes wg-cr-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wg-cr-expand {
  to { width: 80px; }
}

/* ── Main page shell ──────────────────────────────────────── */
.wg-rental-page {
  background: var(--cream);
  color: var(--text-body);
}

.wg-rental-page img {
  image-rendering: auto;
}

.wg-rental-page .wg-rental-perk-media img,
.wg-rental-page .wg-rental-intro-img,
.wg-rental-page .wg-rental-intro-accent img {
  filter: none !important;
}

.wg-rental-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 40px);
}

/* ── Section headers ──────────────────────────────────────── */
.wg-rental-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-brand);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.wg-rental-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
  opacity: 0.7;
}

.wg-rental-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 12px;
}

.wg-rental-heading em {
  font-style: italic;
  color: var(--gold);
}

.wg-rental-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale), transparent);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.wg-rental-lead {
  font-size: clamp(0.88rem, 1.4vw, 0.95rem);
  line-height: 1.8;
  color: var(--text-light);
  max-width: 640px;
}

/* ── Intro layout ─────────────────────────────────────────── */
.wg-rental-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 80px);
}

.wg-rental-intro-visual {
  position: relative;
}

.wg-rental-intro-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: var(--wg-shadow-lg);
  display: block;
  filter: none;
}

.wg-rental-intro-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 45%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: var(--wg-shadow-md);
}

.wg-rental-intro-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.wg-rental-intro-body p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 16px;
}

.wg-rental-intro-body p:last-of-type { margin-bottom: 24px; }

.wg-rental-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Light-surface CTAs – readable contrast (override glass-on-dark global styles) */
.wg-rental-intro-actions .wg-ph-cta {
  color: #1a1408 !important;
  background: linear-gradient(135deg, #f0c040 0%, #d4a017 48%, #b8860b 100%) !important;
  border: 1px solid rgba(184, 148, 26, 0.55) !important;
  box-shadow: 0 4px 18px rgba(184, 148, 26, 0.28) !important;
  text-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.wg-rental-intro-actions .wg-ph-cta:hover {
  color: #1a1408 !important;
  background: linear-gradient(135deg, #f5d060 0%, #e8b020 48%, #c9a012 100%) !important;
  box-shadow: 0 10px 28px rgba(184, 148, 26, 0.38) !important;
}

.wg-rental-intro-actions .wg-rental-cta-outline {
  color: #1a1408 !important;
  background: #fff !important;
  border: 1.5px solid rgba(58, 50, 32, 0.28) !important;
  box-shadow: 0 2px 12px rgba(26, 20, 8, 0.08) !important;
  text-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.wg-rental-intro-actions .wg-rental-cta-outline:hover {
  color: #1a1408 !important;
  background: #fdf8ef !important;
  border-color: rgba(184, 148, 26, 0.55) !important;
  box-shadow: 0 8px 22px rgba(26, 20, 8, 0.12) !important;
}

.wg-rental-intro-actions .wg-ph-cta i,
.wg-rental-intro-actions .wg-rental-cta-outline i {
  color: inherit !important;
}

/* ── Premium perk cards (image + icon) ───────────────────── */
.wg-rental-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 20px);
  margin-bottom: clamp(48px, 7vw, 72px);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.wg-rental-perk {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(26, 20, 8, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.25s ease;
}

.wg-rental-perk:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(184, 148, 26, 0.4) !important;
  box-shadow: 0 12px 28px rgba(26, 20, 8, 0.1) !important;
}

.wg-rental-perk-media {
  position: relative;
  height: 132px;
  overflow: hidden;
  background: linear-gradient(165deg, #f8f3e8 0%, #ebe4d4 100%);
}

.wg-rental-perk-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px 12px;
  transition: transform 0.35s ease;
  filter: none;
}

.wg-rental-perk:hover .wg-rental-perk-media img {
  transform: scale(1.02);
  filter: none;
}

.wg-rental-perk-media.is-portrait img {
  object-fit: cover;
  object-position: top center;
  padding: 0;
}

.wg-rental-perk-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(184, 148, 26, 0.42) 0%,
    rgba(232, 176, 32, 0.12) 45%,
    transparent 100%
  );
  pointer-events: none;
}

.wg-rental-perk-icon {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(184, 148, 26, 0.92);
  border: 1px solid rgba(255, 236, 180, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff8e6;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(184, 148, 26, 0.35);
}

.wg-rental-perk-body {
  padding: 14px 16px 16px;
  position: relative;
}

.wg-rental-perk-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale), transparent);
}

.wg-rental-perk-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.wg-rental-perk-text {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ── Fleet section ────────────────────────────────────────── */
.wg-rental-fleet {
  background: var(--section-bg);
  position: relative;
  padding: clamp(40px, 5vw, 56px) 0 clamp(56px, 8vw, 80px);
}

.wg-rental-fleet-top {
  padding-top: clamp(32px, 4vw, 44px);
  margin-top: 0;
}

.wg-rental-fleet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 148, 26, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.wg-rental-fleet-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.wg-rental-fleet-header .wg-rental-lead {
  margin: 0 auto;
}

.wg-rental-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.wg-rental-filter {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.wg-rental-filter:hover {
  border-color: rgba(184, 148, 26, 0.45);
  color: var(--dark);
}

.wg-rental-filter.is-active {
  background: var(--dark);
  border-color: var(--gold);
  color: var(--gold-lt);
  box-shadow: 0 4px 16px rgba(26, 20, 8, 0.2);
}

.wg-rental-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
}

/* ── Car card ─────────────────────────────────────────────── */
.wg-rental-car-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 20px rgba(26, 20, 8, 0.08),
    0 1px 3px rgba(26, 20, 8, 0.04);
  transition:
    transform 0.38s cubic-bezier(0.22, 0.68, 0, 1.05),
    box-shadow 0.38s ease,
    border-color 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.wg-rental-car-card.is-hidden {
  display: none;
}

.wg-rental-car-card:hover {
  transform: translateY(-10px);
  border-color: rgba(184, 148, 26, 0.45);
  box-shadow:
    0 24px 56px rgba(26, 20, 8, 0.16),
    0 8px 20px rgba(184, 148, 26, 0.1),
    0 2px 6px rgba(26, 20, 8, 0.06);
}

.wg-rental-car-card.is-featured {
  border-color: rgba(184, 148, 26, 0.35);
  box-shadow:
    0 8px 32px rgba(26, 20, 8, 0.12),
    0 0 0 1px rgba(184, 148, 26, 0.15);
}

.wg-rental-car-visual {
  position: relative;
  background: linear-gradient(165deg, #f5f0e4 0%, #ebe4d4 45%, #e0d8c8 100%);
  padding: clamp(20px, 3vw, 28px) clamp(16px, 2.5vw, 24px) clamp(12px, 2vw, 16px);
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.wg-rental-car-visual::before {
  content: '';
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(26, 20, 8, 0.22) 0%, transparent 72%);
  filter: blur(6px);
  transition: all 0.38s ease;
}

.wg-rental-car-card:hover .wg-rental-car-visual::before {
  width: 78%;
  height: 16px;
  background: radial-gradient(ellipse, rgba(26, 20, 8, 0.32) 0%, transparent 72%);
}

.wg-rental-car-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184, 148, 26, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.wg-rental-car-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 24px rgba(26, 20, 8, 0.28)) drop-shadow(0 4px 8px rgba(26, 20, 8, 0.12));
  transition: transform 0.45s cubic-bezier(0.22, 0.68, 0, 1.05), filter 0.38s ease;
}

.wg-rental-car-card:hover .wg-rental-car-img {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 20px 36px rgba(26, 20, 8, 0.35)) drop-shadow(0 6px 12px rgba(26, 20, 8, 0.15));
}

.wg-rental-car-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 50px;
  background: var(--dark);
  color: var(--gold-lt);
  border: 1px solid rgba(184, 148, 26, 0.35);
}

.wg-rental-car-badge.badge-popular {
  background: linear-gradient(135deg, var(--orange), var(--rust));
  color: #fff;
  border: none;
}

.wg-rental-car-body {
  padding: clamp(18px, 2.5vw, 22px) clamp(18px, 2.5vw, 24px) clamp(20px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.wg-rental-car-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.wg-rental-car-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.wg-rental-car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wg-rental-car-spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-light);
  background: var(--section-bg);
  border: 1px solid var(--card-border);
  padding: 5px 10px;
  border-radius: 50px;
}

.wg-rental-car-spec i {
  color: var(--gold);
  font-size: 0.62rem;
}

.wg-rental-car-footer {
  padding-top: 12px;
  border-top: 1px solid var(--card-border);
  margin-top: 4px;
}

.wg-rental-car-btn-full {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.72rem;
}

.wg-rental-car-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--dark);
  color: var(--gold-lt);
  border: 1px solid rgba(184, 148, 26, 0.3);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.28s ease;
}

.wg-rental-car-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  gap: 9px;
}

/* ── How it works ─────────────────────────────────────────── */
.wg-rental-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(56px, 8vw, 80px);
  counter-reset: rental-step;
}

.wg-rental-step {
  text-align: center;
  position: relative;
  counter-increment: rental-step;
}

.wg-rental-step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-lt);
  box-shadow: 0 6px 20px rgba(26, 20, 8, 0.15);
}

.wg-rental-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.wg-rental-step-text {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* ── Premium vehicle booking ──────────────────────────────── */
.wg-rental-book {
  padding: clamp(48px, 7vw, 96px) 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(184, 148, 26, 0.12), transparent 55%),
    linear-gradient(165deg, #120e08 0%, #1a1408 48%, #0c0a06 100%);
}

.wg-rental-book-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.2fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
}

.wg-rental-book-side {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(184, 148, 26, 0.28);
  background:
    linear-gradient(160deg, rgba(26, 20, 8, 0.2), rgba(12, 10, 6, 0.55)),
    url('../images/rental%20cars.jpg') center / cover no-repeat;
  min-height: 100%;
}

.wg-rental-book-side-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(8, 6, 3, 0.92) 0%, rgba(8, 6, 3, 0.55) 48%, rgba(8, 6, 3, 0.2) 100%);
  color: #fff;
}

.wg-rental-book-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 14px;
}

.wg-rental-book-side-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 12px;
}

.wg-rental-book-side-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 22px;
  max-width: 36ch;
}

.wg-rental-book-perks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.wg-rental-book-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
}

.wg-rental-book-perks i {
  color: var(--gold-lt);
  width: 18px;
  text-align: center;
}

.wg-rental-book-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.28s ease, box-shadow 0.28s ease;
}

.wg-rental-book-wa:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(37, 211, 102, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.wg-rental-book-card {
  background: rgba(255, 252, 246, 0.98);
  border: 1px solid rgba(184, 148, 26, 0.2);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.wg-rental-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.wg-rental-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.wg-rental-form-row .wg-rental-field {
  margin-bottom: 0;
}

.wg-rental-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a3220;
}

.wg-rental-field .req {
  color: #c0390a;
}

.wg-rental-field input,
.wg-rental-field select,
.wg-rental-field textarea {
  width: 100%;
  border: 1px solid rgba(58, 50, 32, 0.14);
  border-radius: 12px;
  background: #fff;
  color: #1a1408;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.wg-rental-field textarea {
  resize: vertical;
  min-height: 96px;
}

.wg-rental-field input:focus,
.wg-rental-field select:focus,
.wg-rental-field textarea:focus {
  border-color: rgba(184, 148, 26, 0.55);
  box-shadow: 0 0 0 4px rgba(184, 148, 26, 0.12);
  transform: translateY(-1px);
}

.wg-rental-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  margin-top: 4px;
  border: 1px solid rgba(232, 176, 32, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 192, 64, 0.95), rgba(184, 148, 26, 0.95));
  color: #1a1408;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    gap 0.3s ease;
}

.wg-rental-submit:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 36px rgba(184, 148, 26, 0.35);
  gap: 14px;
}

.wg-rental-submit i {
  transition: transform 0.35s ease;
}

.wg-rental-submit:hover i {
  transform: translateX(4px) rotate(-8deg);
}

.wg-rental-form-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: #6e5e42;
}

.wg-rental-form-note.is-success {
  color: #1f7a3f;
  font-weight: 600;
}

.wg-rental-form-note.is-error {
  color: #b42318;
  font-weight: 600;
}

.wg-rental-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 16px 34px;
  min-height: 52px;
  border-radius: 50px;
  border: 1px solid rgba(184, 148, 26, 0.45);
  color: var(--gold-lt);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.28s ease, box-shadow 0.28s ease;
}

.wg-rental-cta-outline:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(184, 148, 26, 0.16);
  border-color: var(--gold-lt);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Scroll reveal handled by wg-motion.js (.wg-sr / .is-visible) */

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wg-rental-fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .wg-rental-perks { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
  .wg-rental-book-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wg-ph-badge { display: none; }
  .wg-rental-intro { grid-template-columns: 1fr; }
  .wg-rental-intro-accent { display: none; }
  .wg-rental-intro-visual { order: -1; }
  .wg-rental-steps { grid-template-columns: 1fr; gap: 32px; }
  .wg-rental-perks { grid-template-columns: 1fr; }
  .wg-rental-form-row { grid-template-columns: 1fr; }
  .wg-rental-book-side { min-height: 280px; }
}

@media (max-width: 600px) {
  .wg-rental-fleet-grid { grid-template-columns: 1fr; }
  .wg-rental-filters { gap: 8px; }
  .wg-rental-filter { padding: 8px 14px; font-size: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .wg-rental-car-card:hover .wg-rental-car-img { transform: none; }
  .wg-rental-perk:hover .wg-rental-perk-media img { transform: none; }
}

@import url('wg-media-fidelity.css');
