:root {
  --black: #030303;
  --carbon: #0b0c0e;
  --panel: #121316;
  --panel-soft: rgba(18, 19, 22, 0.72);
  --gold: #d6a232;
  --yellow: #ffd15a;
  --cream: #f6efe2;
  --muted: #a8a8a8;
  --line: rgba(255, 209, 90, 0.2);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px clamp(18px, 4vw, 56px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(4, 4, 4, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #15100a;
  font-size: 0.82rem;
  box-shadow: 0 0 28px rgba(255, 209, 90, 0.35);
}

.brand-logo {
  width: 105px;
  height: 105px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 18px rgba(255, 209, 90, 0.45));
  transition: all 0.3s ease;
}

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

.site-header .brand {
  margin-left: 18px;
  display: flex;
  align-items: center;
}

.site-header .brand-logo {
  width: 105px;
  height: 105px;
}

.footer-brand .brand-logo {
  width: 70px;
  height: 70px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.nav-links a {
  position: relative;
  color: rgba(246, 239, 226, 0.82);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background: #020202;
}

.hero-video {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: brightness(1.08) contrast(1.18) saturate(1.28);
  transform: scale(1.04);
  transform-origin: center center;
}

.hero-overlay {
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.68) 46%, rgba(0, 0, 0, 0.76) 68%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(circle at 24% 24%, rgba(255, 209, 90, 0.14), transparent 28%),
    linear-gradient(180deg, transparent 72%, var(--black));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 430px);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  width: min(1180px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 138px 0 64px;
}

.eyebrow,
.form-label {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-subtitle {
  color: rgba(246, 239, 226, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.cab-btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #130f08;
  box-shadow: 0 14px 36px rgba(214, 162, 50, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 18px 46px rgba(255, 209, 90, 0.46);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
}

.pulse {
  animation: glowPulse 2.4s ease-in-out infinite;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.hero-stats strong {
  color: var(--yellow);
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.booking-card {
  max-height: calc(100vh - 172px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 26px;
  animation: floatCard 5s ease-in-out infinite;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 209, 90, 0.55) rgba(255, 255, 255, 0.06);
}

.booking-card::-webkit-scrollbar {
  width: 8px;
}

.booking-card::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.booking-card::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 209, 90, 0.55);
}

.booking-card h2 {
  margin-bottom: 26px;
  font-size: clamp(1.9rem, 4vw, 2.55rem);
}

form {
  display: grid;
  gap: 12px;
}

.booking-fields {
  display: grid;
  gap: 12px;
}

.booking-fields[hidden] {
  display: none;
}

.conditional-field {
  display: grid;
  gap: 12px;
}

.conditional-field[hidden] {
  display: none;
}

.selected-car-box {
  padding: 16px;
  border: 1px solid rgba(255, 209, 90, 0.3);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 209, 90, 0.14), rgba(255, 255, 255, 0.05));
}

.selected-car-box span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-car-box strong {
  display: block;
  color: var(--cream);
  font-size: 1.05rem;
}

.selected-car-box p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

label {
  color: rgba(246, 239, 226, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  outline: none;
  background: rgba(0, 0, 0, 0.28);
  color: var(--cream);
  font: inherit;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

select {
  cursor: pointer;
}

select option {
  background: #151515;
  color: var(--cream);
}

textarea {
  min-height: 92px;
  padding-top: 14px;
  resize: vertical;
}

.location-control {
  position: relative;
}

.location-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 20;
  display: none;
  overflow: hidden;
  max-height: 220px;
  border: 1px solid rgba(255, 209, 90, 0.24);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}

.location-suggestions.is-open {
  display: block;
}

.location-suggestion {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  color: rgba(246, 239, 226, 0.88);
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.location-suggestion:hover,
.location-suggestion:focus-visible {
  background: rgba(255, 209, 90, 0.12);
  color: var(--cream);
  outline: none;
}

.location-suggestion:last-child {
  border-bottom: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 209, 90, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 209, 90, 0.12);
}

.form-submit {
  margin-top: 12px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 98px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.service-grid,
.why-grid,
.testimonial-grid,
.cab-grid {
  display: grid;
  gap: 22px;
}

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

.feature-card,
.mini-card,
.review-card,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover,
.mini-card:hover,
.review-card:hover,
.contact-panel:hover,
.cab-card:hover {
  border-color: rgba(255, 209, 90, 0.35);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
  transform: translateY(-8px);
}

.feature-card,
.mini-card {
  padding: 26px;
}

.icon,
.mini-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255, 209, 90, 0.12);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card p,
.mini-card p,
.review-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.cab-type-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cab-type-btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(246, 239, 226, 0.88);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cab-type-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 209, 90, 0.45);
}

.cab-type-btn.is-active {
  border-color: rgba(255, 209, 90, 0.76);
  background: rgba(255, 209, 90, 0.14);
  color: var(--yellow);
}

.cab-category {
  margin-top: 34px;
}

.cab-category:first-of-type {
  margin-top: 0;
}

.cab-category.is-hidden {
  display: none;
}

/* Tab panels must stay visible when active (reveal animation breaks on hidden/switched panels) */
.cabs .cab-category.reveal:not(.is-hidden) {
  opacity: 1;
  transform: none;
}

.cab-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 209, 90, 0.18);
}

.cab-category-heading span {
  color: var(--yellow);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.cab-category-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.charges-box {
  margin: 28px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 209, 90, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.charges-box h4 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 1rem;
}

.charges-box ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.charges-box li + li {
  margin-top: 6px;
}

.cab-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.cab-service-grid-grouped {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cab-card-category {
  cursor: default;
}

.cab-card-category:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.cab-model-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.cab-model-list li + li {
  margin-top: 8px;
}

.cab-model-btn {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.cab-model-btn:hover,
.cab-model-btn.is-selected {
  border-color: rgba(255, 209, 90, 0.55);
  background: rgba(255, 209, 90, 0.12);
  color: var(--yellow);
}

.cab-model-future {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(246, 239, 226, 0.55);
  font-size: 0.88rem;
}

.cab-model-future span {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 239, 226, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
}

.cab-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: var(--panel);
  cursor: pointer;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.cab-card.is-selected {
  border-color: rgba(255, 209, 90, 0.76);
  box-shadow: 0 0 0 4px rgba(255, 209, 90, 0.12), 0 28px 60px rgba(0, 0, 0, 0.36);
}

.cab-card-planned {
  cursor: default;
  opacity: 0.74;
}

.cab-card-planned:hover {
  transform: none;
}

.cab-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: radial-gradient(circle at 52% 45%, rgba(255, 209, 90, 0.14), rgba(255, 255, 255, 0.08) 34%, rgba(0, 0, 0, 0.28) 70%);
  transition: transform 0.45s ease;
}

.cab-card:hover img {
  transform: scale(1.08);
}

.cab-body {
  padding: 22px;
}

.badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 209, 90, 0.13);
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
}

.badge.planned {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(246, 239, 226, 0.74);
}

.cab-body p {
  color: var(--muted);
}

.cab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cab-btn:hover {
  background: rgba(255, 209, 90, 0.15);
}

.cab-btn:disabled {
  color: rgba(246, 239, 226, 0.5);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.06);
}

.cab-btn:disabled:hover {
  transform: none;
}

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

.urgent-booking {
  width: 100%;
  padding-right: max(18px, calc((100% - 1180px) / 2));
  padding-left: max(18px, calc((100% - 1180px) / 2));
}

.urgent-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(255, 209, 90, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 50%, rgba(255, 209, 90, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.urgent-panel h2 {
  margin-bottom: 12px;
}

.urgent-panel p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.urgent-contact {
  min-width: min(100%, 350px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
  text-align: center;
}

.urgent-contact span {
  display: block;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.urgent-number {
  display: block;
  margin: 10px 0 18px;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 28px rgba(255, 209, 90, 0.34);
}

.urgent-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.testimonials {
  width: 100%;
  padding-right: max(18px, calc((100% - 1180px) / 2));
  padding-left: max(18px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}

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

.review-card {
  padding: 28px;
}

.review-card img {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border: 2px solid rgba(255, 209, 90, 0.7);
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  margin-bottom: 14px;
  color: var(--yellow);
  letter-spacing: 0.08em;
}

.review-card h3 {
  margin: 18px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 24px;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.contact-panel a,
.contact-panel p {
  margin: 0;
  color: var(--cream);
}

.contact-panel span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-wrap {
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(0.78) contrast(1.08) brightness(0.78);
}

.contact-floats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-float,
.whatsapp-float {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.call-float {
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  box-shadow: 0 18px 40px rgba(255, 209, 90, 0.38);
}

.call-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 50px rgba(255, 209, 90, 0.52);
}

.call-float svg {
  width: 28px;
  fill: #15100a;
}

.whatsapp-float {
  background: #25d366;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.38);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 50px rgba(37, 211, 102, 0.52);
}

.whatsapp-float svg {
  width: 34px;
  fill: #fff;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  padding: 46px 18px 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 30px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer p,
.copyright {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-links a {
  color: rgba(246, 239, 226, 0.78);
}

.socials {
  display: flex;
  gap: 10px;
  
}
.socials img {
    width: 24px;
    height: 24px;
    display: block;
}


.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--yellow);
  font-weight: 900;
}

.copyright {
  width: min(1180px, 100%);
  margin: 30px auto 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }

  to {
    transform: scale(1.06) translateX(-1.2%);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 14px 36px rgba(214, 162, 50, 0.28);
  }

  50% {
    box-shadow: 0 18px 56px rgba(255, 209, 90, 0.56);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 126px;
  }

  .booking-card {
    max-width: 540px;
  }

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

  .cab-service-grid-grouped {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 92px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: rgba(5, 5, 5, 0.94);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links a {
    padding: 12px;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    --hero-video-height: min(54vh, 430px);
  }

  .hero-bg,
  .hero-video,
  .hero-overlay {
    inset: 0 0 auto;
    height: var(--hero-video-height);
  }

  .hero-video {
    object-fit: cover;
    object-position: center 42%;
    transform: none;
    filter: brightness(1.14) contrast(1.22) saturate(1.35);
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.32) 62%,
      rgba(5, 5, 5, 0.98) 100%
    );
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 0 0 48px;
  }

  .hero-copy {
    margin-top: calc(var(--hero-video-height) - 156px);
    padding-bottom: 6px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.95);
  }

  .booking-card {
    max-height: none;
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.97), rgba(8, 8, 8, 0.98));
  }

  .why-grid,
  .testimonial-grid,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .testimonials {
    background-attachment: scroll;
  }
}

@media (max-width: 620px) {
  .hero {
    --hero-video-height: min(50vh, 380px);
  }

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

  .hero-copy {
    margin-top: calc(var(--hero-video-height) - 132px);
  }

  .hero-stats {
    gap: 10px;
  }

  .brand span:last-child {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.3rem);
  }

  .hero-actions,
  .hero-stats,
  .urgent-actions {
    display: grid;
  }

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

  .section {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .service-grid,
  .cab-grid,
  .cab-service-grid {
    grid-template-columns: 1fr;
  }

  .cab-category-heading {
    display: block;
  }

  .cab-category-heading p {
    margin-top: 8px;
    text-align: left;
  }

  .cab-card img {
    height: 220px;
    min-height: 180px;
    object-fit: contain;
  }

  .cab-service-grid {
    gap: 18px;
  }

  .booking-card {
    border-radius: 22px;
  }

  .contact-floats {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .call-float,
  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .call-float svg {
    width: 26px;
  }

  .whatsapp-float svg {
    width: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.legal-page .legal-section {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 138px;
}

.legal-content {
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.legal-content h2 {
  margin: 28px 0 12px;
  font-size: 1.2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-contact a {
  color: var(--yellow);
  font-weight: 700;
}
