:root {
  --yellow: #ffc107;
  --yellow-deep: #e5a900;
  --yellow-soft: #fff0a8;
  --black: #050505;
  --navy: #0f1724;
  --navy-2: #171c29;
  --white: #ffffff;
  --muted: #667085;
  --line: #e9edf3;
  --green: #18b875;
  --shadow: 0 22px 58px rgba(10, 16, 28, 0.18);
  --hard-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7f8fb, #ffffff 36%, #f6f7f9);
  background-size: 34px 34px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(19, 20, 24, 0.86));
  border-bottom: 1px solid rgba(255, 193, 7, 0.18);
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
}

.site-header.scrolled {
  min-height: 70px;
  background: rgba(7, 9, 13, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--black);
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow), #fff6c8 48%, var(--yellow-deep));
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(255, 196, 0, 0.45);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 800;
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-call {
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow), #ffdb4d);
  box-shadow: 0 10px 28px rgba(255, 193, 7, 0.38), inset 0 -3px 0 rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.header-call:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 760px;
  padding: 120px clamp(20px, 6vw, 86px) 86px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.home-hero,
.about-hero,
.services-hero,
.contact-hero {
  background-position: center;
  background-size: cover;
}

.home-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(5, 5, 5, 0.72) 45%, rgba(255, 193, 7, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.74)),
    url("assets/images/hero-kolkata-taxi.jpg");
}

.about-hero {
  background-image: linear-gradient(90deg, rgba(5, 7, 12, 0.92), rgba(5, 7, 12, 0.45)), url("assets/images/about-driver.jpg");
}

.services-hero {
  background-image: linear-gradient(90deg, rgba(5, 7, 12, 0.9), rgba(5, 7, 12, 0.5)), url("assets/images/svc-roundtrip.jpg");
}

.contact-hero {
  background-image: linear-gradient(90deg, rgba(5, 7, 12, 0.9), rgba(5, 7, 12, 0.5)), url("assets/images/why-ontime.jpg");
}

.page-hero {
  min-height: 560px;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  content: "";
  background: linear-gradient(0deg, #f8fafc, transparent);
  z-index: -1;
}

.hero-content {
  width: min(820px, 100%);
  padding: 32px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.17rem;
  line-height: 1.2;
}

.hero p,
.page-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

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

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow), #ffde59);
  box-shadow: 0 14px 38px rgba(255, 193, 7, 0.38), inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}

.btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-green {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 34px rgba(24, 184, 117, 0.28);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 193, 7, 0.28);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.hero-road {
  position: absolute;
  right: 4vw;
  bottom: 0;
  width: min(48vw, 700px);
  height: 420px;
  opacity: 0.9;
  pointer-events: none;
}

.hero-road::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 86%;
  height: 110px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.18), transparent);
  border-top: 2px solid rgba(255, 255, 255, 0.28);
  transform: skewX(-18deg);
}

.route {
  position: absolute;
  display: block;
  border: 2px dashed rgba(255, 255, 255, 0.34);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 90px 0 0;
  animation: pulseRoute 2.8s ease-in-out infinite;
}

.route-one {
  right: 78px;
  bottom: 140px;
  width: 360px;
  height: 195px;
}

.route-two {
  right: 0;
  bottom: 92px;
  width: 510px;
  height: 280px;
  opacity: 0.34;
  animation-delay: 0.7s;
}

.floating-car {
  position: absolute;
  right: clamp(30px, 12vw, 160px);
  bottom: 92px;
  width: 210px;
  height: 68px;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.35));
  animation: driveCar 6s ease-in-out infinite;
}

.floating-car span,
.floating-car span::before,
.floating-car span::after {
  position: absolute;
  display: block;
  content: "";
}

.floating-car span {
  inset: 12px 8px 16px;
  background: linear-gradient(135deg, var(--yellow), #ffd84d);
  border-radius: 36px 48px 18px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.floating-car span::before {
  left: 36px;
  top: -18px;
  width: 78px;
  height: 34px;
  background: #111827;
  border: 5px solid var(--yellow);
  border-radius: 38px 44px 0 0;
}

.floating-car span::after {
  left: 24px;
  bottom: -12px;
  width: 24px;
  height: 24px;
  background: #111827;
  border: 5px solid #f6f7fb;
  border-radius: 50%;
  box-shadow: 112px 0 0 -5px #111827, 112px 0 0 0 #f6f7fb;
}

.section,
.section-tight {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 86px);
}

.section-tight {
  padding-top: 38px;
  padding-bottom: 38px;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: -94px;
  position: relative;
  z-index: 4;
}

.strip-card,
.service-card,
.why-card,
.testimonial-card,
.contact-tile,
.value-card,
.counter-card,
.contact-panel,
.booking-form {
  background: var(--white);
  border: 1px solid rgba(255, 193, 7, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.strip-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.strip-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.strip-card h2 {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  margin: 0;
  padding: 12px 14px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.88), rgba(255, 193, 7, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 1.05rem;
}

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

.premium-ribbon {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 42px);
  padding: 18px 20px;
  color: var(--yellow);
  background: #050505;
  border-block: 1px solid rgba(255, 193, 7, 0.28);
  overflow: hidden;
}

.premium-ribbon span {
  position: relative;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-ribbon span::after {
  margin-left: clamp(12px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.35);
  content: "/";
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
}

.section-image {
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--hard-shadow);
}

.section-image::after {
  position: absolute;
  inset: auto 24px 24px;
  padding: 14px 16px;
  color: var(--black);
  content: "Tirupur taxi booking specialist";
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 950;
}

.section-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  background: #fff9df;
  border: 1px solid #f6df89;
  border-radius: 8px;
  font-weight: 850;
}

.feature-list li::before {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--green);
  clip-path: polygon(14% 48%, 34% 69%, 82% 18%, 94% 31%, 35% 90%, 3% 58%);
}

.dark-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 193, 7, 0.14) 0 12%, transparent 12% 100%),
    radial-gradient(circle at 18% 0%, rgba(255, 193, 7, 0.22), transparent 32%),
    linear-gradient(135deg, var(--black), #141414 48%, var(--navy));
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::before {
  display: none;
}

.section-heading p,
.dark-band p {
  color: rgba(255, 255, 255, 0.68);
}

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

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

.service-card {
  position: relative;
  overflow: hidden;
  color: var(--navy);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.service-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
}

.service-card::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  content: "";
  background: var(--yellow);
  border: 6px solid rgba(5, 5, 5, 0.84);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.18);
}

.service-card h3,
.service-card p {
  padding-inline: 20px;
}

.service-card h3 {
  padding-top: 20px;
}

.service-card p {
  padding-bottom: 22px;
  color: var(--muted);
}

.light-grid .service-card {
  box-shadow: 0 14px 38px rgba(10, 16, 28, 0.1);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 210px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(10, 16, 28, 0.16);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 12px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 950;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6));
}

.gallery-grid figure:hover img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.08);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.why-section {
  background:
    linear-gradient(180deg, #fff, #f2f3f5),
    linear-gradient(90deg, rgba(255, 193, 7, 0.08) 50%, transparent 50%);
}

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

.why-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  transition: transform 0.25s ease;
}

.why-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.why-card h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 16px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 8px;
  font-size: 1.35rem;
}

.counter-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 42px clamp(20px, 6vw, 86px);
  background: repeating-linear-gradient(135deg, var(--yellow) 0 18px, #ffd64a 18px 36px);
}

.counter-card {
  padding: 26px;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.counter-card strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.counter-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 30px;
}

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

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.contact-tile {
  display: grid;
  gap: 8px;
  padding: 25px;
  min-height: 132px;
}

.contact-tile span,
.contact-panel span {
  color: var(--muted);
  font-weight: 850;
}

.contact-tile strong,
.contact-panel strong {
  word-break: break-word;
}

.booking-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 193, 7, 0.42), transparent 24%),
    linear-gradient(135deg, #fff9dc, #f7fbff 48%, #fff);
}

.booking-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-highlights {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.booking-highlights span {
  padding: 14px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #232323);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  font-weight: 850;
}

.booking-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 193, 7, 0.1), transparent 26%),
    #ffffff;
  border: 1px solid rgba(255, 193, 7, 0.38);
  box-shadow: 0 28px 80px rgba(10, 16, 28, 0.18);
}

.booking-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--yellow) 0 24px, #050505 24px 48px);
  border-radius: 8px 8px 0 0;
}

.form-title {
  grid-column: 1 / -1;
  display: grid;
  gap: 2px;
  padding: 8px 0 10px;
}

.form-title strong {
  font-size: 1.35rem;
}

.form-title span {
  color: var(--muted);
  font-weight: 750;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: var(--navy);
  background: #fbfbfc;
  border: 1px solid #d4d8e2;
  border-radius: 8px;
  font: inherit;
  font-weight: 750;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.18);
}

.booking-form textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.booking-form button {
  grid-column: 1 / -1;
}

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

.value-card {
  padding: 26px;
  color: var(--navy);
}

.image-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
}

.image-story img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-band {
  margin: 0 clamp(20px, 6vw, 86px) 90px;
  padding: clamp(34px, 6vw, 70px);
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #202a3d);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

.center-actions {
  justify-content: center;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-panel a {
  display: grid;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.map-band {
  padding: 0 clamp(20px, 6vw, 86px) 90px;
}

.map-band iframe {
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr;
  gap: 34px;
  padding: 58px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 193, 7, 0.1), transparent 30%),
    #050505;
}

.site-footer h2,
.site-footer strong {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-top: 10px;
}

.site-footer a:hover {
  color: var(--yellow);
}

.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(24, 184, 117, 0.32);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js-enabled .reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes driveCar {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-58px, -22px, 0) rotate(-2deg);
  }
}

@keyframes pulseRoute {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    background: rgba(7, 9, 13, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .main-nav.open {
    display: flex;
  }

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

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

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

  .contact-cards,
  .counter-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .site-header {
    min-height: 72px;
    gap: 10px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: 650px;
    padding: 110px 20px 78px;
  }

  .page-hero {
    min-height: 500px;
  }

  .floating-car,
  .hero-road {
    display: none;
  }

  .hero-actions,
  .center-actions {
    display: grid;
  }

  .image-strip,
  .split-section,
  .service-grid,
  .why-grid,
  .testimonial-grid,
  .contact-cards,
  .booking-section,
  .contact-layout,
  .values-grid,
  .image-story,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .image-strip {
    margin-top: -42px;
  }

  .feature-list,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .section-image img,
  .image-story img {
    min-height: 0;
    height: 330px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .premium-ribbon {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .float-whatsapp {
    display: none;
  }

  .counter-band {
    grid-template-columns: 1fr;
  }
}

@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;
  }
}
