:root {
  --color-bg: #f8f6ef;
  --color-bg-rgb: 248, 246, 239;
  --color-surface: #ffffff;
  --color-surface-rgb: 255, 255, 255;
  --color-surface-soft: #f1eadc;
  --color-surface-soft-rgb: 241, 234, 220;
  --color-text: #11100d;
  --color-text-rgb: 17, 16, 13;
  --color-muted: #706856;
  --color-border: #e2d7bf;
  --color-border-rgb: 226, 215, 191;
  --color-accent: #C79E3B;
  --color-accent-rgb: 199, 158, 59;
  --color-accent-dark: #6f5520;
  --color-accent-dark-rgb: 111, 85, 32;
  --shadow-soft: 0 24px 70px rgba(var(--color-text-rgb), 0.08);
  --shadow-panel: 0 18px 60px rgba(var(--color-text-rgb), 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --control-bg: rgba(255, 255, 255, 0.92);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: 0;
  /* Scroll restore sırasında hero flash'ı önle: JS hazır olana kadar gizli */
  visibility: hidden;
}

body.js-ready {
  visibility: visible;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 78;
  background: rgba(2, 5, 6, 0.52);
  pointer-events: auto;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 51%,
    calc(100% - 11px) 51%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

select option {
  background: #fbfaf7;
  color: var(--color-text);
}

input[type="date"] {
  color-scheme: light;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.62;
  filter: sepia(12%) saturate(340%) hue-rotate(84deg);
}

input[type="date"]:hover::-webkit-calendar-picker-indicator,
input[type="date"]:focus::-webkit-calendar-picker-indicator {
  opacity: 0.92;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  background: var(--color-accent-dark);
  color: #fff;
}

.container {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 48px, 1520px);
  margin-inline: auto;
}

.site-header.no-transition,
.no-transition .site-header {
  transition: none !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: rgba(var(--color-bg-rgb), 0.7);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(140%);
  transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.site-header.is-scrolled,
body.is-menu-open .site-header {
  background: rgba(var(--color-bg-rgb), 0.92);
  border-bottom-color: rgba(var(--color-border-rgb), 0.7);
  box-shadow: 0 18px 60px rgba(var(--color-text-rgb), 0.08);
}

/* Anasayfada en üstteyken: tamamen şeffaf, hero net görünür */
.site-header.is-home:not(.is-scrolled):not(.is-menu-open) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

body:not(.is-menu-open) .site-header.is-home:not(.is-scrolled) .brand img {
  filter: brightness(0) invert(1);
}

body:not(.is-menu-open) .site-header.is-home:not(.is-scrolled) .desktop-nav,
body:not(.is-menu-open) .site-header.is-home:not(.is-scrolled) .desktop-nav a,
body:not(.is-menu-open) .site-header.is-home:not(.is-scrolled) .header-phone {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

body:not(.is-menu-open) .site-header.is-home:not(.is-scrolled) .desktop-nav a:hover,
body:not(.is-menu-open) .site-header.is-home:not(.is-scrolled) .header-phone:hover,
body:not(.is-menu-open) .site-header.is-home:not(.is-scrolled) .desktop-nav a[aria-current="page"] {
  color: #fff;
}

body:not(.is-menu-open) .site-header.is-home:not(.is-scrolled) .header-cta {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  backdrop-filter: blur(8px);
}

body:not(.is-menu-open) .site-header.is-home:not(.is-scrolled) .header-cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-accent-dark);
}

body:not(.is-menu-open) .site-header.is-home:not(.is-scrolled) .menu-toggle {
  background: transparent;
  border-color: transparent;
  color: #fff;
  backdrop-filter: none;
}

.header-inner {
  min-height: var(--header-height);
  width: min(100% - 48px, 1520px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  transition: min-height 260ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 70px;
}

.brand img {
  width: 178px;
  height: auto;
  display: block;
  margin-top: 16px;
  transition: width 260ms ease, margin 260ms ease;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--color-muted);
  font-size: 16px;
}

.desktop-nav a,
.header-phone {
  transition: color 220ms ease;
}

.desktop-nav a:hover,
.header-phone:hover {
  color: var(--color-text);
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  color: var(--color-text);
  font-size: 16px;
  white-space: nowrap;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 28px;
  font-size: 16px;
  line-height: 1;
  color: var(--color-text);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background: #fff;
  border-color: var(--color-accent);
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.menu-toggle span:not(.sr-only) {
  width: 28px;
  height: 2px;
  display: block;
  background: currentColor;
  margin: 0;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-nav {
  display: none;
}

.header-booking {
  width: min(100% - 48px, 980px);
  max-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.8fr 0.8fr 0.92fr auto;
  align-items: stretch;
  gap: 6px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 18px 48px rgba(var(--color-text-rgb), 0);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    max-height 320ms ease,
    margin 320ms ease,
    opacity 260ms ease,
    transform 320ms ease,
    background 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.site-header.is-scrolled .header-booking {
  max-height: 60px;
  margin-bottom: 12px;
  padding: 5px 5px 5px 8px;
  border-color: rgba(var(--color-border-rgb), 0.7);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(var(--color-text-rgb), 0.1);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-booking label {
  min-height: 46px;
  display: grid;
  gap: 1px;
  padding: 5px 16px;
  border: 0;
  border-right: 1px solid rgba(var(--color-border-rgb), 0.7);
  border-radius: 0;
  background: transparent;
}

.header-booking label:first-of-type {
  padding-left: 18px;
  border-radius: 999px 0 0 999px;
}

.header-booking label span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.header-booking .btn {
  min-height: 100%;
  border-radius: 999px;
  padding-inline: 22px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 720px;
  padding-top: var(--header-height);
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface-soft) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 5, 6, 0.74) 0%, rgba(2, 5, 6, 0.46) 38%, rgba(2, 5, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(2, 5, 6, 0.38) 0%, rgba(2, 5, 6, 0.1) 100%);
  pointer-events: none;
}

.hero::after {
  content: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide-media {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide-media.is-active {
  opacity: 1;
}

.hero-video {
  z-index: 1;
  filter: brightness(0.78);
  transform: scale(1.08);
}

.hero-image {
  z-index: 0;
}

.hero-image+.hero-road,
.hero-image~.hero-car {
  display: none;
}

.hero-road {
  position: absolute;
  left: 50%;
  bottom: 104px;
  width: min(78vw, 1120px);
  height: 160px;
  transform: translateX(-22%);
  border-radius: 50%;
  background: rgba(var(--color-accent-dark-rgb), 0.1);
  filter: blur(22px);
}

.hero-car {
  position: absolute;
  right: max(24px, calc((100vw - 1520px) / 2));
  bottom: 154px;
  width: min(58vw, 840px);
  height: 270px;
}

.car-line {
  position: absolute;
  display: block;
  background: var(--color-accent-dark);
}

.car-line-top {
  left: 14%;
  right: 8%;
  top: 32%;
  height: 86px;
  border-radius: 130px 240px 32px 24px;
  opacity: 0.96;
}

.car-line-mid {
  left: 0;
  right: 0;
  top: 52%;
  height: 82px;
  border-radius: 180px 260px 48px 36px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.car-line-mid::before {
  content: "";
  position: absolute;
  left: 16%;
  top: -34px;
  width: 38%;
  height: 58px;
  border-radius: 120px 120px 12px 12px;
  background: rgba(var(--color-bg-rgb), 0.22);
}

.car-wheel {
  position: absolute;
  bottom: 16px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--color-text);
  border: 18px solid rgba(var(--color-accent-rgb), 0.72);
  box-shadow: inset 0 0 0 6px var(--color-text);
}

.car-wheel-left {
  left: 16%;
}

.car-wheel-right {
  right: 14%;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  max-width: 720px;
  padding-bottom: 70px;
}

.hero-copy-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease, transform 700ms ease;
  transform: translateY(14px);
}

.hero-copy-slide:not(:first-child) {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
}

.hero-copy-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-mark {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 96px;
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.62),
    0 20px 70px rgba(0, 0, 0, 0.42);
}

.hero-copy>p:not(.hero-mark) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 22px;
  line-height: 1.48;
}

.hero-copy>p:not(.hero-mark) {
  display: none;
}

.quick-search-section {
  position: relative;
  z-index: 40;
  margin-top: -146px;
  padding-bottom: 76px;
}

.quick-search {
  display: grid;
  grid-template-columns: minmax(220px, 1.12fr) repeat(4, minmax(150px, 0.86fr)) auto;
  align-items: stretch;
  gap: 6px;
  padding: 14px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 80px rgba(var(--color-text-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(26px) saturate(140%);
}

.search-intro {
  display: grid;
  align-content: center;
  min-height: 68px;
  padding: 12px 18px;
  border: 0;
  border-right: 1px solid rgba(var(--color-border-rgb), 0.6);
  border-radius: 0;
  background: transparent;
}

.search-intro h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 400;
}

.search-intro p {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.35;
}

.quick-search label,
.reservation-form label,
.contact-form label {
  display: grid;
  gap: 8px;
}

.quick-search label {
  min-height: 68px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.quick-search label span {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  opacity: 0.82;
}

label span {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.2;
}

.header-booking input,
.header-booking select {
  font-size: 14px;
}

.quick-search input,
.quick-search select {
  min-height: 26px;
  font-weight: 400;
}

.header-booking input,
.header-booking select {
  min-height: 22px;
}

.native-select,
.native-date {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-select,
.custom-date {
  position: relative;
  width: 100%;
  min-width: 0;
}

.custom-select-trigger,
.custom-date-trigger {
  width: 100%;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  font-size: 17px;
  line-height: 1.2;
}

.header-booking .custom-select-trigger,
.header-booking .custom-date-trigger {
  min-height: 22px;
  font-size: 14px;
}

.custom-select-trigger:focus-visible,
.custom-date-trigger:focus-visible {
  outline: 0;
}

.custom-select-value,
.custom-date-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-chevron,
.custom-date-icon {
  flex: 0 0 auto;
  display: inline-flex;
  color: rgba(var(--color-text-rgb), 0.58);
}

.custom-select-chevron svg,
.custom-date-icon svg {
  width: 18px;
  height: 18px;
}

.header-booking .custom-select-chevron svg,
.header-booking .custom-date-icon svg {
  width: 15px;
  height: 15px;
}

.custom-select-chevron svg path,
.custom-date-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-select-chevron {
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-chevron {
  transform: rotate(180deg);
}

.custom-select-list,
.custom-date-popover {
  position: absolute;
  top: calc(100% + 12px);
  left: -10px;
  z-index: 120;
  display: none;
  border: 1px solid rgba(var(--color-border-rgb), 0.86);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 58px rgba(var(--color-text-rgb), 0.18);
  backdrop-filter: blur(16px);
}

.custom-select.opens-up .custom-select-list,
.custom-date.opens-up .custom-date-popover {
  top: auto;
  bottom: calc(100% + 12px);
}

.custom-select-list {
  min-width: calc(100% + 20px);
  max-height: 250px;
  overflow: auto;
  padding: 6px;
}

.custom-select.is-open .custom-select-list,
.custom-date.is-open .custom-date-popover {
  display: grid;
}

.custom-select-option {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  font-size: 14px;
  line-height: 1.2;
}

.custom-select-option:hover,
.custom-select-option[aria-selected="true"] {
  background: rgba(var(--color-accent-rgb), 0.1);
  color: var(--color-accent-dark);
}

.custom-date-popover {
  width: min(312px, calc(100vw - 34px));
  padding: 12px;
}

.custom-date-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.custom-date-title {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 400;
}

.custom-date-head button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 7px;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 20px;
  line-height: 1;
}

.custom-date-weekdays,
.custom-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.custom-date-weekdays {
  margin-bottom: 7px;
}

.custom-date-weekdays span {
  color: var(--color-muted);
  font-size: 11px;
  text-align: center;
}

.custom-date-empty {
  min-height: 34px;
}

.custom-date-day {
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--color-text);
  font-size: 14px;
}

.custom-date-day:hover {
  background: rgba(var(--color-accent-rgb), 0.1);
}

.custom-date-day.is-active {
  background: var(--color-accent);
  color: #fff;
}

.custom-date-day.is-disabled {
  min-height: 34px;
  border-radius: 7px;
  background: transparent;
  color: rgba(var(--color-text-rgb), 0.28);
  font-size: 14px;
  cursor: not-allowed;
  pointer-events: none;
}

.site-header.is-scrolled .header-booking {
  overflow: visible;
}

.quick-search label,
.catalog-search label,
.reservation-form label,
.contact-form label,
.header-booking label {
  position: relative;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.quick-search label:hover,
.catalog-search label:hover,
.reservation-form label:hover,
.contact-form label:hover {
  background: #fff;
  border-color: rgba(var(--color-accent-rgb), 0.24);
}

.quick-search label:focus-within,
.catalog-search label:focus-within,
.reservation-form label:focus-within,
.contact-form label:focus-within {
  z-index: 1;
  background: #fff;
  border-color: rgba(var(--color-accent-rgb), 0.38);
  box-shadow: 0 0 0 4px rgba(var(--color-accent-rgb), 0.1);
}

.header-booking label:hover {
  background: rgba(var(--color-accent-rgb), 0.05);
}

.header-booking label:focus-within {
  z-index: 1;
  background: rgba(var(--color-accent-rgb), 0.07);
}

.reservation-form label,
.contact-form label {
  background: var(--control-bg);
}

textarea {
  min-height: 116px;
  padding: 4px 0;
  resize: vertical;
}

.quick-search .btn {
  min-height: 100%;
  border-radius: var(--radius-md);
  padding-inline: 28px;
  font-size: 15px;
  box-shadow: 0 16px 32px rgba(var(--color-accent-rgb), 0.18);
}

.page-main {
  padding-top: var(--header-height);
}

.page-hero {
  padding-block: 78px 56px;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface-soft) 100%);
}

.compact-page-hero {
  padding-bottom: 28px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.86fr);
  gap: 42px;
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 78px;
  line-height: 0.98;
  font-weight: 400;
}

.page-hero p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.5;
}

.page-hero-media {
  min-height: 410px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--color-surface-soft), #ffffff 52%, #eadfca);
  box-shadow: var(--shadow-soft);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.catalog-search {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
  position: relative;
  z-index: 5;
  overflow: visible;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.catalog-search label {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid var(--color-border);
}

.catalog-search .btn {
  min-height: 100%;
  border-radius: 0;
}

.page-cta {
  padding-block: 64px;
  background: var(--color-surface-soft);
}

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-cta h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.section-link {
  justify-self: end;
}

.detail-hero {
  padding-block: 72px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.48fr);
  gap: 28px;
  align-items: start;
}

.detail-media {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--color-surface-soft), #ffffff 52%, #eadfca);
}

.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.detail-media.is-missing::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 170px;
  height: 150px;
  border-radius: 220px 280px 46px 38px;
  background: var(--color-accent-dark);
  box-shadow: 0 70px 46px rgba(var(--color-text-rgb), 0.12);
}

.detail-media.is-missing::after {
  content: attr(data-model);
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  color: rgba(var(--color-text-rgb), 0.68);
  font-size: 28px;
}

.detail-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.detail-panel h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.02;
  font-weight: 400;
}

.detail-panel p:not(.summary-label) {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.5;
}

.detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-features li {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--color-muted);
  font-size: 14px;
}

.detail-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-block: 20px;
  border-block: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 16px;
}

.detail-price-row span:last-child {
  color: var(--color-text);
  font-size: 32px;
}

.reservation-page-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr) minmax(320px, 0.64fr);
  max-width: 1420px;
}

.section {
  padding-block: 72px;
}

.section-heading {
  margin-bottom: 30px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: end;
}

.section-heading h2,
.fleet-copy h2,
.fleet-signature-copy h2,
.experience-copy h2,
.reservation-copy h2,
.about-layout h2,
.about-story-copy h2,
.process-layout h2,
.address-copy h2,
.contact-panel h2 {
  margin: 0;
  max-width: 780px;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}

.section-heading p,
.fleet-copy p,
.fleet-signature-copy p,
.reservation-copy p,
.about-layout p,
.about-story-copy p,
.address-copy p {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: transparent;
  color: var(--color-muted);
  font-size: 15px;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

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

.vehicle-filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 5;
}

.vehicle-filter-bar label {
  display: grid;
  gap: 8px;
}

.vehicle-filter-bar label span {
  color: var(--color-muted);
  font-size: 13px;
}

.vehicle-empty {
  grid-column: 1 / -1;
  padding: 40px 16px;
  text-align: center;
  color: var(--color-muted);
  font-size: 16px;
}

@media (max-width: 860px) {
  .vehicle-filter-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .vehicle-filter-bar {
    grid-template-columns: 1fr;
  }
}

.section-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.vehicle-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.vehicle-card:hover {
  border-color: rgba(var(--color-accent-rgb), 0.42);
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(var(--color-text-rgb), 0.1);
}

.vehicle-media {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--color-surface-soft), #ffffff 52%, #eadfca);
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transition: opacity 260ms ease, transform 360ms ease;
}

.vehicle-card:hover .vehicle-media img {
  transform: scale(1.025);
}

.vehicle-media.is-missing img {
  opacity: 0;
}

.vehicle-media.is-missing::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 88px;
  height: 95px;
  border-radius: 130px 210px 36px 28px;
  background: var(--color-accent-dark);
  box-shadow: 0 56px 36px rgba(var(--color-text-rgb), 0.12);
}

.vehicle-media.is-missing::after {
  content: attr(data-model);
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: rgba(var(--color-text-rgb), 0.68);
  font-size: 20px;
  line-height: 1.15;
}

.vehicle-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.vehicle-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}

.vehicle-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 400;
}

.vehicle-class {
  margin: 7px 0 0;
  color: var(--color-muted);
  font-size: 16px;
}

.vehicle-price {
  min-width: max-content;
  color: var(--color-text);
  font-size: 24px;
  line-height: 1;
}

.vehicle-description {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.45;
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.vehicle-features li {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--color-muted);
  font-size: 14px;
}

.vehicle-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
}

.vehicle-actions .btn {
  min-height: 48px;
  padding-inline: 18px;
}

.fleet-editorial {
  position: relative;
  overflow: hidden;
  background: var(--color-surface-soft);
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: center;
}

.fleet-copy {
  align-self: start;
  position: relative;
  padding-top: 10px;
}

.fleet-copy-showcase {
  min-height: 640px;
  padding-bottom: 210px;
}

.fleet-copy-showcase .fleet-copy-car {
  position: absolute;
  left: -44px;
  bottom: 108px;
  z-index: 0;
  width: min(112%, 620px);
  display: block;
  opacity: 0.96;
  filter: drop-shadow(0 30px 42px rgba(var(--color-text-rgb), 0.22));
  pointer-events: none;
}

.fleet-copy-showcase> :not(.fleet-copy-car) {
  position: relative;
  z-index: 1;
}

.fleet-eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fleet-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(var(--color-accent-rgb), 0.16);
  border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.16);
  background: transparent;
}

.fleet-proof-item {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 22px 28px;
  border-right: 1px solid rgba(var(--color-accent-rgb), 0.16);
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.35;
}

.fleet-proof-item:first-child {
  padding-left: 0;
}

.fleet-proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.fleet-proof-value {
  color: var(--color-accent-dark);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 600;
}

.fleet-proof-text {
  max-width: 190px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
}

.fleet-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(410px, 0.72fr);
  gap: 16px;
  align-items: stretch;
}

.fleet-stage {
  min-height: 520px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--color-accent-rgb), 0.18);
  border-radius: var(--radius-sm);
  background: var(--color-accent-dark);
  box-shadow: 0 32px 80px rgba(var(--color-text-rgb), 0.16);
}

.fleet-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--color-text-rgb), 0.02) 42%, rgba(var(--color-text-rgb), 0.72) 100%),
    linear-gradient(90deg, rgba(var(--color-text-rgb), 0.18), rgba(var(--color-text-rgb), 0));
  pointer-events: none;
}

.fleet-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.fleet-stage:hover img {
  transform: scale(1.035);
}

.fleet-stage figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  color: #fff;
}

.fleet-stage figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fleet-stage-title {
  color: #fff;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.fleet-rows {
  display: grid;
  align-content: stretch;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(var(--color-accent-rgb), 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.fleet-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 138px;
  padding: 12px;
  border: 1px solid rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.fleet-row:hover {
  background: #fff;
  border-color: rgba(var(--color-accent-rgb), 0.24);
  transform: translateY(-1px);
}

.fleet-row:last-child {
  border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.1);
}

.fleet-thumb {
  width: 132px;
  height: 104px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
}

.fleet-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-row h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 600;
}

.fleet-row span,
.fleet-row p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.35;
}

.fleet-price {
  display: block;
  margin-top: 10px;
  color: var(--color-text);
  font-weight: 400;
  font-size: 16px;
}

.fleet-copy .btn,
.about-link {
  margin-top: 24px;
}

.fleet-signature-section {
  background: var(--color-bg);
}

.fleet-signature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.fleet-signature-copy {
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.fleet-signature-media,
.sport-feature-media,
.about-story-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--color-surface-soft), #ffffff 52%, #eadfca);
}

.fleet-signature-media {
  min-height: 560px;
}

.fleet-signature-media img,
.sport-feature-media img,
.about-story-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.fleet-model-list {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(var(--color-accent-rgb), 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.46);
  padding: 10px;
}

.compact-list {
  align-self: end;
}

.fleet-model-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 10px;
  border: 1px solid rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.fleet-model-line:last-child {
  border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.1);
}

.fleet-model-line:hover {
  background: #fff;
  border-color: rgba(var(--color-accent-rgb), 0.24);
  transform: translateY(-1px);
}

.fleet-model-thumb {
  width: 92px;
  height: 82px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
}

.fleet-model-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-model-line h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.14;
  font-weight: 600;
}

.fleet-model-line p,
.fleet-model-line span {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.35;
}

.fleet-model-line .fleet-model-price {
  display: block;
  margin-top: 8px;
  color: var(--color-text);
  font-size: 15px;
  white-space: nowrap;
}

.fleet-model-line svg {
  width: 18px;
  height: 18px;
  justify-self: center;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.fleet-empty {
  margin: 0;
  padding: 22px;
  color: var(--color-muted);
  font-size: 16px;
}

.fleet-page-editorial .fleet-layout {
  align-items: start;
}

.fleet-page-editorial {
  padding-bottom: 0;
}

.fleet-page-editorial .fleet-copy-showcase {
  padding-bottom: 0;
}

.suv-showcase-layout,
.sport-feature-layout,
.about-story-grid,
.address-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.suv-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 18px;
  align-items: end;
}

.suv-media-grid figure {
  margin: 0;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--color-surface-soft), #ffffff 52%, #eadfca);
}

.suv-media-grid figure:nth-child(2) {
  min-height: 330px;
}

.suv-media-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.suv-media-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(var(--color-text-rgb), 0.46);
  color: #fff;
  backdrop-filter: blur(10px);
  font-size: 15px;
}

.sport-feature-media {
  min-height: 480px;
  background: var(--color-surface);
}

.sport-feature .experience-copy p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.experience-band {
  padding-block: 92px;
  background: var(--color-surface);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.experience-media {
  min-height: 520px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--color-accent-rgb), 0.18);
  border-radius: var(--radius-sm);
  background: var(--color-accent-dark);
  box-shadow: 0 28px 78px rgba(var(--color-text-rgb), 0.14);
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--color-text-rgb), 0) 38%, rgba(var(--color-text-rgb), 0.74) 100%),
    linear-gradient(90deg, rgba(var(--color-text-rgb), 0.16), rgba(var(--color-text-rgb), 0));
  pointer-events: none;
}

.experience-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.experience-media:hover img {
  transform: scale(1.035);
}

.experience-media figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  color: #fff;
}

.experience-media figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.experience-media-title {
  max-width: 520px;
  color: #fff;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.experience-copy h2 {
  max-width: 620px;
}

.experience-copy>p:not(.section-kicker) {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
}

.experience-copy ul {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(var(--color-accent-rgb), 0.16);
  border-radius: var(--radius-sm);
  background: rgba(var(--color-accent-rgb), 0.12);
  list-style: none;
}

.experience-copy li {
  display: grid;
  grid-template-columns: 54px minmax(140px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
}

.experience-copy li span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--color-accent-rgb), 0.18);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
}

.experience-copy li .step-title {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.experience-copy li em {
  font-style: normal;
}

.reservation-section {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr) minmax(290px, 0.45fr);
  gap: 18px;
  align-items: start;
}

.reservation-form,
.summary-panel {
  border: 1px solid rgba(var(--color-accent-rgb), 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(var(--color-text-rgb), 0.08);
}

.reservation-form {
  padding: 22px;
}

.reservation-vehicle-card {
  position: sticky;
  top: 104px;
  min-height: 520px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(var(--color-accent-rgb), 0.16);
  border-radius: var(--radius-sm);
  background: var(--color-accent-dark);
  box-shadow: 0 24px 70px rgba(var(--color-text-rgb), 0.08);
}

.reservation-vehicle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--color-text-rgb), 0) 42%, rgba(var(--color-text-rgb), 0.76) 100%),
    linear-gradient(90deg, rgba(var(--color-text-rgb), 0.24), rgba(var(--color-text-rgb), 0));
  pointer-events: none;
}

.reservation-vehicle-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-vehicle-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 24px;
  color: #fff;
}

.reservation-vehicle-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reservation-vehicle-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 600;
}

.reservation-copy {
  min-height: 100%;
  display: grid;
  align-content: start;
  padding: 8px 0;
}

.reservation-notes {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(var(--color-accent-rgb), 0.14);
  border-radius: var(--radius-sm);
  background: rgba(var(--color-accent-rgb), 0.1);
}

.reservation-notes span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
}

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

.reservation-form label,
.contact-form label {
  min-height: 84px;
  padding: 16px 17px;
  border: 1px solid rgba(var(--color-accent-rgb), 0.12);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.full-field {
  grid-column: 1 / -1;
}

#reservation .reservation-form .email-field {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--color-accent);
  font-size: 16px;
}

.summary-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.summary-label {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 15px;
}

.summary-panel h3 {
  margin: 0 0 26px;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 600;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 16px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 16px;
}

.summary-value {
  color: var(--color-text);
  font-weight: 400;
  text-align: right;
}

.summary-total {
  align-items: end;
}

.summary-total .summary-value {
  font-size: 30px;
  font-weight: 600;
}

.about-strip {
  padding-block: 72px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: end;
}

.about-story-section {
  background: var(--color-surface);
}

.about-story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.about-story-media {
  min-height: 520px;
}

.about-story-copy {
  padding: 8px 0;
}

.about-proof-lines {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
}

.about-proof-lines span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 18px;
}

.about-proof-lines span:last-child {
  border-bottom: 0;
}

.values-section {
  background: var(--color-bg);
}

.value-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-surface);
}

.value-rail article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 26px;
  border-right: 1px solid var(--color-border);
}

.value-rail article:last-child {
  border-right: 0;
}

.value-rail span {
  color: var(--color-muted);
  font-size: 16px;
}

.value-rail h3,
.process-steps h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 400;
}

.value-rail p,
.process-steps p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.5;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.process-steps {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.process-steps article {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--color-accent-dark);
}

.about-process-band {
  background: var(--color-accent-dark);
  color: #fff;
}

.about-process-band .process-steps p,
.about-process-band .process-layout h2 {
  color: rgba(255, 255, 255, 0.76);
}

.about-process-band .process-layout h2,
.about-process-band .process-steps h3 {
  color: #fff;
}

.contact-section {
  background: var(--color-surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-panel,
.contact-form {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
}

.contact-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 24px;
  padding: 24px;
}

.contact-panel h2 {
  font-size: 42px;
}

.contact-card-list {
  display: grid;
  border-top: 1px solid var(--color-border);
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-card>span:first-child {
  color: var(--color-muted);
  font-size: 15px;
}

.contact-value {
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.18;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form {
  padding: 24px;
}

.contact-address-band {
  background: var(--color-bg);
}

.address-layout {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.08fr);
}

.map-card {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
  box-shadow: 0 24px 70px rgba(var(--color-text-rgb), 0.1);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(0.98);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--color-bg-rgb), 0.08), rgba(var(--color-text-rgb), 0.12)),
    linear-gradient(90deg, rgba(var(--color-bg-rgb), 0.72), transparent 44%);
  pointer-events: none;
}

.map-card div {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(var(--color-text-rgb), 0.14);
}

.map-card p,
.map-card span {
  margin: 0;
}

.map-card p {
  color: var(--color-muted);
  font-size: 16px;
}

.map-card span {
  color: var(--color-text);
  font-size: 28px;
}

.site-footer {
  padding-block: 58px;
  background: var(--color-accent-dark);
  color: #fff;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto minmax(260px, 0.56fr);
  gap: 46px;
  align-items: start;
}

.site-footer img {
  width: 178px;
  filter: brightness(0) invert(1);
}

.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-credit {
  margin: 14px 0 0;
  font-size: 14px;
}

.site-footer .footer-credit a {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
}

/* Sticky iletişim butonları: telefon sol alt, WhatsApp sağ alt */
/* Floating butonlar JS hazır olana kadar gizli — flash önleme */
.floating-actions {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
  transition: none;
}

body.js-ready .floating-actions {
  transition: opacity 260ms ease, transform 260ms ease;
}

body.js-ready:not(.is-home) .floating-actions,
body.js-ready.is-page-scrolled .floating-actions {
  opacity: 1;
  transform: translateY(0);
}

body.is-menu-open .floating-actions {
  opacity: 0;
  transform: translateY(14px);
}

.floating-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 60px;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  pointer-events: auto;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 16px 38px rgba(var(--color-text-rgb), 0.22);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease, padding 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    gap 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.floating-call {
  left: 26px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

.floating-whatsapp {
  right: 26px;
  flex-direction: row-reverse;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

/* İçteki ikon kabını sabit tutan dış halka + nabız animasyonu */
.floating-icon {
  position: relative;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
}

.floating-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid currentColor;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: scale(0.8);
  animation: floatingPulse 2.6s ease-out infinite;
  pointer-events: none;
}

.floating-whatsapp .floating-icon::before {
  animation-delay: 1.1s;
}

.floating-label {
  max-width: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateX(-6px);
  transition: max-width 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms ease, transform 320ms ease;
}

/* Hover / odakta etiketi aç */
.floating-btn:hover,
.floating-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(var(--color-text-rgb), 0.3);
  gap: 4px;
}

.floating-call:hover,
.floating-call:focus-visible {
  padding-right: 22px;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  padding-left: 22px;
}

.floating-btn:hover .floating-label,
.floating-btn:focus-visible .floating-label {
  max-width: 160px;
  opacity: 1;
  transform: translateX(0);
}

.floating-actions svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

@keyframes floatingPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.85);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

body.is-reservation-modal-open {
  overflow: hidden;
}

.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.reservation-modal.is-open {
  display: flex;
}

.reservation-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 7, 0.58);
  backdrop-filter: blur(10px);
}

.reservation-modal-panel {
  width: min(100%, 920px);
  max-height: min(760px, calc(100dvh - 48px));
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  overflow: visible;
  border: 1px solid rgba(var(--color-border-rgb), 0.8);
  border-radius: var(--radius-md);
  background: rgba(var(--color-bg-rgb), 0.98);
  box-shadow: 0 32px 90px rgba(var(--color-text-rgb), 0.28);
}

.reservation-modal-media {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  background: var(--color-surface-soft);
}

.reservation-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.reservation-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 15, 12, 0.58));
}

.reservation-modal-media div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
}

.reservation-modal-media span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.reservation-modal-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.reservation-modal-media h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 600;
}

.reservation-modal-content {
  min-width: 0;
  max-height: min(760px, calc(100dvh - 48px));
  overflow: visible;
  padding: 26px;
}

.reservation-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--color-accent-rgb), 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
}

.reservation-modal-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.reservation-modal-close span:first-child {
  transform: rotate(45deg);
}

.reservation-modal-close span:last-child {
  transform: rotate(-45deg);
}

.reservation-modal-content h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 600;
}

.reservation-modal-content p {
  margin: 10px 0 22px;
  color: var(--color-muted);
  line-height: 1.5;
}

.reservation-modal-form {
  display: grid;
  gap: 12px;
  overflow: visible;
}

.reservation-modal-form label {
  min-height: 78px;
  display: grid;
  gap: 8px;
  position: relative;
  padding: 15px 16px;
  border: 1px solid rgba(var(--color-border-rgb), 0.9);
  border-radius: var(--radius-sm);
  background: #fff;
}

.reservation-modal-form label span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
}

.reservation-modal-form .btn {
  width: 100%;
  margin-top: 6px;
}

.reservation-success-panel {
  width: min(100%, 560px);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(var(--color-border-rgb), 0.86);
  border-radius: var(--radius-md);
  background: rgba(var(--color-bg-rgb), 0.98);
  box-shadow: 0 32px 90px rgba(var(--color-text-rgb), 0.28);
}

.reservation-success-content {
  padding: 34px;
}

.reservation-success-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.15);
  color: var(--color-accent-dark);
  font-size: 30px;
  font-weight: 700;
}

.reservation-success-content h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 600;
}

.reservation-success-content p {
  margin: 12px 0 20px;
  color: var(--color-muted);
  line-height: 1.55;
}

.reservation-success-summary {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid rgba(var(--color-border-rgb), 0.9);
  border-radius: var(--radius-sm);
  background: #fff;
}

.reservation-success-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-muted);
  font-size: 14px;
}

.reservation-success-summary strong {
  color: var(--color-text);
  text-align: right;
  font-weight: 600;
}

.reservation-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 768px) and (max-height: 860px) {
  .hero-video {
    transform: translateY(-34px) scale(1.26);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    min-height: 620px;
  }

  .hero-video {
    object-position: 56% center;
    transform: scale(1.42);
  }

  .hero-image {
    object-position: 56% center;
    transform: scale(1.34);
  }

  .hero-content {
    min-height: 420px;
    align-items: start;
    padding-top: 118px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .quick-search-section {
    margin-top: -188px;
    padding-bottom: 54px;
  }

  .reservation-form .email-field {
    grid-column: 1 / -1;
  }

  .about-page .page-hero-media {
    order: -1;
  }
}

@media (max-width: 1199px) {

  .desktop-nav,
  .header-phone,
  .header-cta,
  .header-booking {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-header.is-scrolled .brand img {
    width: 154px;
    margin-top: 0;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  body.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 90;
    width: min(86vw, 380px);
    min-height: 100dvh;
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 22px 22px 28px;
    overflow: auto;
    background: rgba(var(--color-surface-soft-rgb), 0.98);
    border-left: 1px solid rgba(var(--color-accent-rgb), 0.18);
    box-shadow: -24px 0 70px rgba(var(--color-text-rgb), 0.18);
    transform: translateX(104%);
    opacity: 0;
    pointer-events: none;
    transition: transform 280ms ease, opacity 220ms ease;
  }

  body.is-menu-open .mobile-nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    color: var(--color-text);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .mobile-nav-brand img {
    width: 142px;
    height: auto;
  }

  .mobile-nav-close {
    justify-self: end;
    width: 44px;
    height: 44px;
    position: relative;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-accent-dark);
    padding: 0;
  }

  .mobile-nav-close span {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 21px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-nav-links {
    display: grid;
    border-top: 1px solid rgba(var(--color-accent-rgb), 0.14);
  }

  .mobile-nav-links a {
    padding-block: 16px;
    border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.14);
    color: var(--color-text);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
  }

  .mobile-nav-actions .mobile-nav-action {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--color-accent-rgb), 0.22);
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-nav-actions .mobile-nav-action:first-child {
    background: rgba(255, 255, 255, 0.74);
    color: var(--color-accent-dark);
  }

  .hero h1 {
    font-size: 72px;
    line-height: 0.98;
  }

  .hero-car {
    right: -120px;
    width: 760px;
    opacity: 0.88;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-video {
    object-position: 62% center;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    min-height: 420px;
    align-items: start;
    padding-top: 118px;
  }

  .hero-video {
    object-position: 56% center;
    transform: scale(1.42);
  }

  .quick-search {
    grid-template-columns: 1fr 1fr;
  }

  .search-intro {
    grid-column: 1 / -1;
  }

  .quick-search .btn {
    grid-column: 1 / -1;
    min-height: 58px;
  }

  .split-heading,
  .page-hero-layout,
  .fleet-layout,
  .fleet-signature-grid,
  .experience-layout,
  .suv-showcase-layout,
  .sport-feature-layout,
  .reservation-layout,
  .reservation-page-layout,
  .about-layout,
  .about-story-grid,
  .process-layout,
  .contact-layout,
  .address-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .catalog-search {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-search .btn {
    grid-column: 1 / -1;
    min-height: 58px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    position: static;
  }

  .filter-actions {
    justify-content: flex-start;
  }

  .fleet-panel {
    grid-template-columns: 1fr;
  }

  .page-cta-actions {
    justify-content: flex-start;
  }

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

  .reservation-copy {
    max-width: 720px;
  }

  .summary-panel {
    position: static;
  }

  .reservation-vehicle-card {
    position: relative;
    top: auto;
    min-height: 360px;
  }

  .reservation-modal-panel {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
    overflow: auto;
  }

  .reservation-modal-media {
    min-height: 280px;
  }

  .reservation-modal-media img {
    min-height: 280px;
  }

  .reservation-modal-content {
    max-height: none;
    overflow: visible;
  }

  .contact-panel {
    position: static;
  }

  .site-header.is-scrolled:not(.is-menu-open) {
    background: #000000;
    border-bottom-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .site-header.is-scrolled:not(.is-menu-open) .menu-toggle {
    color: #ffffff;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 70px;
  }

  .container,
  .container-wide,
  .header-inner {
    width: min(100% - 32px, 100%);
  }

  .brand img,
  .site-footer img {
    width: 148px;
  }

  .site-header.is-scrolled .brand img {
    width: 132px;
    margin-top: 0;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    min-height: 540px;
    align-items: start;
    padding-top: 92px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-mark {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1;
  }

  .hero-copy>p:not(.hero-mark) {
    font-size: 17px;
    line-height: 1.5;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-car {
    right: -255px;
    bottom: 118px;
    width: 620px;
    height: 230px;
    opacity: 0.78;
  }

  .hero-image {
    object-position: 54% center;
    transform: translateY(-18px) scale(1.28);
  }

  .hero-video {
    object-position: 54% center;
    transform: translateY(-28px) scale(1.38);
  }

  .quick-search-section {
    margin-top: -288px;
    padding-bottom: 34px;
  }

  .quick-search {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .quick-search .custom-date-popover,
  .quick-search .custom-select-list {
    left: 50%;
    width: min(312px, calc(100vw - 36px));
    min-width: 0;
    transform: translateX(-50%);
  }

  .quick-search label {
    min-height: 68px;
  }

  .fleet-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
    gap: 0;
  }

  .fleet-proof-item {
    min-height: 86px;
    padding: 12px 9px;
    text-align: center;
    gap: 4px;
  }

  .fleet-proof-item:first-child {
    padding-left: 0;
  }

  .fleet-proof-item:last-child {
    padding-right: 0;
  }

  .fleet-proof-value {
    font-size: 13px;
  }

  .fleet-proof-text {
    max-width: none;
    font-size: 10.5px;
    line-height: 1.25;
  }

  .fleet-stage,
  .experience-media,
  .experience-media img,
  .fleet-stage img {
    min-height: 320px;
  }

  .fleet-copy-showcase {
    min-height: 0;
    padding-bottom: 0;
  }

  .fleet-copy-showcase .fleet-copy-car {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 520px);
    margin: 26px 0 0 -12px;
  }

  .section {
    padding-block: 48px;
  }

  .section-heading h2,
  .page-hero h1,
  .fleet-copy h2,
  .fleet-signature-copy h2,
  .experience-copy h2,
  .reservation-copy h2,
  .about-layout h2,
  .about-story-copy h2,
  .process-layout h2,
  .address-copy h2,
  .contact-panel h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .section-heading p,
  .page-hero p,
  .fleet-copy p,
  .fleet-signature-copy p,
  .reservation-copy p,
  .about-layout p,
  .about-story-copy p,
  .address-copy p {
    font-size: 16px;
  }

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

  .vehicle-card {
    min-height: auto;
  }

  .vehicle-media,
  .vehicle-media img {
    min-height: 280px;
  }

  .vehicle-title-row,
  .vehicle-actions,
  .experience-copy li,
  .catalog-search,
  .form-grid,
  .process-steps article,
  .value-rail {
    grid-template-columns: 1fr;
  }

  .catalog-search label {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .fleet-rows {
    gap: 9px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.58);
  }

  .fleet-row {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 116px;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(var(--color-accent-rgb), 0.1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
  }

  .fleet-row:last-child {
    border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.1);
  }

  .fleet-thumb {
    width: 104px;
    height: 86px;
  }

  .fleet-row h3 {
    font-size: 15px;
  }

  .fleet-row p,
  .fleet-row span {
    font-size: 12px;
  }

  .fleet-price {
    margin-top: 4px;
    font-size: 12px;
  }

  .fleet-model-list {
    gap: 8px;
    padding: 8px;
  }

  .fleet-model-line {
    grid-template-columns: 72px minmax(0, 1fr) 22px;
    min-height: 94px;
    gap: 12px;
    padding: 9px;
  }

  .fleet-model-thumb {
    width: 72px;
    height: 72px;
  }

  .fleet-model-line h3 {
    font-size: 15px;
  }

  .fleet-model-line p,
  .fleet-model-line span {
    font-size: 12px;
  }

  .page-hero {
    padding-block: 48px 34px;
  }

  .page-cta-inner {
    align-items: start;
    flex-direction: column;
  }

  .page-cta h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .page-cta-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .detail-hero {
    padding-block: 40px;
  }

  .detail-media,
  .detail-media img {
    min-height: 360px;
  }

  .detail-panel {
    padding: 18px;
  }

  .detail-panel h1 {
    font-size: 36px;
  }

  .experience-copy li {
    align-items: start;
    gap: 10px;
  }

  .experience-copy li span {
    width: 38px;
    height: 38px;
  }

  .experience-media-title {
    font-size: 25px;
  }

  .reservation-notes {
    margin-top: 22px;
  }

  .detail-price-row span:last-child {
    font-size: 26px;
  }

  .vehicle-price {
    min-width: 0;
  }

  .fleet-stage,
  .experience-media,
  .experience-media img,
  .page-hero-media,
  .fleet-signature-media,
  .sport-feature-media,
  .about-story-media,
  .map-card {
    min-height: 300px;
  }

  .page-hero-media img {
    min-height: 300px;
  }

  .about-page .page-hero-media {
    order: -1;
  }

  .reservation-modal {
    align-items: flex-start;
    padding: 12px;
    overflow: auto;
  }

  .reservation-modal-panel {
    max-height: none;
  }

  .reservation-modal-content {
    padding: 18px;
  }

  .reservation-modal-content h2 {
    font-size: 27px;
  }

  .reservation-modal-media,
  .reservation-modal-media img {
    min-height: 220px;
  }

  .fleet-signature-copy,
  .contact-form,
  .contact-panel {
    padding: 18px;
  }

  .suv-media-grid {
    grid-template-columns: 1fr;
  }

  .suv-media-grid figure,
  .suv-media-grid figure:nth-child(2) {
    min-height: 280px;
  }

  .value-rail article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .value-rail article:last-child {
    border-bottom: 0;
  }

  .fleet-model-line .fleet-model-price {
    margin-top: 4px;
    font-size: 12px;
  }

  .contact-value,
  .map-card span {
    font-size: 22px;
  }

  .experience-band,
  .about-strip {
    padding-block: 48px;
  }

  .reservation-form,
  .summary-panel {
    padding: 18px;
  }

  .reservation-vehicle-card {
    min-height: 300px;
  }

  .reservation-vehicle-card h2 {
    font-size: 26px;
  }

  .summary-panel h3 {
    font-size: 26px;
  }

  .summary-total .summary-value {
    font-size: 26px;
  }

  .footer-layout {
    gap: 28px;
  }

  .floating-btn {
    bottom: 16px;
    height: 54px;
  }

  .floating-icon {
    width: 54px;
    height: 54px;
  }

  .floating-call {
    left: 14px;
  }

  .floating-whatsapp {
    right: 14px;
  }

  .floating-actions svg {
    width: 23px;
    height: 23px;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}