@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap");
:root {
  --ink: #173c3a;
  --green: #235b52;
  --orange: #e76642;
  --gold: #efa343;
  --cream: #f8f4eb;
  --paper: #fffdf8;
  --muted: #60716d;
  --line: #d9e0d8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font:
    15px "DM Sans",
    sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.topbar {
  background: var(--ink);
  color: #e7f0e9;
  font-size: 12px;
  padding: 8px 0;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}
.brand small {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}
.brand-mark {
  background: transparent;
  border: 0;
  width: 68px;
  height: 68px;
  padding: 0;
  border-radius: 0;
  display: block;
  object-fit: contain;
  box-shadow: none;
}
nav {
  display: flex;
  gap: 31px;
  color: #486460;
  font-weight: 600;
}
nav a:hover,
nav a.active {
  color: var(--orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.language {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 8px 12px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px 8px;
  border: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  cursor: pointer;
  flex: 0 0 42px;
}
.menu span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}
.btn {
  border: 0;
  cursor: pointer;
  display: inline-block;
  border-radius: 5px;
  padding: 13px 22px;
  font: 700 13px "DM Sans";
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px #e7664233;
}
.btn-outline {
  color: var(--ink);
  border: 1px solid #b7c7bd;
  background: transparent;
}
.hero {
  padding: 82px 0 95px;
  overflow: hidden;
  position: relative;
}
.hero:after {
  content: "GO";
  position: absolute;
  font: 800 250px "Playfair Display";
  color: #e5eee4;
  right: -35px;
  bottom: -75px;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
h1 {
  font-size: clamp(43px, 5vw, 72px);
  margin: 17px 0 20px;
  letter-spacing: -0.04em;
}
h1 em {
  color: var(--orange);
  font-style: normal;
}
.hero-copy > p {
  color: var(--muted);
  max-width: 475px;
  font-size: 16px;
}
.actions {
  display: flex;
  gap: 12px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 18px;
}
.hero-visual {
  position: relative;
  min-height: 490px;
}
.hero-photo {
  width: 84%;
  height: 438px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 180px 180px 8px 8px;
  filter: saturate(0.85);
}
.circle-note {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  font-family: "Playfair Display";
  font-weight: bold;
  font-size: 18px;
  line-height: 1.25;
  transform: rotate(-9deg);
}
.year-tag {
  position: absolute;
  right: 0;
  top: 28px;
  background: #fff;
  padding: 14px 19px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 8px 30px #17433a1c;
  font-size: 12px;
}
.strip {
  background: var(--green);
  color: #fff;
  padding: 20px 0;
}
.strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.strip strong {
  font: 600 18px "Playfair Display";
}
.stats {
  display: flex;
  gap: 42px;
}
.stat b {
  display: block;
  font: 700 25px "Playfair Display";
  color: #ffd37e;
}
.stat small {
  font-size: 11px;
  opacity: 0.8;
}
section {
  padding: 92px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-head h2 {
  font-size: clamp(31px, 4vw, 47px);
  margin-top: 12px;
}
.section-head p {
  color: var(--muted);
  max-width: 410px;
  margin: 0;
}
.courses,
.reviews {
  background: var(--paper);
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.course {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 25px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.course:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px #173c3a12;
}
.course-num {
  color: var(--orange);
  font-weight: bold;
  font-size: 12px;
}
.course h3 {
  font-size: 25px;
  margin: 16px 0 12px;
}
.course p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 18px;
}
.course a {
  margin-top: auto;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  height: 470px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px 140px 8px 8px;
}
.about-copy h2,
.schedule h2 {
  font-size: 45px;
  margin: 13px 0 20px;
}
.about-copy p,
.schedule p {
  color: var(--muted);
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
  font-weight: 600;
  font-size: 13px;
}
.checks span:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 9px;
  vertical-align: -3px;
  background: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23e76642%27 stroke-width=%272.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%279.5%27/%3E%3Cpath d=%27m8 12 2.6 2.6L16.5 9%27/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.schedule {
  background: #e9efe7;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 65px;
  align-items: start;
}
.time-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.time {
  background: #fff;
  padding: 20px;
  border-left: 3px solid var(--gold);
}
.time b {
  display: block;
  font-size: 15px;
}
.time small {
  color: var(--muted);
}
.vehicles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.vehicle {
  background: var(--paper);
  padding-bottom: 17px;
}
.vehicle img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.vehicle b {
  padding: 0 15px;
  display: block;
  margin-top: 12px;
}
.location {
  background: var(--ink);
  color: #fff;
}
.location h2 {
  color: #fff;
  font-size: 43px;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.location p {
  color: #c2d0c8;
  max-width: 490px;
}
.map {
  height: 260px;
  background: linear-gradient(135deg, #8ca496, #d3d8c7);
  border: 1px solid #d9d0c3;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.map:before {
  content: none;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.pin {
  display: none;
}
.review-box {
  background: var(--cream);
  padding: 30px;
  min-height: 190px;
  position: relative;
}
.review-box q {
  display: block;
  font: 21px/1.45 "Playfair Display";
  max-width: 720px;
}
.review-author {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}
.review-controls {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: flex;
  gap: 8px;
}
.review-controls button {
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  color: var(--ink);
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  counter-reset: steps;
}
.step {
  counter-increment: steps;
  border-top: 2px solid var(--orange);
  padding-top: 17px;
}
.step:before {
  content: "0" counter(steps);
  color: var(--orange);
  font-size: 13px;
  font-weight: bold;
}
.step h3 {
  font-size: 20px;
  margin: 15px 0 8px;
}
.step p {
  color: var(--muted);
  font-size: 13px;
}
footer {
  background: var(--green);
  color: #e4eee8;
  padding: 45px 0 22px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 35px;
}
footer .brand {
  color: #fff;
}
footer p {
  color: #b9ccc1;
  max-width: 280px;
  font-size: 13px;
}
.social {
  display: flex;
  gap: 9px;
  align-items: center;
}
.social a {
  border: 1px solid #fff4;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #e7f0e9;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.social a:hover {
  color: #fff !important;
  background: #ffffff24 !important;
  border-color: #ffffffa6;
  transform: translateY(-2px);
}
.social a:nth-child(1) {
  color: #fff;
  background: #172f35;
}
.social a:nth-child(2) {
  color: #fff;
  background: #20b85a;
}
.social a:nth-child(3) {
  color: #fff;
  background: #1877f2;
}
.social a:nth-child(4) {
  color: #ffd37e;
  background: #7b5d27;
}
.social a:nth-child(1):hover,
.social a:nth-child(2):hover,
.social a:nth-child(3):hover,
.social a:nth-child(4):hover {
  background: #ffffff24 !important;
}
.social svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}
.social .icon-email {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.copyright {
  border-top: 1px solid #fff4;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: #b9ccc1;
  font-size: 11px;
}
@media (max-width: 900px) {
  .wrap {
    width: min(100% - 32px, 600px);
  }
  .nav {
    gap: 10px;
    min-width: 0;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 25px;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    z-index: 10;
    box-shadow: 0 12px 24px #181b2330;
  }
  nav.open {
    display: flex;
  }
  .menu {
    display: block;
    position: relative;
    z-index: 11;
  }
  .nav-actions .btn {
    display: none;
  }
  .hero-grid,
  .about-grid,
  .schedule-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero {
    padding: 55px 0;
  }
  .hero-visual {
    min-height: 410px;
  }
  .hero-photo {
    height: 370px;
  }
  .course-grid {
    grid-template-columns: 1fr;
  }
  .vehicles {
    grid-template-columns: 1fr 1fr;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .strip .wrap,
  .footer-main,
  .copyright {
    align-items: flex-start;
    flex-direction: column;
  }
  .stats {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 18px;
  }
  .about-image {
    height: 330px;
  }
}
@media (max-width: 460px) {
  .topbar .wrap {
    display: block;
  }
  .topbar span {
    display: block;
  }
  .hero-visual {
    min-height: 345px;
  }
  .hero-photo {
    height: 315px;
  }
  .circle-note {
    width: 115px;
    height: 115px;
    font-size: 15px;
    padding: 17px;
  }
  .year-tag {
    top: 0;
  }
  .stats {
    flex-wrap: wrap;
  }
  .stat {
    min-width: 42%;
  }
  .time-list,
  .checks {
    grid-template-columns: 1fr;
  }
  .vehicles {
    gap: 9px;
  }
  .vehicle img {
    height: 105px;
  }
  .location h2,
  .schedule h2,
  .about-copy h2 {
    font-size: 35px;
  }
  .copyright {
    gap: 8px;
  }
}

/* Photo-backed sections: the dark wash keeps every heading readable while
         letting the school's own photos add depth behind the content. */
.courses,
.about-section,
.schedule,
.vehicles-section,
.reviews-section,
.process-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--paper);
}

.courses::before,
.about-section::before,
.schedule::before,
.vehicles-section::before,
.reviews-section::before,
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.62;
  filter: saturate(0.9) contrast(0.95);
  transform: scale(1.02);
}

.courses::after,
.about-section::after,
.schedule::after,
.vehicles-section::after,
.reviews-section::after,
.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #171b24d1, #303544ab 55%, #8b604a9e);
  pointer-events: none;
}

.courses > .wrap,
.about-section > .wrap,
.schedule > .wrap,
.vehicles-section > .wrap,
.reviews-section > .wrap,
.process-section > .wrap {
  position: relative;
  z-index: 2;
}

.courses::before {
  background-image: url("images/bg.png");
}

.courses::after {
  background: linear-gradient(110deg, #171b24e0, #303544b8 52%, #9a674fa8);
}

.courses .section-head h2,
.courses .section-head p {
  color: #fff;
  text-shadow: 0 2px 12px #173c3acc;
}

.about-section::before {
  background-image: url("images/scene.jpg");
  opacity: 0.58;
}

.about-section::after {
  background: linear-gradient(100deg, #1e2430e0, #4b3d42b5 58%, #c29a63a3);
}

.about-section .about-copy h2,
.about-section .about-copy p,
.about-section .checks {
  color: #fff;
  text-shadow: 0 2px 10px #173c3acc;
}

.schedule::before {
  background-image: url("images/bg a.png");
  opacity: 0.58;
}

.schedule::after {
  background: linear-gradient(110deg, #7a5362c7, #b98b68b5 50%, #343b4ca8);
}

.vehicles-section::before {
  background-image: url("images/vehicles.jpg");
  opacity: 0.62;
}

.vehicles-section::after {
  background: linear-gradient(110deg, #4a3035c9, #aa705ba8 50%, #202b3cb8);
}

.vehicles-section .section-head h2,
.vehicles-section .section-head p {
  color: #fff;
  text-shadow: 0 2px 10px #173c3acc;
}

.reviews-section::before {
  background-image: url("images/bg (2).png");
  opacity: 0.58;
}

.reviews-section::after {
  background: linear-gradient(110deg, #202633e3, #4a3445c2 55%, #a56f5aaa);
}

.reviews-section .section-head h2,
.reviews-section .section-head p {
  color: #fff;
  text-shadow: 0 2px 10px #173c3acc;
}

.process-section::before {
  background-image: url("images/kashyap.jpg");
  opacity: 0.55;
}

.process-section::after {
  background: linear-gradient(110deg, #e8d2b2c7, #c7a58da8 55%, #5c5260a3);
}

.about-section .about-image {
  box-shadow: 0 18px 45px #173c3a22;
}

.courses .course,
.schedule .time,
.vehicles-section .vehicle,
.reviews-section .review-box {
  background: #fffaf2f2;
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 30px #173c3a12;
}

.process-section .step {
  background: #fffaf2e8;
  padding: 17px 18px 12px;
  border-radius: 3px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 28px;
  align-items: start;
}

.trial-figure {
  margin: 0;
  background: #fffaf2e8;
  border: 1px solid #d9e0d8;
  border-top: 3px solid var(--orange);
  border-radius: 3px;
  padding: 14px 14px 10px;
  box-shadow: 0 12px 25px #181b2326;
}

.trial-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.trial-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.flow-track {
  position: relative;
  height: 190px;
  margin: 6px 0 0;
  overflow: visible;
}

.flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-car {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 46px;
  line-height: 1;
  transform: translate(-50%, -82%) scaleX(-1);
  filter: drop-shadow(0 8px 8px #181b2340);
  z-index: 3;
  will-change: left, top;
  transition: transform 160ms linear;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: -34px 0 8px;
  position: relative;
  z-index: 4;
}

.flow-cell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  padding-top: 74px;
}

.flow-cell .step {
  flex: 1;
}

.flow-pin {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 5;
}

.flow-pin i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: 3px solid #fffaf1;
  box-shadow: 0 8px 18px #181b2333;
  display: grid;
  place-items: center;
  font:
    700 22px "DM Sans",
    sans-serif;
  font-style: normal;
  order: 2;
}

.flow-pin span {
  width: 3px;
  height: 24px;
  display: block;
  background: var(--orange);
  opacity: 0.85;
  order: 1;
  margin-bottom: 4px;
}

/* Flow line already shows 1-2-3-4, so hide the old 01/02 numbers on desktop. */
.flow-steps .step:before {
  display: none;
}

.flow-steps .step h3 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .brand-mark {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
  .language {
    display: inline-block;
    min-width: 94px;
  }
  .nav-actions {
    gap: 7px;
  }
}
@media (max-width: 460px) {
  .language {
    min-width: 0;
    padding: 6px 8px;
    font-size: 11px;
  }
  .brand {
    font-size: 14px;
    gap: 7px;
  }
  .brand-mark {
    width: 46px;
    height: 46px;
  }
}

.eyebrow-light {
  color: #ffd37e;
}

/* ================================================================
   Luxury Drive redesign
   Content stays the same; this layer gives the page one stronger visual
   identity: charcoal, ivory, champagne and terracotta with editorial spacing.
================================================================ */
:root {
  --ink: #20232b;
  --green: #292d38;
  --orange: #b86646;
  --gold: #d4a85d;
  --cream: #eee7dc;
  --paper: #fbf8f2;
  --muted: #69707b;
  --line: #d9d0c3;
  --night: #181b23;
  --plum: #493641;
  --ivory: #fffaf1;
}

body {
  background: #eee7dc;
  color: var(--ink);
}

.topbar {
  background: var(--night);
  color: #e8d6b7;
  border-bottom: 1px solid #ffffff18;
  letter-spacing: 0.02em;
}

header {
  background: #fbf8f2f2;
  border-bottom: 1px solid #d9d0c3;
  box-shadow: 0 8px 25px #181b2312;
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 62px;
  height: 62px;
}

nav {
  color: #555b66;
  letter-spacing: 0.02em;
}

nav a {
  position: relative;
  padding: 27px 0;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--orange);
  transition: right 0.25s ease;
}

nav a:hover::after,
nav a.active::after {
  right: 0;
}

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

.language {
  border-color: #cfc4b5;
  color: var(--ink);
  border-radius: 4px;
}

.btn {
  border-radius: 2px;
  padding: 14px 24px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 11px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  background: var(--orange);
  box-shadow: 0 10px 24px #b8664640;
}

.btn-primary:hover {
  background: #994b32;
  box-shadow: 0 14px 28px #b8664652;
}

.btn-outline {
  color: var(--ink);
  border: 1px solid #b9ac9d;
  background: #fffaf155;
}

.hero {
  padding: 105px 0 112px;
  background: var(--night);
  color: #f8f0e4;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #181b23f5 0%, #181b23df 38%, #181b236b 100%),
    url("hero-driving.jpg") center/cover;
  opacity: 0.96;
}

.hero::after {
  content: "07";
  color: #ffffff0d;
  font-size: 310px;
  right: 3%;
  bottom: -105px;
  z-index: 0;
}

.hero-grid,
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 590px;
}

.hero .eyebrow,
.hero h1,
.hero-copy > p,
.hero .trust {
  color: #f8f0e4;
}

.hero .eyebrow,
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.21em;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.02;
  margin-top: 20px;
}

h1 em {
  color: #e0aa61;
}

.hero-copy > p {
  color: #ded8cf;
  line-height: 1.8;
}

.hero .btn-outline {
  color: #f8f0e4;
  border-color: #f8f0e466;
  background: #ffffff0d;
}

.hero .trust {
  color: #c6c0b8;
}

.hero-photo {
  width: 86%;
  height: 465px;
  border: 0;
  border-radius: 2px;
  padding: 0;
  background: transparent;
  filter: saturate(0.85) contrast(1.05);
  box-shadow: 0 24px 50px #00000045;
}

.circle-note {
  background: var(--gold);
  color: var(--night);
  box-shadow: 0 12px 30px #00000045;
}

.year-tag {
  background: var(--ivory);
  color: var(--ink);
  border-left-color: var(--gold);
  box-shadow: 0 12px 28px #00000045;
}

.strip {
  background: var(--orange);
  padding: 24px 0;
  box-shadow: 0 8px 20px #181b2322;
}

.strip strong {
  letter-spacing: 0.02em;
}

.stat b {
  color: #fff1ce;
}

section {
  padding: 112px 0;
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(35px, 4vw, 54px);
}

.section-head p {
  line-height: 1.8;
}

.google-reviews-link {
  display: inline-block;
  margin-left: auto;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.google-review-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -18px 0 30px;
  padding: 13px 18px;
  color: #e6ddd1;
  background: #181b23b8;
  border: 1px solid #d4a85d66;
  box-shadow: 0 10px 25px #181b2330;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.google-mark {
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fffaf1;
  color: #4285f4;
  font:
    700 17px Arial,
    sans-serif;
}

.google-reviews-link:hover {
  color: #fffaf1;
  transform: translateX(3px);
}

/* Every photo section gets a visible image, not a washed-out white veil. */
.courses,
.about-section,
.schedule,
.vehicles-section,
.reviews-section,
.process-section {
  background: var(--paper);
}

.courses::before,
.about-section::before,
.schedule::before,
.vehicles-section::before,
.reviews-section::before,
.process-section::before {
  opacity: 0.52;
  filter: saturate(0.82) contrast(1.08);
}

.courses::after,
.about-section::after,
.schedule::after,
.vehicles-section::after,
.reviews-section::after,
.process-section::after {
  background: linear-gradient(110deg, #181b23e8, #292d38b8 52%, #774e4199);
}

.courses .section-head h2,
.courses .section-head p,
.about-section .about-copy h2,
.about-section .about-copy p,
.about-section .checks,
.schedule h2,
.schedule p,
.vehicles-section .section-head h2,
.vehicles-section .section-head p,
.reviews-section .section-head h2,
.reviews-section .section-head p,
.process-section .section-head h2,
.process-section .section-head p {
  color: #fffaf1;
  text-shadow: 0 2px 18px #00000070;
}

.about-section::after {
  background: linear-gradient(100deg, #181b23ed, #493641c2 58%, #8b61489d);
}

.schedule::after {
  background: linear-gradient(110deg, #6e4558d9, #a7755fc4 50%, #262d3bba);
}

.vehicles-section::after {
  background: linear-gradient(110deg, #3c2931dc, #9c614db7 52%, #202938c4);
}

.reviews-section::after {
  background: linear-gradient(110deg, #181b23ee, #493641d0 55%, #a26951a8);
}

.process-section::after {
  background: linear-gradient(110deg, #d0a878bd, #8e6a6ab0 55%, #303542b5);
}

.course-grid {
  gap: 22px;
}

.course {
  background: #fffaf1ed;
  border: 0;
  border-top: 3px solid var(--orange);
  padding: 30px;
  min-height: 325px;
  box-shadow: 0 16px 35px #181b2326;
}

.course:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px #181b2340;
}

.course-num,
.course a {
  color: var(--orange);
  letter-spacing: 0.08em;
}

.course h3 {
  font-size: 28px;
}

.course p {
  line-height: 1.75;
}

.about-grid {
  gap: 90px;
}

.about-image {
  border-radius: 2px;
  border: 0;
  box-shadow: 0 20px 42px #181b2340 !important;
}

.checks span::before {
  filter: sepia(1) saturate(2);
}

.schedule-grid {
  gap: 80px;
}

.time-list {
  gap: 16px;
}

.time {
  background: #fffaf1ed;
  border-left: 4px solid var(--gold);
  padding: 24px;
  box-shadow: 0 14px 28px #181b2328;
  transition: transform 0.2s ease;
}

.time:hover {
  transform: translateY(-4px);
}

.vehicles {
  gap: 20px;
}

.vehicle {
  background: #fffaf1ef;
  border: 1px solid #ffffff80;
  padding-bottom: 18px;
  box-shadow: 0 15px 30px #181b2330;
  overflow: hidden;
}

.vehicle img {
  height: 160px;
  filter: saturate(0.8);
  transition: transform 0.35s ease;
}

.vehicle:hover img {
  transform: scale(1.07);
}

.vehicle b {
  color: var(--ink);
  letter-spacing: 0.03em;
}

.location {
  background: var(--night);
  border-top: 5px solid var(--gold);
}

.location h2 {
  font-size: 52px;
}

.location p {
  color: #d2cbc1;
  line-height: 1.85;
}

.map {
  border: 1px solid #d9d0c3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 45px #00000030;
}

.review-box {
  display: block;
  position: relative;
  border-left: 5px solid var(--gold);
  background: #fffaf1ef !important;
  padding: 42px 90px 38px;
  box-shadow: 0 18px 35px #181b2330 !important;
  text-align: center;
}

.review-photo-wrap {
  width: 156px;
  height: 156px;
  margin: 0 auto 25px;
  position: relative;
  overflow: hidden;
  background: var(--night);
  border: 6px solid #fffaf1;
  border-radius: 50%;
  box-shadow:
    0 0 0 2px var(--gold),
    0 14px 30px #181b2340;
}

.review-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, #00000022);
  pointer-events: none;
}

#reviewPhoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.45s ease,
    transform 0.7s ease;
}

#reviewPhoto.review-photo-changing {
  animation: reviewPhotoIn 0.65s ease both;
}

@keyframes reviewPhotoIn {
  from {
    opacity: 0.25;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.review-photo-label {
  position: absolute;
  left: 50%;
  bottom: 13px;
  z-index: 1;
  color: #fffaf1;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.18em;
  font-weight: 700;
  transform: translateX(-50%);
}

.review-copy {
  min-width: 0;
}

.review-box q {
  display: block;
  max-width: 740px;
  margin: 0 auto;
  font-size: 25px;
  line-height: 1.5;
  white-space: pre-line;
}

.review-controls button {
  border-color: #cfc0ad;
  background: var(--night);
  color: #fffaf1;
}

.review-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  pointer-events: none;
}

.review-controls button {
  pointer-events: auto;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 19px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.review-controls button:hover {
  transform: scale(1.1);
  background: var(--orange);
}

.process {
  gap: 20px;
}

.step {
  background: #fffaf1e8 !important;
  border-top: 3px solid var(--orange);
  padding: 22px 20px 17px !important;
  box-shadow: 0 12px 25px #181b2326;
}

.step:before {
  color: var(--orange);
  letter-spacing: 0.12em;
}

footer {
  background: #12151c;
  border-top: 1px solid #d4a85d66;
}

footer p,
.copyright {
  color: #bdb5ab;
}

footer .eyebrow-light {
  color: var(--gold);
}

@media (max-width: 800px) {
  header {
    background: #fbf8f2;
  }

  nav {
    background: #fbf8f2;
  }

  nav a {
    padding: 5px 0;
  }

  nav a::after {
    bottom: 0;
  }

  .hero {
    padding: 72px 0 78px;
  }

  .hero-photo {
    width: 90%;
    height: 390px;
  }

  section {
    padding: 78px 0;
  }

  .about-grid,
  .schedule-grid {
    gap: 50px;
  }

  .about-image {
    box-shadow: 0 15px 30px #181b2340 !important;
  }

  .review-box {
    padding: 36px 58px 30px;
  }

  .google-review-cta {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: -12px;
  }

  .google-reviews-link {
    flex-basis: 100%;
    margin-left: 37px;
  }

  .review-controls {
    padding: 0 10px;
  }

  .flow-track {
    display: none;
  }
}

/* --- Flow: bubbles on top, car + road below (1-2 speech, 2-4 thought) --- */
.flow-steps--bubbles {
  margin: 0 0 -72px;
  align-items: stretch;
}
.flow-steps--bubbles .flow-cell {
  padding-top: 0;
  padding-bottom: 108px;
}
.flow-steps--bubbles .step {
  position: relative;
  border-radius: 18px;
  text-align: center;
}
.flow-steps--bubbles .flow-pin {
  top: auto;
  bottom: 0;
}
/* pin below bubble: number on top, stem going down to the road.
   Valleys (1 & 3 speech) sit lower, peaks (2 & 4 thought) sit higher —
   so speech pins drop further to touch the deep road. */
.flow-steps--bubbles .flow-pin i {
  order: 1;
}
.bubble-speech .flow-pin {
  bottom: -70px;
}
.bubble-thought .flow-pin {
  bottom: 0;
}
.flow-steps--bubbles .flow-pin span {
  order: 2;
  height: 62px;
  margin-bottom: 0;
  margin-top: 4px;
}
/* 1 & 3: classic speech tail (pointed) */
.bubble-speech .step::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 20px;
  height: 20px;
  background: #fffaf1;
  border-right: 1px solid #d9d0c3;
  border-bottom: 1px solid #d9d0c3;
  transform: translateX(-50%) rotate(45deg);
  border-bottom-right-radius: 4px;
}
/* 2 & 4: thought tail (two little bubbles trailing down) */
.bubble-thought .step {
  border-radius: 28px;
}
.bubble-thought .step::before {
  display: block !important;
  content: "" !important;
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fffaf1;
  border: 1px solid #d9d0c3;
  transform: translateX(-50%);
}
.bubble-thought .step::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fffaf1;
  border: 1px solid #d9d0c3;
  transform: translateX(-50%);
}
.flow-steps--bubbles + .flow-track {
  margin-top: 0;
  z-index: 1;
}
@media (max-width: 900px) {
  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }
  .flow-steps--bubbles {
    margin-bottom: -18px;
  }
  .flow-steps--bubbles .flow-cell {
    padding-bottom: 100px;
  }
  /* road is hidden on small screens, so keep all pins inside their cards */
  .bubble-speech .flow-pin,
  .bubble-thought .flow-pin {
    bottom: 0;
  }
}
@media (max-width: 560px) {
  .flow-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 47px;
  }

  .hero-photo {
    width: 88%;
    height: 315px;
  }

  .location h2 {
    font-size: 38px;
  }

  .review-box {
    padding: 25px;
  }

  .review-box q {
    font-size: 20px;
  }

  .review-photo-wrap {
    width: 128px;
    height: 128px;
  }
}

/* ================================================================
   Aurora Premium theme (inspired by reference picture)
   Flowing peach + violet + ocean-blue mesh, glass cards,
   pill tags, gradient buttons. Content/HTML untouched.
   ================================================================ */
:root {
  --ink: #232030;
  --muted: #6c6480;
  --line: #e9e2f2;
  --paper: #faf7ff;
  --cream: #f6f0fa;
  --night: #1d1830;
  --night2: #2c2350;
  --plum: #6b4b8a;
  --violet: #7b61c9;
  --blue: #1f8ac0;
  --cyan: #29c1d8;
  --peach: #ff9a62;
  --rose: #f4587c;
  --orange: #ff7a45;
  --gold: #c9a35c;
  --ivory: #fffdf8;
  --glass: #ffffffd9;
  --card-shadow: 0 22px 50px #3b2d6b26;
  --aurora: linear-gradient(
    115deg,
    #ff9a62 0%,
    #f4587c 28%,
    #8a5fc0 58%,
    #1f8ac0 88%
  );
}
/* ---------- Aurora base ---------- */
body {
  background:
    radial-gradient(1100px 520px at 8% -4%, #ffd9c2cc, transparent 60%),
    radial-gradient(900px 480px at 96% 6%, #c9b8f2cc, transparent 62%),
    linear-gradient(180deg, #fdf6f0 0%, #faf3fa 34%, #f2f4fd 68%, #eef6fb 100%);
  color: var(--ink);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(620px 300px at 12% 22%, #ff9a6240, transparent 65%),
    radial-gradient(720px 340px at 88% 30%, #1f8ac038, transparent 66%),
    radial-gradient(760px 360px at 55% 88%, #8a5fc02e, transparent 66%);
}
body > * {
  position: relative;
  z-index: 1;
}
.topbar {
  background: linear-gradient(90deg, #2c2350, #5b3a86 45%, #1f6f9e 100%);
  color: #ffe9d6;
  border-bottom: 0;
}
.topbar a {
  color: #fff;
}
header {
  background: #fffffff2;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px #3b2d6b1a;
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (max-width: 800px) {
  header,
  nav {
    background: #fffffff8;
  }
}
.brand {
  color: var(--night);
}
.brand small {
  color: var(--muted);
}
nav {
  color: #5d5474;
}
nav a:hover,
nav a.active {
  color: var(--rose);
}
nav a::after,
nav a:hover::after,
nav a.active::after {
  background: var(--aurora);
}
.language {
  border: 1px solid #d9cdf0;
  border-radius: 999px;
  color: var(--night);
  background: #fff;
}
.btn {
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 13px;
  padding: 13px 26px;
}
.btn-primary {
  background: linear-gradient(115deg, #ff8a4c, #f4587c 55%, #8a5fc0 110%);
  box-shadow: 0 14px 30px #f4587c4d;
}
.btn-primary:hover {
  background: linear-gradient(115deg, #f4763a, #e8436f 55%, #7550b5 110%);
  box-shadow: 0 18px 36px #f4587c5e;
}
.btn-outline {
  background: #ffffffcc;
  border: 1px solid #e3d5f5;
  color: var(--night);
  backdrop-filter: blur(8px);
}
/* ---------- Hero: aurora mesh like the reference ---------- */
.hero {
  background: var(--night);
  color: #fff7f0;
  overflow: hidden;
}
.hero::before {
  background:
    radial-gradient(560px 380px at 18% 30%, #ff9a62f2, transparent 68%),
    radial-gradient(520px 360px at 38% 62%, #f4587ccc, transparent 68%),
    radial-gradient(700px 460px at 62% 28%, #8a5fc0d9, transparent 70%),
    radial-gradient(760px 480px at 88% 66%, #1f8ac0e6, transparent 70%),
    radial-gradient(420px 320px at 78% 20%, #29c1d899, transparent 68%),
    linear-gradient(112deg, #2c1f4d 0%, #54286e 30%, #24497e 62%, #101a36 100%),
    url("hero-driving.jpg") center/cover;
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(100deg, transparent 30%, #ffffff14 42%, transparent 55%),
    linear-gradient(255deg, transparent 55%, #ffd9c233 72%, transparent 88%);
  pointer-events: none;
  top: auto;
  right: auto;
  bottom: auto;
  color: transparent;
  font-size: 0;
}
.hero .eyebrow {
  color: #ffd9c2;
}
.hero h1 {
  color: #fff;
}
h1 em {
  background: linear-gradient(92deg, #ffc79b, #ff8fb0 45%, #9fd8ff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p {
  color: #f2e4e8;
}
.hero .trust {
  color: #f4dcd2;
}
.hero .stars {
  color: #ffc79b;
}
.hero .btn-outline {
  color: #fff;
  border-color: #ffffff70;
  background: #ffffff1f;
}
.trust b {
  color: #fff;
}
.circle-note {
  background: linear-gradient(135deg, #ff8a4c, #f4587c 60%, #8a5fc0 115%);
  color: #fff;
  box-shadow: 0 18px 40px #f4587c59;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffffcc;
  border: 1px solid #ffffff;
  border-radius: 999px;
  padding: 7px 16px;
  color: #b23a5e;
  letter-spacing: 0.14em;
  font-size: 11px;
  box-shadow: 0 8px 22px #3b2d6b1f;
  backdrop-filter: blur(8px);
}
.hero .eyebrow {
  background: #ffffff26;
  border-color: #ffffff45;
  color: #ffe3cb;
  box-shadow: none;
  display: inline-block;
  letter-spacing: 0.02em;
  font-size: 12.5px;
  line-height: 1.7;
  padding: 9px 20px;
  white-space: normal;
  max-width: 100%;
  overflow: visible;
  text-overflow: clip;
  text-transform: none;
}
html[lang="ne"] .hero .eyebrow {
  letter-spacing: 0;
  font-size: 14px;
  line-height: 1.8;
  text-transform: none;
}
.year-tag {
  background: #fffffff2;
  border: 1px solid #fff;
  border-left: 5px solid #f4587c;
  box-shadow: 0 18px 40px #1d18304d;
}
.hero-photo {
  border-radius: 22px;
  border: 1px solid #ffffff66;
  box-shadow: 0 30px 60px #101a3659;
}
/* ---------- Strip ---------- */
.strip {
  background: var(--aurora);
  box-shadow: 0 14px 30px #8a5fc040;
}
.strip strong {
  color: #fff;
}
.stat b {
  color: #fff;
}
.stat small {
  color: #ffe9d6;
  opacity: 0.95;
}
/* ---------- Sections: light glass over soft aurora ---------- */
.courses,
.about-section,
.schedule,
.vehicles-section,
.reviews-section,
.process-section {
  background-color: transparent;
}
.courses::before,
.about-section::before,
.schedule::before,
.vehicles-section::before,
.reviews-section::before,
.process-section::before {
  opacity: 0.3;
  filter: saturate(1.15) contrast(1.02);
}
.courses::after,
.vehicles-section::after,
.reviews-section::after,
.process-section::after {
  background: linear-gradient(
    112deg,
    #fffdf8f2 8%,
    #fdf1f4e6 42%,
    #efe9fbe8 72%,
    #e5f2fae6 100%
  );
}
.about-section::after {
  background: linear-gradient(100deg, #241d45ed, #6e2f63c9 50%, #1f5f8cb8 100%);
}
.schedule::after {
  background: linear-gradient(110deg, #2b1f4ed9, #8a3c63c7 45%, #1f6f9eba 100%);
}
.courses .section-head h2,
.courses .section-head p,
.about-section .about-copy h2,
.about-section .about-copy p,
.about-section .checks,
.schedule h2,
.schedule p,
.vehicles-section .section-head h2,
.vehicles-section .section-head p,
.reviews-section .section-head h2,
.reviews-section .section-head p,
.process-section .section-head h2,
.process-section .section-head p {
  text-shadow: none;
}
.courses .section-head h2,
.vehicles-section .section-head h2,
.reviews-section .section-head h2,
.process-section .section-head h2 {
  background: linear-gradient(92deg, #232030 30%, #b23a5e 62%, #1f6f9e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.courses .section-head p,
.vehicles-section .section-head p,
.reviews-section .section-head p,
.process-section .section-head p {
  color: var(--muted);
}
.about-section .about-copy h2,
.schedule h2 {
  color: #fff;
  text-shadow: 0 2px 18px #00000070;
}
.about-section .about-copy p,
.about-section .checks,
.schedule p {
  color: #fdf3ec;
  text-shadow: 0 2px 14px #00000055;
}
.about-section .eyebrow {
  background: #ffffff26;
  border-color: #ffffff45;
  color: #ffe3cb;
  box-shadow: none;
}
.schedule .eyebrow {
  background: #ffffff26;
  border-color: #ffffff45;
  color: #ffe3cb;
  box-shadow: none;
}
.location .eyebrow,
footer .eyebrow {
  background: #ffffff26;
  border-color: #ffffff45;
  color: #ffe3cb;
  box-shadow: none;
}
html[lang="ne"] .eyebrow {
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
  line-height: 1.9;
  padding: 9px 20px;
  white-space: normal;
  max-width: 100%;
  overflow: visible;
}
.course,
.time,
.vehicle,
.step {
  background: var(--glass) !important;
  border: 1px solid #ffffff !important;
  border-radius: 20px !important;
  box-shadow: var(--card-shadow) !important;
  backdrop-filter: blur(14px);
}
.course {
  border-top: 4px solid transparent !important;
  border-image: linear-gradient(90deg, #ff8a4c, #f4587c, #8a5fc0) 1 !important;
}
.course:hover {
  box-shadow: 0 30px 60px #8a5fc038 !important;
}
.course-num,
.course a {
  color: #f4587c;
}
.step:before {
  color: #8a5fc0;
}
.flow-pin i {
  color: #fff;
}
.course h3 {
  color: var(--night);
}
.course p {
  color: var(--muted);
}
.about-copy h2,
.schedule h2 {
  color: #fff;
  text-shadow: 0 2px 18px #00000070;
}
.about-copy p,
.schedule p {
  color: #fdf3ec;
  text-shadow: 0 2px 14px #00000055;
}
.about-section .eyebrow {
  background: #ffffff26;
  border-color: #ffffff45;
  color: #ffe3cb;
  box-shadow: none;
}
.schedule .eyebrow {
  background: #ffffff26;
  border-color: #ffffff45;
  color: #ffe3cb;
  box-shadow: none;
}
.checks {
  color: #fff;
  text-shadow: 0 2px 10px #00000055;
}
.time {
  border-left: 5px solid transparent !important;
  border-image: linear-gradient(180deg, #ff8a4c, #8a5fc0) 1 !important;
}
.time b {
  color: var(--night);
}
.time small {
  color: var(--muted);
}
.vehicle b {
  color: var(--night);
}
.vehicle img {
  filter: saturate(1.08);
}
.reviews-section .section-head h2,
.process-section .section-head p {
  color: inherit;
}
/* ---------- Flow road + pins ---------- */
.flow-pin i {
  background: linear-gradient(
    135deg,
    #ff8a4c,
    #f4587c 55%,
    #8a5fc0 110%
  ) !important;
  border-color: #fff !important;
  box-shadow: 0 12px 26px #f4587c59 !important;
}
.flow-pin span {
  background: linear-gradient(180deg, #f4587c, #8a5fc0) !important;
  opacity: 1 !important;
}
.bubble-speech .step::after,
.bubble-thought .step::before,
.bubble-thought .step::after {
  background: #fff !important;
  border-color: #e9defc !important;
}
/* ---------- Location / footer ---------- */
.location {
  background: linear-gradient(
    115deg,
    #241d45 0%,
    #54286e 36%,
    #1f5f8c 72%,
    #13203c 100%
  );
  border-top: 0;
  position: relative;
  overflow: hidden;
}
.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 300px at 12% 20%, #ff9a6255, transparent 65%),
    radial-gradient(640px 340px at 88% 78%, #29c1d84d, transparent 66%);
  pointer-events: none;
}
.location > .wrap {
  position: relative;
  z-index: 1;
}
.location h2 {
  color: #fff;
}
.location p {
  color: #f0dfe8;
}
.map {
  border: 1px solid #ffffff66;
  border-radius: 18px;
  box-shadow: 0 26px 55px #0d102640;
}
/* ---------- Reviews: premium single-ring photo + aurora card ---------- */
.review-box {
  background:
    linear-gradient(180deg, #fffdf8f5, #fdf1f4f0 55%, #efe9fbf0) padding-box,
    var(--aurora) border-box !important;
  border: 1.5px solid transparent !important;
  border-left: 1.5px solid transparent !important;
  border-radius: 26px !important;
  box-shadow:
    0 26px 60px #3b2d6b30,
    0 4px 14px #f4587c22 !important;
  backdrop-filter: blur(12px);
  position: relative;
}
.review-box::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font:
    700 72px "Playfair Display",
    serif;
  line-height: 1;
  background: var(--aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  pointer-events: none;
}
.review-box q {
  color: var(--night);
  font-style: italic;
}
.review-box .stars {
  color: #f0a03c;
  text-shadow: 0 2px 10px #f0a03c44;
}
.review-author {
  color: var(--muted);
}
.review-author b {
  color: var(--night);
}
.review-photo-wrap {
  border: none !important;
  box-shadow: 0 16px 34px #3b2d6b40 !important;
  padding: 5px;
  background: linear-gradient(135deg, #ff8a4c, #f4587c 55%, #8a5fc0 115%);
}
.review-photo-wrap::after {
  inset: 5px;
  border-radius: 50%;
}
#reviewPhoto {
  border-radius: 50%;
}
.review-controls button {
  background: linear-gradient(135deg, #2c2350, #6b4b8a);
  border: 1px solid #ffffff40;
}
.review-controls button:hover {
  background: linear-gradient(135deg, #ff8a4c, #f4587c) !important;
}
footer {
  background: linear-gradient(180deg, #17132b, #100d20);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #ff8a4c, #f4587c, #8a5fc0, #1f8ac0) 1;
}
footer p,
.copyright {
  color: #c9c0d8;
}
footer .eyebrow-light,
.eyebrow-light {
  color: #ffc79b;
}
.copyright {
  border-top-color: #ffffff22;
}
.designer-link {
  color: #ffc79b;
}
.google-reviews-link {
  background: linear-gradient(115deg, #ff8a4c, #f4587c 55%, #8a5fc0 115%);
  border-color: transparent;
}
.google-reviews-link:hover {
  filter: brightness(1.06);
}
.about-section .about-copy .btn {
  background: linear-gradient(115deg, #ff8a4c, #f4587c 55%, #8a5fc0 110%);
  box-shadow: 0 14px 30px #00000045;
}
.schedule .btn {
  background: #fff;
  color: #b23a5e;
  box-shadow: 0 14px 30px #00000040;
}
.location .btn {
  background: #fff;
  color: #54286e;
  box-shadow: 0 14px 30px #00000040;
}
/* ---------- Hero slideshow (front1-5 rotation) ---------- */
.hero-slideshow {
  position: relative;
  width: 84%;
  height: 438px;
  margin-left: auto;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.9s ease,
    transform 1.4s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.hero-dots {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 7px;
  z-index: 3;
}
.hero-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff70;
  border: 1px solid #ffffffaa;
  transition: 0.3s;
}
.hero-dots span.on {
  width: 26px;
  border-radius: 999px;
  background: #fff;
}
/* ---------- Circle note: never clipped, Nepali-safe ---------- */
.circle-note {
  z-index: 4;
  max-width: calc(100vw - 48px);
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
html[lang="ne"] .circle-note {
  font-family:
    "Noto Sans Devanagari", "Mangal", "Kokila", system-ui, sans-serif;
  line-height: 1.6;
}
/* Keep the hero slideshow safely above the floating badges */
.hero-slideshow {
  z-index: 2;
}
.hero-dots {
  cursor: pointer;
}
@media (max-width: 1100px) {
  .hero-slideshow {
    height: 390px;
  }
}
@media (max-width: 900px) {
  .hero-slideshow {
    height: 370px;
    width: 100%;
  }
  .circle-note {
    width: 148px;
    height: 148px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.5;
    left: 8px;
    bottom: 12px;
  }
}
@media (max-width: 460px) {
  .hero-slideshow {
    height: 315px;
    width: 100%;
  }
  .circle-note {
    width: 132px;
    height: 132px;
    padding: 16px;
    font-size: 14.5px;
    line-height: 1.55;
    left: 6px;
    bottom: 10px;
  }
}
