/* ==========================================================================
   Samriddhi Tours & Travels — glassmorphism, saffron, Kashi
   Colour: Vikash Travel Agency orange (#FF9900) + charcoal + ivory glass
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Noto+Sans+Devanagari:wght@500;700&family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --orange: #ff9900;
  --orange-deep: #e07800;
  --orange-light: #ffc14d;
  --saffron: #ff9900;
  --gold: #ff9900;
  --gold-light: #ffc14d;
  --gold-deep: #e07800;
  --gold-grad: linear-gradient(135deg, #ffd27a 0%, #ff9900 48%, #e07800 100%);

  --ink: #1a1a1a;
  --charcoal: #222222;
  --text: #222222;
  --muted: #5c564e;
  --muted-2: #8a8378;

  --bg: #f6f1e8;
  --bg-alt: #fff8ef;
  --surface: rgba(255, 255, 255, 0.52);
  --surface-2: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 153, 0, 0.28);
  --line-soft: rgba(34, 34, 34, 0.08);
  --glass: rgba(255, 255, 255, 0.38);
  --glass-strong: rgba(255, 255, 255, 0.48);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-dark: rgba(26, 26, 26, 0.42);

  --whatsapp: #25d366;
  --black: #1a1a1a;

  --f-brand: "Cinzel", Georgia, serif;
  --f-head: "Outfit", "Segoe UI", system-ui, sans-serif;
  --f-body: "Outfit", "Segoe UI", system-ui, sans-serif;
  --f-deva: "Noto Sans Devanagari", "Nirmala UI", serif;

  --container: 1200px;
  --radius: 18px;
  --radius-lg: 26px;
  --header-h: 84px;
  --shadow: 0 18px 50px rgba(34, 34, 34, 0.1);
  --shadow-glass: 0 10px 40px rgba(255, 153, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --blur: blur(18px) saturate(1.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 48px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(255, 153, 0, 0.22), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(255, 120, 0, 0.1), transparent 50%),
    radial-gradient(700px 400px at 70% 100%, rgba(255, 153, 0, 0.08), transparent 50%),
    var(--bg);
}

html,
body {
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='%23ff9900' stroke-width='1.2' d='M100 18c8 22 22 36 44 44-22 8-36 22-44 44-8-22-22-36-44-44 22-8 36-22 44-44z'/%3E%3Ccircle cx='100' cy='100' r='10' fill='none' stroke='%23ff9900'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

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

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

.topbar a,
.footer__contact a,
.footer__contact span,
.info-card a,
.form-note {
  overflow-wrap: anywhere;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-head);
  font-weight: 750;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 5.6vw, 3.85rem);
}
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
}
h3 {
  font-size: clamp(1.12rem, 2vw, 1.32rem);
}

p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

::selection {
  background: var(--orange);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* --------------------------------------------------------- layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
  position: relative;
  z-index: 1;
}

.header .container {
  padding-inline: clamp(16px, 3vw, 32px);
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
  position: relative;
  z-index: 1;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(255, 153, 0, 0.07), rgba(255, 255, 255, 0.28));
}

.section--tint {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(255, 153, 0, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.6), rgba(246, 241, 232, 0.3));
}

.sec-head {
  max-width: 760px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

.sec-head.left {
  text-align: left;
  margin-inline: 0;
}

.sec-head p {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--orange);
  opacity: 0.75;
}

.sec-head.left .eyebrow::after,
.eyebrow.one-side::after {
  display: none;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grid {
  display: grid;
  gap: 26px;
}

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

/* --------------------------------------------------------- glass utility */
.glass,
.card,
.feature,
.info-card,
.quote,
.acc,
.quickbook__card,
.table-wrap,
.badge-float,
.stats,
.map-embed {
  background: var(--glass-strong);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}

/* --------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--gold-grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 0;
  border-radius: 12px;
  background: var(--btn-bg);
  color: #fff;
  font-weight: 800;
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 12px 30px rgba(255, 153, 0, 0.32);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 153, 0, 0.42);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.45), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  border: 1px solid rgba(255, 153, 0, 0.55);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
  box-shadow: 0 14px 34px rgba(255, 153, 0, 0.16);
}

.btn--wa {
  background: var(--whatsapp);
  color: #042c14;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.btn--wa:hover {
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.36);
}

.btn--sm {
  padding: 11px 22px;
  font-size: 0.84rem;
}

.btn--block {
  width: 100%;
}

.btn--ink {
  background: var(--charcoal);
  box-shadow: 0 12px 28px rgba(34, 34, 34, 0.28);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.icon {
  width: 1.05em;
  height: 1.05em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--fill {
  fill: currentColor;
  stroke: none;
}

/* --------------------------------------------------------- kashi devotion band */
.kashi-band {
  background: rgba(34, 34, 34, 0.92);
  color: #ffe8b8;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 153, 0, 0.35);
  font-family: var(--f-deva);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
  line-height: 2.4;
}

.kashi-band__track {
  display: inline-flex;
  gap: 2.4rem;
  padding-inline: 1.2rem;
  animation: kashi-marquee 42s linear infinite;
}

.kashi-band__track span {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
}

.kashi-band__track i {
  color: var(--orange);
  font-style: normal;
  opacity: 0.7;
}

@keyframes kashi-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------- top bar */
.topbar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 153, 0, 0.25);
  font-size: 0.82rem;
  color: #d8d2c8;
  position: relative;
  z-index: 2;
}

.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--orange-light);
}

.topbar__list {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar__list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__list .icon {
  color: var(--orange);
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: 0.25s var(--ease);
}

.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #1a1a1a;
}

/* --------------------------------------------------------- header — orange glass like VTA nav */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.88), rgba(255, 140, 0, 0.78));
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.is-stuck {
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.96), rgba(232, 120, 0, 0.92));
  box-shadow: 0 12px 34px rgba(224, 120, 0, 0.28);
}

.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
  min-width: 0;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: #e31b1b;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.brand__name {
  font-family: var(--f-brand);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.brand__sub {
  display: block;
  font-family: var(--f-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-left: auto;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

.nav a {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 650;
  color: #fff;
  border-radius: 10px;
  position: relative;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
  background: rgba(34, 34, 34, 0.16);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav .btn {
  background: var(--charcoal);
  color: #fff;
  box-shadow: none;
  margin-left: 6px;
  display: none;
}

.nav .btn::after {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  flex-shrink: 0;
  margin-left: 8px;
}

.header__cta .btn {
  background: var(--charcoal);
  color: #fff;
  box-shadow: none;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 18px;
  line-height: 1.2;
  overflow: hidden;
}

.header__cta .btn:hover,
.nav .btn:hover {
  transform: none;
}

.header__cta .btn::after {
  display: none;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.header__phone .icon {
  color: #fff;
  width: 1.5em;
  height: 1.5em;
}

.header__phone span {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.header__phone strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  background: rgba(34, 34, 34, 0.18);
  cursor: pointer;
  position: relative;
}

.burger i {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

.burger i:nth-child(1) {
  top: 15px;
}
.burger i:nth-child(2) {
  top: 22px;
}
.burger i:nth-child(3) {
  top: 29px;
}

.burger.is-open i:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.burger.is-open i:nth-child(2) {
  opacity: 0;
}
.burger.is-open i:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* --------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
}

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

.hero__slide.is-active img {
  animation: kenburns 9s linear forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.14);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(20, 12, 4, 0.72) 0%, rgba(20, 12, 4, 0.38) 46%, rgba(255, 153, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 38%, rgba(12, 8, 4, 0.55) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 8%;
  width: 58%;
  height: 84%;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -28deg,
    rgba(34, 34, 34, 0.55) 0 22px,
    rgba(255, 153, 0, 0.72) 22px 44px
  );
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.28;
  animation: stripe-drift 14s linear infinite;
}

@keyframes stripe-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 88px 0;
  }
}

.hero__in {
  padding: clamp(80px, 12vh, 150px) 0 clamp(60px, 9vh, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: var(--container);
}

.hero__glass {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  max-width: 640px;
}

.hero__glass h1,
.hero h1 {
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.hero .eyebrow {
  color: var(--orange-light);
}

.hero .eyebrow::before {
  background: var(--orange-light);
}

.mantra {
  font-family: var(--f-deva);
  font-size: 0.95rem;
  color: #ffe7b0;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  font-weight: 700;
}

.hero p.lead {
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  color: #f3eee6;
  max-width: 620px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  color: #f0ebe3;
  font-weight: 600;
}

.hero__trust .icon {
  color: var(--orange-light);
}

.hero__stage {
  position: relative;
  z-index: 2;
  min-height: 0;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.hero__incoming {
  width: min(100%, 680px);
  height: auto;
  display: block;
  margin-left: auto;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.42));
  animation: taxi-in 1.15s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  transform-origin: 80% 90%;
}

@keyframes taxi-in {
  from {
    opacity: 0;
    transform: translateX(58vw) rotate(7deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(-3deg);
  }
}

/* cartoon taxi driving on a road — original scene, stock-inspired motion */
.drive-scene {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #b9dff2 0%, #e8f5fb 52%, #c5d9a8 52%, #c5d9a8 61%, #5a5f66 61%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.drive-scene__city {
  position: absolute;
  left: 0;
  top: 10%;
  height: 51%;
  width: 200%;
  display: flex;
  animation: world-scroll 18s linear infinite;
}

.drive-scene__city img {
  width: 50%;
  height: 100%;
  flex: none;
  object-fit: fill;
  pointer-events: none;
}

.drive-scene__sun {
  position: absolute;
  top: 8%;
  right: 14%;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #fffce8, #ffcc33 58%, #ff9900);
  box-shadow: 0 0 22px 6px rgba(255, 204, 51, 0.45);
}

.drive-scene__clouds {
  position: absolute;
  left: 0;
  top: 6%;
  width: 200%;
  height: 38%;
  animation: world-scroll 36s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.cloud {
  position: absolute;
  height: 16px;
  border-radius: 20px;
  background: #fff;
  opacity: 0.92;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.cloud::before {
  width: 22px;
  height: 22px;
  left: 8px;
  top: -12px;
}

.cloud::after {
  width: 16px;
  height: 16px;
  right: 10px;
  top: -8px;
}

.drive-scene__trees {
  position: absolute;
  left: 0;
  bottom: 39%;
  width: 200%;
  height: 70px;
  animation: world-scroll 11s linear infinite;
  pointer-events: none;
  z-index: 2;
}

.tree {
  position: absolute;
  bottom: 0;
  width: 18px;
  margin-left: -9px;
}

.tree::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 5px;
  height: 28px;
  margin-left: -2.5px;
  background: #6b4423;
  border-radius: 2px;
}

.tree::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7dcc5e, #3d8f3a);
}

.tree:nth-child(odd)::after {
  width: 42px;
  height: 42px;
  margin-left: -21px;
  bottom: 16px;
}

.drive-scene__road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 39%;
  background: linear-gradient(#7a8088 0 10%, #4f545c 10% 100%);
}

.drive-scene__dashes {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 36%;
  height: 6px;
  background: repeating-linear-gradient(90deg, #ffe082 0 28px, transparent 28px 56px);
  animation: dash-scroll 0.38s linear infinite;
}

.drive-scene__taxi-wrap {
  position: absolute;
  left: 8%;
  width: 84%;
  bottom: 5%;
  z-index: 4;
  animation: taxi-enter 0.9s var(--ease) both;
}

.drive-scene__taxi {
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.28));
  animation: taxi-bounce 0.42s 0.9s ease-in-out infinite;
}

.drive-scene__taxi svg {
  width: 100%;
  height: auto;
  display: block;
}

.drive-scene .wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheel-spin 0.32s linear infinite;
}

@keyframes world-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes dash-scroll {
  to {
    background-position: -56px 0;
  }
}

@keyframes taxi-enter {
  from {
    opacity: 0;
    transform: translateX(-22%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes taxi-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes wheel-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero__diyas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.diya {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6c2, #ff9900 55%, transparent 70%);
  box-shadow: 0 0 16px 4px rgba(255, 153, 0, 0.7);
  animation: diya-glow 2.8s ease-in-out infinite;
}

.diya:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; }
.diya:nth-child(2) { top: 28%; left: 22%; animation-delay: .4s; width: 6px; height: 6px; }
.diya:nth-child(3) { top: 62%; left: 12%; animation-delay: .8s; }
.diya:nth-child(4) { top: 22%; right: 18%; animation-delay: .2s; }
.diya:nth-child(5) { bottom: 18%; right: 28%; animation-delay: 1s; width: 7px; height: 7px; }
.diya:nth-child(6) { bottom: 28%; left: 40%; animation-delay: 1.4s; }

@keyframes diya-glow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

.hero__dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero__dots button {
  width: 34px;
  height: 3px;
  border: 0;
  padding: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.hero__dots button.is-active {
  background: var(--orange);
  width: 54px;
}

/* --------------------------------------------------------- kashi values */
.kashi-values {
  position: relative;
  z-index: 4;
  margin-top: -56px;
  margin-bottom: 8px;
}

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

.kashi-chip {
  padding: 22px 22px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}

.kashi-chip b {
  display: block;
  font-family: var(--f-deva);
  font-size: 1.15rem;
  color: var(--orange-deep);
  margin-bottom: 4px;
}

.kashi-chip span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* --------------------------------------------------------- quick book */
.quickbook {
  position: relative;
  z-index: 5;
  margin-top: -62px;
}

.quickbook__card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.quickbook__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-brand);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 18px;
}

/* --------------------------------------------------------- forms */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  align-items: end;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 12px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  font-size: 0.94rem;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
  min-height: 118px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9900' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 17px;
  padding-right: 38px;
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.18);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a39b90;
}

.field option {
  background: #fff;
}

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

/* --------------------------------------------------------- cards */
.card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 153, 0, 0.55);
  box-shadow: 0 26px 52px rgba(255, 153, 0, 0.16);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #efe6d6;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(34, 18, 4, 0.45));
}

.card__media--car {
  background: #fff;
}

.card__media--car img {
  object-fit: contain;
  padding: 7% 8% 4%;
}

.card__media--car::after {
  display: none;
}

.card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold-grad);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body h3 {
  margin-bottom: 10px;
}

.card__body p {
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.card__foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.price {
  font-family: var(--f-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-deep);
}

.price small {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: block;
}

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.86rem;
}

.link-gold .icon {
  transition: transform 0.3s var(--ease);
}

.link-gold:hover .icon {
  transform: translateX(4px);
}

.feature {
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 153, 0, 0.5);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature__ico {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 153, 0, 0.12);
  border: 1px solid var(--line);
  color: var(--orange-deep);
  margin-bottom: 20px;
}

.feature__ico .icon {
  width: 26px;
  height: 26px;
}

.feature h3 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.9rem;
  margin: 0;
}

.feature__num {
  position: absolute;
  right: 18px;
  top: 10px;
  font-family: var(--f-head);
  font-size: 3.4rem;
  font-weight: 700;
  color: rgba(255, 153, 0, 0.12);
  pointer-events: none;
}

/* --------------------------------------------------------- about split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.split__media {
  position: relative;
}

.split__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border: 1px solid var(--glass-border);
}

.split__media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.badge-float {
  position: absolute;
  right: -14px;
  bottom: -22px;
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
}

.badge-float b {
  display: block;
  font-family: var(--f-head);
  font-size: 2.1rem;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.badge-float span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.ticks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px 22px;
  margin: 4px 0 30px;
}

.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #3a342c;
}

.ticks .icon {
  color: var(--orange);
  margin-top: 5px;
}

/* --------------------------------------------------------- stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
}

.stat {
  background: rgba(255, 255, 255, 0.55);
  padding: 34px 20px;
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--f-head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* --------------------------------------------------------- rate table */
.table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.table-scroll {
  overflow-x: auto;
}

table.rates {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.92rem;
}

table.rates thead th {
  background: linear-gradient(140deg, #ff9900, #e07800);
  color: #fff;
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

table.rates thead tr + tr th {
  background: linear-gradient(140deg, #f08a00, #d46e00);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 11px 18px;
}

table.rates thead th[rowspan] {
  vertical-align: middle;
}

table.rates thead th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

table.rates td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: #3a342c;
  white-space: nowrap;
}

table.rates tfoot td {
  background: rgba(255, 153, 0, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
  white-space: normal;
}

table.rates tfoot b {
  color: var(--orange-deep);
}

table.rates tbody tr:last-child td {
  border-bottom: 0;
}

table.rates tbody tr:hover td {
  background: rgba(255, 153, 0, 0.08);
}

table.rates td:first-child {
  font-weight: 700;
  color: var(--ink);
}

table.rates .rupee {
  color: var(--orange-deep);
  font-weight: 700;
}

.table-note {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
  color: var(--muted-2);
  display: grid;
  gap: 6px;
}

.table-note b {
  color: var(--orange-deep);
}

.farerows {
  margin: 2px 0 18px;
}

.farerows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(34, 34, 34, 0.1);
  font-size: 0.85rem;
}

.farerows li:last-child {
  border-bottom: 0;
}

.farerows span {
  color: var(--muted);
}

.farerows b {
  color: var(--orange-deep);
  font-weight: 800;
  white-space: nowrap;
}

.fare-big {
  display: block;
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fare-big small {
  display: block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  -webkit-text-fill-color: var(--muted-2);
  margin-bottom: 4px;
}

.seats {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted-2);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.seats .icon {
  color: var(--orange);
  width: 0.95em;
  height: 0.95em;
}

/* --------------------------------------------------------- gallery / spots */
.spot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--glass-border);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}

.spot:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 153, 0, 0.5);
}

.spot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.spot:hover img {
  transform: scale(1.09);
}

.spot__body {
  position: relative;
  padding: 26px 24px;
  background: linear-gradient(180deg, transparent, rgba(20, 12, 4, 0.88) 55%);
  width: 100%;
}

.spot__body h3 {
  margin-bottom: 6px;
  font-size: 1.16rem;
  color: #fff;
}

.spot__body p {
  font-size: 0.86rem;
  color: #f0e6d6;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease),
    margin 0.4s var(--ease);
}

.spot:hover .spot__body p,
.spot:focus-within .spot__body p {
  max-height: 260px;
  opacity: 1;
  margin-top: 8px;
}

.spot--tall {
  min-height: 400px;
}

/* --------------------------------------------------------- cta band */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}

.cta-band img.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(20, 12, 4, 0.78), rgba(255, 153, 0, 0.38));
}

.cta-band h2 {
  max-width: 900px;
  margin-inline: auto;
  color: #fff;
}

.cta-band .eyebrow {
  color: var(--orange-light);
}

.cta-band .feature {
  text-align: left;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-band .feature h3 {
  color: #fff;
}

.cta-band .feature p {
  color: #f0e6d6;
}

.cta-band .btn-row {
  justify-content: center;
  margin-top: 30px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--orange-light);
  margin-top: 8px;
}

/* --------------------------------------------------------- testimonials */
.quote {
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  right: 20px;
  font-family: var(--f-head);
  font-size: 5.4rem;
  line-height: 1;
  color: rgba(255, 153, 0, 0.22);
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--orange);
  margin-bottom: 14px;
}

.stars .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.quote p {
  font-size: 0.95rem;
  color: #3a342c;
}

.quote__who {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-grad);
  color: #fff;
  font-weight: 800;
  font-family: var(--f-head);
  flex: none;
}

.quote__who b {
  display: block;
  font-size: 0.95rem;
}

.quote__who span {
  font-size: 0.78rem;
  color: var(--muted-2);
}

/* --------------------------------------------------------- accordion */
.acc {
  border-radius: var(--radius);
  overflow: hidden;
}

.acc + .acc {
  margin-top: 12px;
}

.acc__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.25s var(--ease);
  color: var(--ink);
}

.acc__q:hover {
  color: var(--orange-deep);
}

.acc__q .icon {
  color: var(--orange);
  flex: none;
  transition: transform 0.35s var(--ease);
}

.acc.is-open .acc__q {
  color: var(--orange-deep);
}

.acc.is-open .acc__q .icon {
  transform: rotate(45deg);
}

.acc__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.acc.is-open .acc__a {
  grid-template-rows: 1fr;
}

.acc__a > div {
  overflow: hidden;
}

.acc__a p {
  padding: 0 22px 22px;
  margin: 0;
  font-size: 0.93rem;
}

/* --------------------------------------------------------- page hero */
.pagehead {
  position: relative;
  padding: clamp(70px, 11vw, 130px) 0 clamp(56px, 8vw, 96px);
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}

.pagehead > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 12, 4, 0.62), rgba(255, 153, 0, 0.28));
}

.pagehead .container {
  max-width: 820px;
}

.pagehead h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
  color: #fff;
}

.pagehead .eyebrow {
  color: var(--orange-light);
}

.crumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #f0e6d6;
}

.crumbs a:hover {
  color: var(--orange-light);
}

.crumbs span {
  color: var(--orange-light);
}

.pagehead__incoming {
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: min(42vw, 420px);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.38));
  animation: taxi-in 1.12s 0.12s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.drive-scene--compact {
  max-width: 360px;
  border-radius: 16px;
}

.drive-scene--compact .drive-scene__taxi-wrap {
  left: 5%;
  width: 90%;
}

/* --------------------------------------------------------- contact */
.info-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: 0.35s var(--ease);
}

.info-card:hover {
  border-color: rgba(255, 153, 0, 0.5);
  transform: translateY(-5px);
}

.info-card .feature__ico {
  margin-bottom: 16px;
}

.info-card a,
.info-card p {
  font-size: 0.95rem;
  color: var(--muted);
  display: block;
  margin: 0;
}

.info-card a:hover {
  color: var(--orange-deep);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

/* --------------------------------------------------------- footer — charcoal like VTA */
.footer {
  background: linear-gradient(180deg, #1f1f1f, #141414);
  border-top: 3px solid var(--orange);
  padding-top: clamp(50px, 7vw, 78px);
  margin-top: 0;
  color: #d8d2c8;
}

.footer h2,
.footer h3,
.footer h4,
.footer .brand__name {
  color: #fff;
}

.footer .brand__sub {
  color: rgba(255, 255, 255, 0.65);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.65);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px 32px;
  padding-bottom: 46px;
}

.footer h4 {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer p,
.footer li {
  font-size: 0.9rem;
  color: #c9c2b6;
}

.footer__links li + li {
  margin-top: 11px;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s var(--ease);
}

.footer__links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
  flex: none;
}

.footer__links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer__contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer__contact li + li {
  margin-top: 15px;
}

.footer__contact .icon {
  color: var(--orange);
  margin-top: 5px;
  flex: none;
}

.footer__contact a:hover {
  color: var(--orange);
}

.footer .brand {
  margin-bottom: 18px;
}

.footer .brand img {
  border-color: var(--orange);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #8a8378;
}

.footer__bar a:hover {
  color: var(--orange);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.tag-cloud a,
.tag-cloud span {
  font-size: 0.76rem;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #c9c2b6;
  transition: 0.25s var(--ease);
  background: rgba(255, 255, 255, 0.04);
}

.tag-cloud a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* --------------------------------------------------------- floating actions */
.fab {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease);
  position: relative;
}

.fab a:hover {
  transform: scale(1.09);
}

.fab .icon {
  width: 26px;
  height: 26px;
}

.fab__wa {
  background: var(--whatsapp);
}

.fab__call {
  background: var(--gold-grad);
  color: #fff;
}

.fab__wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  background: rgba(34, 34, 34, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 9px 10px;
  gap: 9px;
}

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 6px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
}

.mobile-bar .m-call {
  background: var(--gold-grad);
  color: #fff;
}

.mobile-bar .m-wa {
  background: var(--whatsapp);
  color: #042c14;
}

/* --------------------------------------------------------- reveal anim */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.has-motion .reveal {
  opacity: 0;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal,
  .has-motion .reveal {
    opacity: 1;
    transform: none;
  }
  .kashi-band__track,
  .hero__incoming,
  .pagehead__incoming,
  .hero::after {
    animation: none !important;
  }
}

/* --------------------------------------------------------- toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 140%);
  z-index: 200;
  background: rgba(34, 34, 34, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease);
  max-width: min(90vw, 460px);
  text-align: center;
}

.toast.is-show {
  transform: translate(-50%, 0);
}

/* --------------------------------------------------------- responsive */
@media (max-width: 1440px) {
  .header__phone {
    display: none;
  }

  .nav a {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .nav a::after {
    left: 8px;
    right: 8px;
  }

  .brand img {
    height: 54px;
    width: 54px;
  }

  .hero::after {
    width: 48%;
  }
}

@media (max-width: 1080px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .g-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .header__phone {
    display: none;
  }
  .kashi-values__grid {
    grid-template-columns: 1fr;
  }
  .hero__in {
    grid-template-columns: 1fr;
  }
  .hero__stage {
    order: -1;
    min-height: 200px;
  }
  .hero__incoming {
    width: min(88%, 420px);
  }
}

@media (max-width: 940px) {
  :root {
    --header-h: 72px;
  }

  .burger {
    display: block;
    order: 3;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 100%;
    bottom: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgba(255, 153, 0, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    margin: 0;
    z-index: 80;
    flex: none;
    width: 100%;
  }

  .nav.is-open {
    visibility: visible;
    pointer-events: auto;
    max-height: calc(100vh - var(--header-h));
    padding: 10px 18px 26px;
    overflow-y: auto;
  }

  .nav a {
    padding: 15px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 1rem;
  }

  .nav a::after {
    display: none;
  }

  .nav .btn {
    display: none;
  }

  .header__cta .btn:not(.burger) {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 12px;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .header__in {
    gap: 8px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .split,
  .g-3,
  .g-2 {
    grid-template-columns: 1fr;
  }

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

  .badge-float {
    right: 10px;
    bottom: -18px;
    padding: 14px 18px;
  }

  .split__media::before {
    display: none;
  }

  .topbar__list .topbar__hours,
  .topbar .socials {
    display: none;
  }

  .topbar__in {
    justify-content: center;
    text-align: center;
    min-height: 38px;
    flex-wrap: nowrap;
  }

  .topbar__list {
    justify-content: center;
    gap: 10px 16px;
    width: 100%;
  }

  .mobile-bar {
    display: flex;
  }

  .fab {
    bottom: 78px;
  }

  body {
    padding-bottom: 66px;
  }

  .quickbook {
    margin-top: -30px;
  }

  .kashi-values {
    margin-top: 18px;
  }

  .hero::after {
    opacity: 0.22;
    width: 55%;
    right: -18%;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(20, 12, 4, 0.45) 0%, rgba(20, 12, 4, 0.28) 40%, rgba(12, 8, 4, 0.62) 100%);
  }

  .hero__stage {
    min-height: 150px;
  }

  .hero__incoming {
    width: min(92%, 420px);
  }

  .pagehead__incoming {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    padding-inline: 16px;
  }

  .g-4 {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 46px;
    width: 46px;
  }

  .brand__name {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .header__cta .btn:not(.burger) {
    padding: 7px 11px;
    font-size: 0.7rem;
  }

  .brand__sub {
    font-size: 0.53rem;
    letter-spacing: 0.22em;
  }

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

  .topbar__list {
    gap: 14px;
    justify-content: center;
    font-size: 0.78rem;
  }

  .hero__trust {
    gap: 10px 18px;
  }

  .quickbook__card {
    padding: 20px 16px;
  }

  .card__body,
  .feature {
    padding: 22px 18px;
  }

  .fab a {
    width: 48px;
    height: 48px;
  }

  .hero__glass {
    padding: 22px 18px;
  }
}

@media print {
  .header,
  .topbar,
  .fab,
  .mobile-bar,
  .hero__dots,
  .kashi-band {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
