:root {
  --primary: #C65D00;
  /* Burnt Saffron */
  --secondary: #0F4C5C;
  /* Deep Teal Blue */
  --accent: #E6B325;
  /* Warm Gold */
  --bg: #F3E9DC;
  /* Soft Sand */
  --text: #2F2F2F;

  --max: 1200px;
  --gutter: clamp(14px, 3vw, 22px);

  --shadow: 0 30px 90px rgba(15, 76, 92, .14);
  --shadow2: 0 14px 44px rgba(15, 76, 92, .10);
}

/* disable user access */
body{
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}
input, textarea{
  user-select:text; /* forms still work */
}
/*  */
* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font: inherit
}

/* ===== STICKY WRAPPER ===== */
.hSticky {
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* ===== TOP STRIP ===== */
.hTop {
  background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, 0)), var(--secondary);
  color: #fff;
  font-size: 14px;
}

.hTop__wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hTop__left,
.hTop__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hTop a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: .95;
}

.hTop a:hover {
  opacity: 1;
  color: var(--accent);
}

.hTop__right span {
  opacity: .95;
  margin-right: 8px;
}

.hSocial {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hSocial a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  text-decoration: none;
}

.hSocial a:hover {
  border-color: rgba(230, 179, 37, .6);
  color: var(--accent);
}

/* ===== THIN LINE ===== */
.hLine {
  height: 3px;
  background: var(--accent);
}

/* ===== MAIN HEADER (white like example) ===== */
.hMain {
  background: #fff;
}

.hMain__wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Logo */
.hBrand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  text-decoration: none;
}

.hLogo {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav (center inline, no wrap) */
.hNav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  white-space: nowrap;
}

.hNav>a,
.hDropBtn {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.hNav>a:hover,
.hDrop:hover .hDropBtn {
  color: var(--secondary);
}

.hDropBtn i {
  font-size: 12px;
  opacity: .75;
  transform: translateY(1px);
}

/* ===== DROPDOWN (AUTO WIDTH BY TEXT) ===== */
.hDrop {
  position: relative;
}

.hDropBtn {
  background: none;
  border: 0;
  cursor: pointer;
}

/* panel auto width */
.hMenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  /* ✅ text ke according width */
  min-width: 260px;
  /* ✅ small text pe bhi proper */
  max-width: 90vw;
  /* ✅ mobile safe */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
  border: 1px solid rgba(0, 0, 0, .06);
  display: none;
  z-index: 99999;
}

.hDrop:hover .hMenu {
  display: block;
}

.hMenu a {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 750;
  font-size: 14px;
  white-space: nowrap;
  /* ✅ single line */
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
}

.hMenu a:last-child {
  border-bottom: 0;
}

.hMenu a:hover {
  background: rgba(15, 76, 92, .06);
  color: var(--secondary);
}

/* CTA pill */
.hCTA {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(198, 93, 0, .22);
}

.hCTA:hover {
  background: var(--secondary);
}

/* Burger hidden on desktop */
.hBurger {
  display: none;
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 768px) {

  /* Top bar becomes stacked */
  .hTop__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hTop__left {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hTop__left a {
    font-size: 13px;
  }

  .hTop__right {
    justify-content: space-between;
    gap: 7px;
  }

  /* Main header */
  .hMain__wrap {
    padding: 12px var(--gutter);
    gap: 10px;
  }

  .hBrand {
    min-width: auto;
  }

  .hLogo {
    height: 50px;
  }

  /* Hide desktop nav */
  .hNav {
    display: none !important;
  }

  /* Keep CTA small (optional) */
  .hCTA {
    padding: 10px 14px;
    font-size: 13px;
    gap: 8px;
  }

  .hCTA i {
    font-size: 14px;
  }

  /* Show burger */
  .hBurger {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(15, 76, 92, .18);
    background: #fff;
    color: var(--secondary);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

/* ===================== MOBILE DRAWER MENU ===================== */
.hDrawer {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.hDrawer.active {
  display: block;
}

.hDrawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.hDrawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(330px, 88vw);
  height: 100%;
  background: #fff;
  box-shadow: -18px 0 60px rgba(0, 0, 0, .20);
  display: flex;
  flex-direction: column;
}

.hDrawer__head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.hDrawer__head strong {
  color: var(--secondary);
  font-weight: 900;
  letter-spacing: .02em;
}

.hDrawer__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15, 76, 92, .18);
  background: #fff;
  color: var(--secondary);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.hDrawer__nav {
  padding: 10px 10px 14px;
  overflow: auto;
}

.hDrawer__nav a,
.hDrawer__ddBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  margin: 8px 0;
}

.hDrawer__nav a:hover,
.hDrawer__ddBtn:hover {
  border-color: rgba(15, 76, 92, .25);
  background: rgba(15, 76, 92, .05);
  color: var(--secondary);
}

.hDrawer__dd {
  margin: 8px 0;
}

.hDrawer__ddBtn {
  cursor: pointer;
}

.hDrawer__submenu {
  display: none;
  padding: 8px 10px 6px;
  margin-top: 6px;
  border-left: 3px solid rgba(230, 179, 37, .65);
  background: rgba(243, 233, 220, .55);
  border-radius: 12px;
}

.hDrawer__dd.open .hDrawer__submenu {
  display: block;
}

.hDrawer__submenu a {
  margin: 6px 0;
  padding: 10px 10px;
  font-weight: 750;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .06);
}

.hDrawer__submenu a:hover {
  background: rgba(198, 93, 0, .08);
  color: var(--primary);
  border-color: rgba(198, 93, 0, .18);
}

.hDrawer__cta {
  padding: 14px 14px 18px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.hDrawer__cta a {
  width: 100%;
  justify-content: center;
}

/* HERO */
.mtsHero {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 72vh, 760px);
  overflow: hidden;
  background: #000;
}

.mtsHero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s ease, transform 1.2s ease;
}

.mtsHero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Dark overlay like your screenshot */
.mtsHero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 20% 50%, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 60%),
    linear-gradient(90deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .28) 45%, rgba(0, 0, 0, .10) 100%);
  z-index: 1;
}

/* content container */
.mtsHero__wrap {
  position: relative;
  z-index: 2;
  max-width: var(--max, 1200px);
  margin: 0 auto;
  padding: clamp(22px, 5vw, 44px) var(--gutter, 22px);
  min-height: clamp(520px, 83vh, 760px);
  display: flex;
  align-items: center;
}

.mtsHero__content {
  max-width: 680px;
  color: #fff;
}

.mtsHero__kicker {
  font-weight: 900;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: 13px;
  opacity: .95;
  margin-bottom: 18px;
}

.mtsHero__title {
  margin: 0 0 14px;
  font-size: clamp(42px, 5.3vw, 70px);
  line-height: 1.02;
  font-weight: 950;
  text-transform: uppercase;
}

.mtsHero__title .tAccent {
  color: var(--primary, #C65D00);
}

.mtsHero__title .tWhite {
  color: #fff;
}

.mtsHero__desc {
  margin: 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.75;
  opacity: .95;
}

/* CTAs (same vibe) */
.mtsHero__ctaRow {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mtsBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .02em;
  border: 2px solid transparent;
  transition: .25s ease;
  white-space: nowrap;
}

.mtsBtn--primary {
  background: var(--primary, #C65D00);
  color: #fff;
  box-shadow: 0 12px 30px rgba(198, 93, 0, .22);
}

.mtsBtn--primary:hover {
  background: var(--secondary, #0F4C5C);
}

.mtsBtn--ghost {
  background: #fff;
  color: #111;
}

.mtsBtn--ghost:hover {
  background: rgba(255, 255, 255, .88);
  transform: translateY(-1px);
}

/* Dots */
.mtsHero__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.mtsDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: .25s ease;
}

.mtsDot.is-active {
  width: 26px;
  background: var(--primary, #C65D00);
  border-color: rgba(255, 255, 255, .0);
}

/* Arrows */
.mtsHero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .25);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .2s ease;
}

.mtsHero__arrow:hover {
  background: rgba(0, 0, 0, .38);
}

.mtsHero__arrow--prev {
  left: 14px;
}

.mtsHero__arrow--next {
  right: 14px;
}

@media(max-width:768px) {
  .mtsHero__wrap {
    padding-top: 28px;
  }

  .mtsHero__kicker {
    letter-spacing: .28em;
    font-size: 12px;
  }

  .mtsHero__arrow {
    display: none;
  }

  /* keep clean on mobile */
}



/* About us */

.abGX__wrap {
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

/* ========== LEFT: collage ========== */
.abGX__left {
  position: relative;
  min-height: 520px;
}

.abGX__dot {
  position: absolute;
  left: 10px;
  top: 90px;
  width: 170px;
  height: 120px;
  background:
    radial-gradient(circle, rgba(15, 76, 92, .28) 1.6px, transparent 1.8px) 0 0/12px 12px;
  opacity: .35;
  border-radius: 18px;
  filter: blur(.0px);
}

.abGX__img {
  position: absolute;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(0, 0, 0, .06);
  background: #fff;
}

.abGX__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Big top image */
.abGX__img--top {
  right: 0;
  top: 0;
  width: min(86%, 520px);
  height: 300px;
}

/* Bottom-left image */
.abGX__img--bottom {
  left: 0;
  bottom: 0;
  width: min(78%, 480px);
  height: 290px;
}

/* Small car image */
.abGX__img--car {
  right: 18px;
  bottom: 70px;
  width: 240px;
  height: 150px;
  border-radius: 22px;
}

/* Experience badge */
.abGX__badge {
  position: absolute;
  left: 40px;
  top: 65px;
  width: 132px;
  padding: 14px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--accent), #ffd87a);
  box-shadow: 0 18px 45px rgba(230, 179, 37, .25);
  color: #1b1b1b;
  font-weight: 1000;
  z-index: 9;
}

.abGX__badge strong {
  display: block;
  font-size: 38px;
  line-height: 1.0;
  letter-spacing: -.02em;
}

.abGX__badge span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 950;
}

/* little accent wedge */
.abGX__wedge {
  position: absolute;
  right: 6px;
  bottom: 40px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(198, 93, 0, .12);
  border: 1px solid rgba(198, 93, 0, .16);
  transform: rotate(12deg);
}

/* ========== RIGHT: content ========== */
.abGX__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 76, 92, .92);
}

.abGX__kicker i {
  color: var(--primary);
}

.abGX__title {
  margin: 12px 0 10px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.08;
  font-weight: 1000;
  color: rgba(15, 76, 92, .92);
}

.abGX__title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.abGX__sub {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 950;
  color: var(--primary);
}

.abGX__text {
  margin: 0 0 18px;
  color: rgba(47, 47, 47, .74);
  line-height: 1.9;
  font-size: 15.5px;
  max-width: 560px;
}

/* skill bars */
.abGX__bars {
  display: grid;
  gap: 16px;
  margin-top: 6px;
}

.abBar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 1000;
  color: var(--text);
}

.abBar__top span:last-child {
  color: var(--secondary);
}

.abBar__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 76, 92, .10);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .05);
}

.abBar__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* bottom actions */
.abGX__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.abGX__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border-radius: 14px;
  background: var(--accent);
  color: #1b1b1b;
  font-weight: 1000;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(230, 179, 37, .22);
  transition: .2s ease;
}

.abGX__btn:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: #fff;
}

.abGX__btn i {
  font-size: 14px;
}

.abGX__call {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.abGX__call i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(198, 93, 0, .10);
  border: 1px solid rgba(198, 93, 0, .14);
  color: var(--secondary);
}

.abGX__call small {
  display: block;
  font-weight: 900;
  color: rgba(47, 47, 47, .68);
}

.abGX__call a {
  display: block;
  font-weight: 1000;
  text-decoration: none;
  color: var(--text);
}

.abGX__call a:hover {
  color: var(--primary);
}

/* responsive */
@media(max-width:980px) {
  .abGX__wrap {
    grid-template-columns: 1fr;
  }

  .abGX__left {
    min-height: 520px;
  }

  .abGX__img--top {
    width: 100%;
  }

  .abGX__img--bottom {
    width: 92%;
  }
}

@media(max-width:560px) {
  .abGX__left {
    min-height: 560px;
  }

  .abGX__badge {
    left: 18px;
    top: 40px;
  }

  .abGX__img--car {
    right: 10px;
    width: 210px;
    height: 135px;
  }

}

/* ===== Services Offer ===== */
.sec {
  position: relative;
  padding: clamp(40px, 7vw, 50px) 0;
}

.wof__wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== Heading ===== */
.wof__head {
  text-align: center;
  margin-bottom: 26px;
}

.wof__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: .30em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 76, 92, .92);
}

.wof__kicker i {
  color: var(--primary);
}

.wof__title {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 1000;
  color: #0f4c5ceb;
}

.wof__title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Grid ===== */
.wof__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* ===== Card (dark premium like ref) ===== */
.wofCard {
  position: relative;
  border-radius: 26px;
  padding: 22px 22px 20px;
  min-height: 230px;
  overflow: hidden;
  color: #fff;

  background:
    radial-gradient(700px 260px at 18% 15%, rgba(230, 179, 37, .10), transparent 55%),
    linear-gradient(135deg, rgba(19, 20, 32, .98), rgba(10, 11, 20, .95));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
  transition: .22s ease;
}

/* geometric overlay */
.wofCard::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, transparent 42%),
    linear-gradient(315deg, rgba(255, 255, 255, .05) 0%, transparent 44%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 14px, transparent 14px 34px);
  opacity: .50;
  transform: translateX(0);
  pointer-events: none;
}

/* bottom accent strip */
.wofCard::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

/* icon */
.wofCard__ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(230, 179, 37, .10);
  border: 1px solid rgba(230, 179, 37, .22);
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.wofCard__ico i {
  font-size: 20px;
}

/* content */
.wofCard__title {
  margin: 14px 0 8px;
  font-size: 18.5px;
  font-weight: 1000;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.wofCard__title span {
  color: var(--accent);
}

.wofCard__text {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  font-size: 13.8px;
  max-width: 92%;
  position: relative;
  z-index: 1;
}

/* hover */
.wofCard:hover {
  transform: translateY(-8px);
  transition: .22s ease;
  border-color: rgba(230, 179, 37, .22);
}

.wofCard:hover .wofCard__ico {
  background: rgba(198, 93, 0, .14);
  border-color: rgba(198, 93, 0, .26);
  color: #fff;
}

/* Responsive */
@media(max-width:1100px) {
  .wof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:560px) {
  .wof__grid {
    grid-template-columns: 1fr;
  }
}

/* Cars */
/* Section */
.rFleet {
  background:
    radial-gradient(1100px 620px at 16% 18%, rgba(230, 179, 37, .20), transparent 62%),
    radial-gradient(1100px 620px at 88% 18%, rgba(15, 76, 92, .12), transparent 62%),
    linear-gradient(180deg, #fff 0%, rgba(243, 233, 220, .55) 100%);
}


/* Grid */
.rFleet__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Card */
.rCar {
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--stroke);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.rCar:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 80px rgba(15, 76, 92, .22);
}

/* Media */
.rCar__media {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.rCar__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(230, 179, 37, 0.158), transparent 60%),
    linear-gradient(to top, rgba(15, 77, 92, 0.247), rgba(15, 77, 92, 0.021));
}

/* Left bottom tag like screenshot */
.rCar__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: var(--accent);
  color: #1b1b1b;
  font-weight: 900;
  padding: 10px 14px;
  border-top-right-radius: 14px;
}

/* top chips */
.rCar__chip {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: rgba(15, 76, 92, .95);
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, .65);
  backdrop-filter: blur(8px);
}

.rCar__chip--gold {
  background: var(--primary);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}

.rCar__body {
  padding: 18px 18px 16px;
}

.rCar__name {
  margin: 2px 0 14px;
  font-size: 20px;
  font-weight: 950;
  color: var(--text);
}

.rCar__titleRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.rCar__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.rCar__stars i {
  color: var(--accent);
  /* Warm Gold */
  font-size: 14px;
}

.rCar__stars span {
  margin-left: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(47, 47, 47, .75);
}

/* Specs grid (2 rows) */
.rCar__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 10px;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(47, 47, 47, .08);
  border-bottom: 1px solid rgba(47, 47, 47, .08);
}

.rCar__specs span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(47, 47, 47, .78);
  white-space: nowrap;
}

.rCar__specs i {
  color: rgba(15, 76, 92, .95);
}

/* Footer */
.rCar__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
}

.rCar__price b {
  display: block;
  font-size: 22px;
  font-weight: 1000;
  color: var(--primary);
}

.rCar__price b span {
  font-size: 14px;
  font-weight: 900;
  color: rgba(47, 47, 47, .7);
  margin-left: 4px;
}

.rCar__price small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(47, 47, 47, .68);
}

/* Buttons */
.rCar__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* MOBILE: force 1 row, 2 buttons side-by-side */
@media (max-width: 640px) {
  .rCar__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .rCar__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* one row */
    gap: 10px;
  }

  .rBtn {
    width: 100%;
    padding: 12px 10px;
    /* compact */
    font-size: 13px;
    border-radius: 14px;
  }
}

.rBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 950;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid transparent;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
  white-space: nowrap;
}

.rBtn--ghost {
  background: rgba(198, 93, 0, .10);
  color: var(--primary);
  border-color: rgba(198, 93, 0, .18);
}

.rBtn--ghost:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.rBtn--solid {
  background: linear-gradient(135deg, var(--secondary), #07323a);
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 14px 30px rgba(15, 76, 92, .18);
}

.rBtn--solid:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 980px) {
  .rFleet__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rCar__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rFleet__grid {
    grid-template-columns: 1fr;
  }

  .rCar__media {
    height: 200px;
  }

  .rCar__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .rCar__actions {
    justify-content: stretch;
  }

  .rBtn {
    width: 100%;
  }
}

/* tours */
/* ===== Heading ===== */
.tpHeadPro__head {
  margin-bottom: 15px;
}

.tpHeadPro__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: .30em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 76, 92, .92);
}

.tpHeadPro__kicker i {
  color: var(--primary);
}

.tpHeadPro__title {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 1000;
  color: #0f4c5ceb;
}

.tpHeadPro__title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tpHeadPro__copy p {
  margin: 0 0 12px;
  color: rgba(47, 47, 47, .82);
  font-size: 15px;
  line-height: 1.7;
}

/* hidden paras */
.tpHeadPro__more {
  display: none;
}
/* when open */
.tour-content.isOpen .tpHeadPro__more{ display:block; }
/* button */
.tpHeadPro__toggle {
  margin: 10px 0px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(198, 93, 0, .20);
  background: rgba(198, 93, 0, .08);
  color: var(--primary);
  font-weight: 1000;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.tpHeadPro__toggle:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.tpHeadPro__toggle i {
  transition: transform .25s ease;
}

/* open state */
.tpHeadPro__inner.isOpen .tpHeadPro__more {
  display: block;
}

.tpHeadPro__inner.isOpen .tpHeadPro__toggle i {
  transform: rotate(180deg);
}

@media (max-width:640px) {
  .tpHeadPro__toggle {
    width: 100%;
    justify-content: center;
  }
}

/* Grid */
.tX__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Card */
.tXCard {
  background: #fff;
  border: 1px solid rgba(47, 47, 47, .10);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(15, 76, 92, .14);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.tXCard:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 90px rgba(15, 76, 92, .22);
}

/* Media */
.tXCard__media {
  display: block;
  position: relative;
  height: 250px;
  /* compact */
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.tXCard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 260px at 15% 0%, rgba(230, 179, 37, .22), transparent 60%),
    linear-gradient(to top, rgba(15, 76, 92, .58), rgba(15, 76, 92, .05));
}

/* Badges */
.tXCard__badges {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tXPill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px);
  color: rgba(15, 76, 92, .95);
  font-weight: 950;
  font-size: 12px;
}

.tXPill--hot {
  background: var(--primary);
  color: #fff;
  border-color: rgba(255, 255, 255, .20);
}

.tXPill--gold {
  background: var(--accent);
  color: #1b1b1b;
  border-color: rgba(0, 0, 0, .08);
}

/* Duration */
.tXDur {
  position: absolute;
  z-index: 3;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(230, 179, 37, .95);
  color: #1b1b1b;
  font-weight: 1000;
}

/* Rating OVER IMAGE */
.tXRateOver {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 9px 12px;
  white-space: nowrap;
}

.tXRateOver i {
  color: var(--accent);
  font-size: 13px;
}

.tXRateOver span {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 900;
  color: rgb(255, 255, 255);
}

/* Body (tight) */
.tXCard__body {
  padding: 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tXCard__title {
  margin: 0;
  font-size: 18px;
  font-weight: 1000;
  color: var(--text);
  line-height: 1.22;
}

.tXCard__destination {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(47, 47, 47, .75);
  font-weight: 500;
}

.tXCard__destination i {
  color: var(--primary);
  font-size: 13px;
}

/* Points */
.tXPoints {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(47, 47, 47, .10);
}

.tXPoints span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(47, 47, 47, .78);
  line-height: 1.32;
}

.tXPoints i {
  color: var(--secondary);
  margin-top: 2px;
}

/* Actions */
.tXCard__actions {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(47, 47, 47, .10);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.tXBtn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 950;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .2s ease, filter .2s ease;
}

.tXBtn--ghost {
  background: rgba(243, 233, 220, .85);
  color: var(--primary);
  border-color: rgba(198, 93, 0, .22);
}

.tXBtn--solid {
  background: linear-gradient(135deg, var(--secondary), #07323a);
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 14px 30px rgba(15, 76, 92, .16);
}

.tXBtn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 980px) {
  .tX__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tX__grid {
    grid-template-columns: 1fr;
  }

  .tXCard__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .tXBtn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .tXBtn i {
    display: none;
  }

  .tXBtn {
    font-size: 12px;
    padding: 11px 10px;
  }

  .tXPoints {
    grid-template-columns: 1fr;
  }
}

/* slide */
.ts__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}


.ts__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.05;
  font-weight: 1000;
  color: #0f4c5ceb;
}

.ts__title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ts__sub {
  margin: 8px 0 0;
  color: rgba(47, 47, 47, .74);
  line-height: 1.5;
  font-size: 14px;
}

.ts__ctrl {
  display: flex;
  gap: 10px;
}

.ts__btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 76, 92, .14);
  background: #fff;
  box-shadow: 0 14px 35px rgba(15, 76, 92, .10);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s ease, filter .2s ease;
}

.ts__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.ts__btn:active {
  transform: translateY(0);
}

/* Rail */
.ts__rail {
  display: flex;
  gap: 16px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 10px;
  padding: 10px 4px 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ts__rail::-webkit-scrollbar {
  display: none;
}

/* Cards */
.tsCard {
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 380px);
  scroll-snap-align: start;
}

.tsCard__media {
  position: relative;
  display: block;
  height: 420px;
  border-radius: 26px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  border: 1px solid rgba(47, 47, 47, .10);
  box-shadow: 0 18px 55px rgba(15, 76, 92, .14);
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: none !important;
}

.tsCard__media:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(15, 76, 92, .22);
}

.tsCard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 320px at 18% 0%, rgba(230, 179, 37, .20), transparent 60%),
    linear-gradient(to top, rgba(15, 76, 92, .78), rgba(15, 76, 92, .08));
}

/* Top badges */
.tsCard__badges {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tsPill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px);
  color: rgba(15, 76, 92, .95);
  font-weight: 950;
  font-size: 12px;
}

.tsPill--hot {
  background: var(--primary);
  color: #fff;
  border-color: rgba(255, 255, 255, .20);
}

.tsPill--gold {
  background: rgba(230, 179, 37, .95);
  color: #1b1b1b;
  border-color: rgba(0, 0, 0, .08);
}

/* Bottom meta row */
.tsCard__bottom {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tsDur {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(230, 179, 37, .95);
  color: #1b1b1b;
  font-weight: 1000;
  white-space: nowrap;
}

.tsRate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px);
  color: rgba(47, 47, 47, .86);
  font-weight: 1000;
  white-space: nowrap;
}

.tsRate i {
  color: var(--accent);
}

.tsRate em {
  font-style: normal;
  font-weight: 900;
  color: rgba(47, 47, 47, .68);
}

/* Title overlay (center-lower, above meta) */
.tsCard__title {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 66px;
}

.tsCard__title h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 1000;
  line-height: 1.15;
  text-shadow: 0 10px 22px rgba(0, 0, 0, .30);
}

.tsCard__dest {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, .30);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
}

.tsCard__dest i {
  color: rgba(230, 179, 37, .95);
}

/* Dots */
.ts__dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.tsDot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(15, 76, 92, .22);
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.tsDot.isActive {
  width: 22px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-color: rgba(0, 0, 0, .08);
}

/* Responsive */
@media (max-width: 640px) {
  .ts__top {
    align-items: flex-start;
  }

  .ts__ctrl {
    display: none;
  }

  /* swipe on mobile */
  .tsCard__media {
    height: 380px;
  }
}

/* ✅ MOBILE: 1 card per view (no half/peek) */
@media (max-width: 640px) {
  .ts__rail {
    gap: 12px;
    padding: 10px 0 14px;
    scroll-padding: 0;
  }

  .tsCard {
    width: auto !important;
    flex: 0 0 100%;
    scroll-snap-align: center;
  }
}

/* ✅ DESKTOP: exactly 3 cards visible, 4th hidden */
@media (min-width: 981px) {
  .ts__rail {
    overflow: hidden;
    scroll-snap-type: none;
    /* smoother desktop */
    scroll-padding: 0;
  }

  .tsCard {
    width: auto !important;
    flex: 0 0 calc((100% - (16px * 2)) / 3);
    /* 3 cards + 2 gaps */
    scroll-snap-align: unset;
  }
}



/* hotels */
.h3__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* 3 in a row */
    gap: clamp(14px, 2.2vw, 18px);
  }

  /* Premium card: cleaner border + spacing (no “boxy chips everywhere”) */
  .h3c {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 76, 92, .14);
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }

  .h3c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(15, 76, 92, .22);
  }

  .h3c__media {
    position: relative;
    height: 190px;
    background-size: cover;
    background-position: center;
  }

  .h3c__fade {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(700px 240px at 12% 12%, rgba(230, 179, 37, .22), transparent 55%),
      linear-gradient(180deg, rgba(15, 76, 92, .02), rgba(15, 76, 92, .55));
  }

  .h3c__top {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    z-index: 2;
  }

  .h3b {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 12px;
    background: rgba(243, 233, 220, .92);
    border: 1px solid rgba(15, 76, 92, .16);
    backdrop-filter: blur(8px);
  }

  .h3b--rate {
    color: var(--secondary);
  }

  .h3b--tag {
    background: rgba(230, 179, 37, .92);
    border-color: rgba(15, 76, 92, .18);
    color: #1e1a12;
  }

  .h3c__body {
    padding: 14px 14px 16px;
    background: rgba(243, 233, 220, .72);
  }

  .h3c__row1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .h3c__name {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -.01em;
  }

  .h3c__price {
    text-align: right;
    color: var(--secondary);
    line-height: 1.05;
    flex: 0 0 auto;
  }

  .h3c__price small {
    display: block;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .75;
    font-weight: 900;
  }

  .h3c__price strong {
    font-size: 18px;
    font-weight: 950;
  }

  .h3c__price span {
    font-size: 12px;
    font-weight: 900;
    opacity: .75;
    margin-left: 4px;
  }

  .h3c__loc {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 76, 92, .06);
    border: 1px solid rgba(15, 76, 92, .10);
    font-weight: 800;
    font-size: 13px;
    color: rgba(47, 47, 47, .90);
  }

  .h3c__loc i {
    color: var(--primary);
    margin-top: 1px;
  }

  /* Features: text + tiny icons (not big rounded pills = cleaner/pro look) */
  .h3c__feat {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 76, 92, .12);
    font-weight: 850;
    font-size: 13px;
    color: rgba(47, 47, 47, .88);
  }

  .h3c__feat span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .h3c__feat i {
    color: var(--secondary);
  }

  .h3c__actions {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .h3btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    /* reduced height */
    border-radius: 10px;
    /* slightly tighter */
    font-size: 15px;
    /* smaller text */
    font-weight: 850;
    /* less aggressive */
    letter-spacing: .2px;
    text-decoration: none;
    border: 1px solid rgba(15, 76, 92, .16);
    transition: all .18s ease;
  }

  .h3btn--line {
    background: rgba(255, 255, 255, .28);
    color: var(--secondary);
  }

  .h3btn--fill {
    background: linear-gradient(135deg, var(--primary), #b44d00);
    color: #fff;
    border-color: rgba(230, 179, 37, .22);
    box-shadow: 0 12px 26px rgba(198, 93, 0, .20);
  }

  .h3btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 76, 92, .14);
  }

  .h3btn--fill:hover {
    box-shadow: 0 18px 40px rgba(198, 93, 0, .24);
  }

  /* Responsive */
  @media (max-width: 980px) {
    .h3__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 560px) {
    .h3__grid {
      grid-template-columns: 1fr;
    }

    .h3c__media {
      height: 210px;
    }
  }

  /* CTA */
.cabImgCTA{
  position:relative;
  padding: clamp(50px,6vw,90px) 0;
  background-image: url('/images/prem-temple.webp');
  background-size: cover;
  background-position: center;
  color:#111;
  overflow:hidden;
}

/* Theme overlay */
.cabImgCTA__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(198,93,0,.85),
    rgba(230,179,37,.75)
  );
}

/* Content wrapper */
.cabImgCTA__wrap{
  position:relative;
  z-index:1;
  max-width: var(--max);
  margin:auto;
  padding: 0 var(--gutter);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

/* Left */
.cabImgCTA__kicker{
  margin:0 0 12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--secondary);
}

.cabImgCTA__title{
  margin:0;
  font-size: clamp(28px,3.5vw,52px);
  font-weight:950;
  line-height:1.05;
  letter-spacing:-.02em;
  color:#fff;
}

.cabImgCTA__sub{
  margin-top:14px;
  font-weight:600;
  max-width:600px;
  color:#fff;
}

/* Buttons */
.cabImgCTA__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.cabImgCTA__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 20px;
  border-radius:12px;
  font-weight:900;
  font-size:14px;
  text-decoration:none;
  transition:.2s ease;
}

.cabImgCTA__btn--light{
  background:#fff;
  color:#111;
}

.cabImgCTA__btn--dark{
  background: var(--secondary);
  color:#fff;
}

.cabImgCTA__btn:hover{
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width:900px){
  .cabImgCTA__wrap{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* why choose us */

.cabWhy{
  position:relative;
  padding: clamp(44px,6vw,86px) 0;
  overflow:hidden;
  color:#fff;
}

/* Background image (change URL as you want) */
.cabWhy__bg{
  position:absolute; inset:0;
  background-image:url('/images/gokul-mthura-vrindavan.webp');
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
}

/* Overlay to match your theme (saffron + teal) */
.cabWhy__shade{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 380px at 15% 30%, rgba(230,179,37,.28), transparent 60%),
    radial-gradient(900px 380px at 85% 25%, rgba(198,93,0,.20), transparent 60%),
    linear-gradient(180deg, rgba(15,76,92,.72), rgba(15,76,92,.78));
}

.cabWhy__wrap{
  position:relative;
  z-index:1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cabWhy__head{ text-align:center; max-width: 860px; margin: 0 auto 26px; }
.cabWhy__kicker{
  margin:0 0 10px;
  font-weight: 950;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.92;
}
.cabWhy__title{
  margin:0;
  font-size: clamp(28px,3.6vw,48px);
  line-height:1.06;
  letter-spacing:-.02em;
  font-weight: 950;
}
.cabWhy__title span{
  background: linear-gradient(90deg, var(--accent), #fff);
  -webkit-background-clip:text; background-clip:text; color: transparent;
}
.cabWhy__sub{ margin: 12px auto 0; max-width: 70ch; opacity:.92; font-weight: 700; }

/* Cards grid (floating) */
.cabWhy__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px,2.2vw,18px);
  align-items:stretch;
  margin-top: 22px;
}

/* Card style (different from sample: top ring + clean body, no learn more) */
.cwCard{
  position:relative;
  border-radius: 18px;
  padding: 18px 16px 16px;
  background: rgba(243,233,220,.10);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cwCard:before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(230,179,37,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  pointer-events:none;
}
.cwCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,.24);
  border-color: rgba(255,255,255,.28);
}

/* Icon ring (unique element) */
.cwCard__ring{
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  display:grid;
  place-items:center;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  margin-bottom: 12px;
  position:relative;
  z-index:1;
}
.cwCard__icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(230,179,37,.22);
  border: 1px solid rgba(230,179,37,.30);
  color: #fff;
  font-size: 18px;
}

.cwCard__title{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 950;
  letter-spacing:-.01em;
  position:relative;
  z-index:1;
}
.cwCard__text{
  margin:0;
  font-size: 13px;
  font-weight: 700;
  opacity:.9;
  line-height:1.5;
  position:relative;
  z-index:1;
}

.cwCard__mini{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  opacity:.92;
  position:relative;
  z-index:1;
}
.cwCard__mini i{ color: var(--accent); }

/* Featured card (different size + highlight) */
.cwCard--featured{
  background: rgba(230,179,37,.12);
  border-color: rgba(230,179,37,.30);
}
.cwCard--featured .cwCard__icon{
  background: rgba(198,93,0,.32);
  border-color: rgba(198,93,0,.36);
}

/* CTA row */
.cabWhy__ctaRow{
  margin-top: 20px;
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap:wrap;
}

.cabWhy__btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 11px 15px;
  border-radius: 12px;
  font-weight: 950;
  font-size: 16px;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.cabWhy__btn--primary{
  background: linear-gradient(135deg, var(--primary), #b44d00);
  color:#fff;
  border-color: rgba(230,179,37,.22);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
.cabWhy__btn--ghost{
  background: rgba(255,255,255,.12);
  color:#fff;
}
.cabWhy__btn--wa{
  background: rgba(230,179,37,.90);
  color:#1e1a12;
  border-color: rgba(230,179,37,.35);
}
.cabWhy__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}

/* Responsive */
@media (max-width: 1100px){
  .cabWhy__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .cabWhy__grid{ grid-template-columns: 1fr; }
}

/* routes */
.rtPills__head {
        margin: 0 auto 18px;
        text-align: left;
    }

    .rtPills__badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(230, 179, 37, .16);
        border: 1px solid rgba(15, 76, 92, .14);
        font-weight: 950;
        color: var(--secondary);
    }

    .rtPills__title {
        margin: 12px 0 8px;
        font-size: clamp(26px, 3.2vw, 44px);
        line-height: 1.08;
        letter-spacing: -.02em;
        font-weight: 950;
        color: var(--secondary);
    }

    .rtPills__title span {
        background: linear-gradient(90deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .rtPills__sub {
        margin: 0;
        opacity: .9;
        font-weight: 700;
    }

    .rtPills__list {
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Pill (different: small left icon capsule + inset border) */
    .rtPill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 950;
        font-size: 13px;
        color: rgba(47, 47, 47, .92);
        background: rgba(255, 255, 255, .32);
        border: 1px solid rgba(15, 76, 92, .14);
        box-shadow: 0 10px 22px rgba(15, 76, 92, .06);
        transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
    }

    .rtPill__ico {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        background: rgba(15, 76, 92, .08);
        border: 1px solid rgba(15, 76, 92, .12);
        color: var(--secondary);
        flex: 0 0 auto;
    }

    .rtPill:hover {
        transform: translateY(-2px);
        border-color: rgba(198, 93, 0, .25);
        box-shadow: 0 16px 34px rgba(15, 76, 92, .12);
        background: rgba(255, 255, 255, .42);
    }

    .rtPill:hover .rtPill__ico {
        background: rgba(230, 179, 37, .22);
        border-color: rgba(230, 179, 37, .26);
        color: var(--primary);
    }

    /* Bottom bar */
    .rtPills__bar {
        margin-top: 18px;
        border-radius: 16px;
        border: 1px solid rgba(15, 76, 92, .14);
        background: rgba(255, 255, 255, .26);
        box-shadow: var(--shadow2);
        padding: 12px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .rtPills__note {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 850;
        font-size: 13px;
        color: rgba(47, 47, 47, .80);
    }

    .rtPills__note i {
        color: var(--secondary);
    }

    .rtPills__actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .rtBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 12px;
        font-weight: 950;
        font-size: 13px;
        text-decoration: none;
        border: 1px solid rgba(15, 76, 92, .14);
        transition: transform .16s ease, box-shadow .16s ease;
        white-space: nowrap;
    }

    .rtBtn--primary {
        background: linear-gradient(135deg, var(--primary), #b44d00);
        color: #fff;
        border-color: rgba(230, 179, 37, .22);
        box-shadow: 0 12px 26px rgba(198, 93, 0, .14);
    }

    .rtBtn--ghost {
        background: rgba(15, 76, 92, .06);
        color: var(--secondary);
    }

    .rtBtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(15, 76, 92, .14);
    }

    /* Responsive */
    @media (max-width: 640px) {
        .rtPills__head {
            text-align: left;
        }

        .rtPill {
            width: 100%;
            justify-content: flex-start;
        }

        .rtPills__bar {
            align-items: flex-start;
        }
    }

    /* reviews */
    .tPro2__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 16px;
    }

    .tPro2__kicker {
        margin: 0 0 8px;
        font-weight: 950;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: rgba(15, 76, 92, .90);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .tPro2__title {
        margin: 0;
        font-size: clamp(28px, 3.5vw, 54px);
        line-height: 1.02;
        font-weight: 950;
        letter-spacing: -.02em;
        text-transform: uppercase;
        color: rgba(15, 76, 92, .90);
    }

    .tPro2__title span {
        background: linear-gradient(90deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    /* Nav buttons */
    .tPro2__nav {
        display: flex;
        gap: 12px;
    }

    .t2Nav {
        width: 56px;
        height: 56px;
        border-radius: 999px;
        border: 0;
        cursor: pointer;
        display: grid;
        place-items: center;
        background: rgba(230, 179, 37, .96);
        color: #1e1a12;
        box-shadow: 0 14px 30px rgba(15, 76, 92, .14);
        transition: transform .16s ease, box-shadow .16s ease;
    }

    .t2Nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(15, 76, 92, .18);
    }

    /* Track: no visible scrollbar + true "slide" feeling */
    .t2Track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% - 40px) / 3);
        gap: 20px;
        overflow: hidden;
        /* IMPORTANT: hides scrollbar */
        scroll-behavior: smooth;
    }

    /* Card (very clean, like sample) */
    .t2Card {
        border-radius: 18px;
        background: #fff;
        border: 1px solid rgba(15, 76, 92, .16);
        box-shadow: none;
        padding: 18px 18px 16px;
        min-height: 210px;
        position: relative;
    }

    .t2Card:hover {
        border-color: rgba(15, 76, 92, .24);
    }

    /* Top row */
    .t2Card__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    /* User */
    .t2User {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .t2User__img {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        object-fit: cover;
        border: 2px solid rgba(15, 76, 92, .10);
    }

    .t2User__meta b {
        display: block;
        font-weight: 950;
        font-size: 16px;
    }

    .t2User__meta span {
        display: block;
        margin-top: 4px;
        font-weight: 800;
        font-size: 13px;
        color: rgba(47, 47, 47, .62);
    }

    /* Quote badge (top-right) */
    .t2Quote {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        background: rgba(230, 179, 37, .96);
        display: grid;
        place-items: center;
        color: #1e1a12;
    }

    /* Text */
    .t2Text {
        margin: 14px 0 16px;
        font-size: 14px;
        line-height: 1.7;
        font-weight: 750;
        color: rgba(47, 47, 47, .82);
    }

    /* Stars */
    .t2Stars i {
        color: var(--accent);
    }

    /* Responsive */
    @media (max-width: 980px) {
        .t2Track {
            grid-auto-columns: calc((100% - 20px) / 2);
        }
    }

    @media (max-width: 620px) {
        .tPro2__top {
            flex-direction: column;
            align-items: flex-start;
        }

        .tPro2__nav {
            align-self: flex-end;
        }

        .t2Track {
            grid-auto-columns: 100%;
        }
    }

    
/* faqs */
.fqRef__grid{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(18px,3vw,34px);
  align-items:start;
}

/* LEFT */
.fqRef__kicker{
  margin:0 0 10px;
  font-weight: 950;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(15,76,92,.92);
  display:flex; align-items:center; gap:10px;
}
.fqRef__title{
  margin:0 0 18px;
  font-size: clamp(30px,3.6vw,56px);
  line-height:1.02;
  letter-spacing:-.02em;
  font-weight: 950;
  text-transform:uppercase;
}
.fqRef__title span{
        background: linear-gradient(90deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
}
.fqRef__media{
  position:relative;
  width: min(420px, 100%);
}
.fqRef__img{
  height: 360px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(15,76,92,.14);
  overflow:hidden;
}

/* Stat block (like ref) */
.fqRef__stat{
  position:absolute;
  right: -18px;
  bottom: 26px;
  width: 150px;
  border-radius: 16px;
  padding: 16px 14px;
  background: linear-gradient(135deg, rgba(230,179,37,.92), rgba(198,93,0,.88));
  border: 1px solid rgba(255,255,255,.35);
  color:#1e1a12;
}
.fqRef__stat b{
  display:block;
  font-size: 44px;
  line-height:1;
  font-weight: 950;
}
.fqRef__stat span{
  display:block;
  margin-top: 10px;
  font-weight: 900;
  font-size: 13px;
  opacity:.92;
}

/* mini points */
.fqRef__mini{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(47,47,47,.82);
}
.fqRef__mini i{ color: var(--primary); }

/* RIGHT */
.fqRef__right{
  display:grid;
  gap: 14px;
}

/* FAQ item as card */
.fqItem{
  border-radius: 18px;
  background: rgba(255,255,255,.26);
  border: 1px solid rgba(15,76,92,.14);
  overflow:hidden;
}

/* Question bar */
.fqQ{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  cursor:pointer;
  text-align:left;
  font-weight: 950;
  font-size: 15px;
  color: rgba(47,47,47,.92);
}

/* Round icon on right */
.fqIcon{
  width: 44px; height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  background: rgba(230,179,37,.92);
  color:#1e1a12;
  border: 1px solid rgba(230,179,37,.35);
  transition: transform .18s ease;
}

/* Answer */
.fqA{
  display:none;
  padding: 0 18px 18px;
  font-weight: 750;
  line-height: 1.7;
  color: rgba(47,47,47,.76);
}

/* Open state */
.fqItem.is-open{
  background: rgba(255,255,255,.34);
  border-color: rgba(15,76,92,.18);
}
.fqItem.is-open .fqA{ display:block; }
.fqItem.is-open .fqIcon{ transform: rotate(45deg); }

/* Hover */
.fqItem:hover{ border-color: rgba(15,76,92,.22); }
.fqItem:hover .fqIcon{
  background: rgba(230,179,37,.98);
}

/* Responsive */
@media (max-width: 980px){
  .fqRef__grid{ grid-template-columns: 1fr; }
  .fqRef__media{ width: 100%; max-width: 520px; }
  .fqRef__stat{ right: 12px; }
}
@media (max-width: 560px){
  .fqRef__img{ height: 280px; }
  .fqRef__stat{ width: 140px; bottom: 14px; }
}


/* GAllery */
.cabGallery__head {
        text-align: center;
        margin-bottom: 30px;
    }

    .cabGallery__kicker {
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--secondary);
        margin: 0 0 10px;
    }

    .cabGallery__title {
        font-size: clamp(28px, 3.2vw, 44px);
        font-weight: 950;
        margin: 0;
        letter-spacing: -.02em;
        color: var(--text);
    }

    /* Grid Layout */
    .cabGallery__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
        gap: 18px;
    }

    /* Items */
    .cabGallery__item {
        position: relative;
        overflow: hidden;
        border-radius: 18px;
        border: 1px solid rgba(15, 76, 92, .12);
    }

    .cabGallery__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .cabGallery__item:hover img {
        transform: scale(1.08);
    }

    /* Featured sizes */
    .cabGallery__item--large {
        grid-row: span 2;
    }

    .cabGallery__item--wide {
        grid-column: span 2;
    }

    /* Responsive */
    @media(max-width:980px) {
        .cabGallery__grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width:580px) {
        .cabGallery__grid {
            grid-template-columns: 1fr;
            grid-auto-rows: 240px;
        }

        .cabGallery__item--large,
        .cabGallery__item--wide {
            grid-column: auto;
            grid-row: auto;
        }
    }

    /* Footer */
    .ftReal{ margin-top: 70px; }

/* Wave */
.ftReal__wave svg{ display:block; width:100%; height: 78px; }
.ftReal__wave path{ fill: var(--secondary); }

/* ================== FOOTER PRO (Replace Old Footer CSS) ================== */

.ftReal__inner{
  background: #0F4C5C; /* secondary */
  color: rgba(255,255,255,.92);
}

/* Wave (keep) */
.ftReal__wave path{ fill: #0F4C5C; }

.ftReal__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px var(--gutter) 18px;
}

/* --- TOP ROW --- */
.ftReal__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

/* Brand left */
.ftReal__brand{ max-width: 620px; }
.ftReal__logo{
  height: 50px;
  width: auto;
  display:block;
  object-fit: contain;

  filter: drop-shadow(1px 1px 0 #fff)
          drop-shadow(-1px -1px 0 #fff)
          drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

/* IMPORTANT: show nothing broken */
.ftReal__logo[alt]{ color: transparent; }

/* Tagline more premium */
.ftReal__tagline{
  margin: 12px 0 0;
  font-weight: 650;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
}

/* Buttons */
.ftReal__actions{ display:flex; gap: 10px; flex-wrap:wrap; }
.ftBtn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px; /* premium pill */
  font-weight: 900;
  font-size: 13px;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.16);
  color:#fff;
  background: rgba(255,255,255,.06);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.ftBtn:hover{ transform: translateY(-2px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); }

.ftBtn--wa{
  background: rgba(230,179,37,.16);
  border-color: rgba(230,179,37,.24);
}
.ftBtn--wa:hover{ background: rgba(230,179,37,.22); }

.ftBtn--primary{
  background: linear-gradient(135deg, var(--primary), #b44d00);
  border-color: rgba(230,179,37,.18);
}
.ftBtn--primary:hover{ filter: brightness(1.03); }

/* --- MAIN PANEL (makes it feel premium) --- */
.ftReal__grid{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 20px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1.15fr;
  gap: 24px;
}

/* Headings */
.ftCol h4{
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 950;
  color: #fff;
  letter-spacing: .02em;
}

/* Links */
.ftCol ul{ list-style:none; padding:0; margin:0; display:grid; gap: 10px; }
.ftCol a{
  text-decoration:none;
  color: rgba(255,255,255,.82);
  font-weight: 750;
  font-size: 13.5px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  transition: color .16s ease;
}
.ftCol a:hover{ color:#fff; }

/* Route icons */
.ftRoutes i{ color: rgba(230,179,37,.95); }

/* Social – smaller + cleaner */
.ftSocial{ display:flex; gap: 10px; margin-top: 14px; }
.ftSocial a{
  width: 40px; height: 40px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
}
.ftSocial a:hover{ background: rgba(255,255,255,.12); }

/* Contact block – proper UI lines */
.ftCol--contact .ftLine{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 10px 0;
  text-decoration:none;
  color: rgba(255,255,255,.90);
}

.ftIco{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  flex: 0 0 auto;
}

.ftTxt b{
  display:block;
  font-weight: 950;
  font-size: 14px;
  color:#fff;
}
.ftTxt small{
  display:block;
  margin-top: 4px;
  font-weight: 700;
  font-size: 12.5px;
  color: rgba(255,255,255,.70);
}

/* Support badges – cleaner */
.ftBadgeRow{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 14px; }
.ftBadge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 850;
  font-size: 12px;
  color: rgba(255,255,255,.86);
}
.ftBadge i{ color: rgba(230,179,37,.95); }

/* --- BOTTOM BAR --- */
.ftReal__bottom{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
}
.ftReal__bottom p{
  margin:0;
  font-weight: 750;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

/* Responsive */
@media (max-width: 1020px){
  .ftReal__top{ align-items:flex-start; flex-direction:column; }
  .ftReal__actions{ justify-content:flex-start; }
  .ftReal__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .ftReal__grid{ grid-template-columns: 1fr; padding: 16px; }
}


/* about */
.abHeroPro{
  position: relative;
  padding: 140px 0 120px;
  background: url('/images/tours/prem-mandir.webp') center/cover no-repeat;
  overflow: hidden;
}

/* Overlay */
.abHeroPro__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
      135deg,
      rgba(15,76,92,.85),
      rgba(15,76,92,.75)
  );
}

/* Container */
.abHeroPro__wrap{
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin:auto;
  padding:0 var(--gutter);
}

/* Content */
.abHeroPro__content{
  max-width: 680px;
  color:#fff;
}

/* Tag */
.abHeroPro__tag{
  display:inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(230,179,37,.18);
  border: 1px solid rgba(230,179,37,.35);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 22px;
}

/* Heading */
.abHeroPro h1{
  font-size: 48px;
  font-weight: 950;
  line-height: 1.2;
  margin-bottom: 20px;
}

.abHeroPro h1 span{
  color: var(--accent);
}

/* Paragraph */
.abHeroPro p{
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
  margin-bottom: 30px;
}

/* Buttons */
.abHeroPro__btns{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.abHeroBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration:none;
  font-size: 14px;
  transition: all .2s ease;
}

.abHeroBtn--ghost{
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
}

.abHeroBtn--ghost:hover{
  background: rgba(255,255,255,.1);
}

.abHeroBtn--primary{
  background: linear-gradient(135deg,var(--primary),#b44d00);
  color:#fff;
}

.abHeroBtn--primary:hover{
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width:768px){
  .abHeroPro{
    padding:100px 0 80px;
  }
  .abHeroPro h1{
    font-size:34px;
  }
}

.abIntro{
  background: #fff;
}

.abIntro__wrap{
  padding:0 var(--gutter);
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:50px;
  align-items:center;
}

.abIntro__img img{
  width:100%;
  border-radius: 16px;
}

.abIntro__content h2{
  font-size:28px;
  font-weight:900;
  margin-bottom:18px;
  color: var(--secondary);
}

.abIntro__content p{
  line-height:1.8;
  margin-bottom:14px;
  color: rgba(47,47,47,.8);
}

.abIntro__list{
  margin-top:20px;
  display:grid;
  gap:10px;
}

.abIntro__list div{
  font-weight:700;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.abIntro__list i{
  color: var(--primary);
}

@media(max-width: 900px){
  .abIntro__wrap{
    grid-template-columns:1fr;
  }
}



.mvPro__head{
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.mvPro__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(230,179,37,.18);
  border: 1px solid rgba(230,179,37,.25);
  color: var(--secondary);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mvPro__title{
  margin: 14px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 950;
  color: var(--text);
  letter-spacing: -.02em;
}

.mvPro__sub{
  margin: 0;
  color: rgba(47,47,47,.78);
  font-weight: 700;
  line-height: 1.7;
}

/* Grid */
.mvPro__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Cards */
.mvCard{
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(15,76,92,.12);
  background: rgba(255,255,255,.26);
  overflow:hidden;
  padding: 22px;
}

/* subtle top accent bar (unique look) */
.mvCard::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .95;
}

/* soft pattern (very subtle) */
.mvCard::after{
  content:"";
  position:absolute;
  inset:-60px -80px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(230,179,37,.20), transparent 60%);
  pointer-events:none;
}

.mvCard__top{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 12px;
}

.mvCard__icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(15,76,92,.10);
  border: 1px solid rgba(15,76,92,.12);
  color: var(--secondary);
  flex: 0 0 auto;
}

.mvCard__label{
  display:inline-block;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(47,47,47,.65);
  margin-bottom: 4px;
}

.mvCard__h{
  margin: 0;
  font-weight: 950;
  font-size: 20px;
  letter-spacing: -.01em;
  color: var(--text);
}

.mvCard__p{
  margin: 10px 0 14px;
  color: rgba(47,47,47,.78);
  font-weight: 700;
  line-height: 1.75;
}

.mvCard__list{
  margin: 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 9px;
}

.mvCard__list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-weight: 800;
  color: rgba(47,47,47,.80);
  font-size: 13.5px;
}

.mvCard__list i{
  margin-top: 2px;
  color: var(--primary);
  opacity: .95;
}

/* small differentiation */
.mvCard--vision .mvCard__icon{
  background: rgba(230,179,37,.16);
  border-color: rgba(230,179,37,.18);
}

/* Responsive */
@media (max-width: 900px){
  .mvPro__grid{ grid-template-columns: 1fr; }
}


.abStats{
  padding:70px 0;
  background: var(--secondary);
  color:#fff;
}

.abStats__wrap{
  max-width: var(--max);
  margin:auto;
  padding:0 var(--gutter);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
  gap:30px;
}

.abStat h4{
  font-size:32px;
  font-weight:950;
  margin-bottom:6px;
}

.abStat p{
  font-size:14px;
  opacity:.85;
}

@media(max-width:900px){
  .abStats__wrap{
    grid-template-columns:1fr 1fr;
  }
}

/* ================= contact page ================= */
.cMain{ background: #fff; }

.cGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}

.cCard{
  border-radius: 18px;
  border: 1px solid rgba(15,76,92,.12);
  background: rgba(243,233,220,.35);
  padding: 18px;
}

.cCard__head h2{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 1000;
  color: var(--text);
}
.cCard__head p{
  margin: 0 0 14px;
  color: rgba(47,47,47,.76);
  font-weight: 750;
  line-height: 1.7;
}

/* Form */
.cForm{ display:grid; gap: 12px; }
.cRow{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cField span{
  display:block;
  font-weight: 900;
  font-size: 12.5px;
  color: rgba(47,47,47,.78);
  margin: 0 0 7px;
}
.cField--full{ grid-column: 1 / -1; }

.cInput{
  position: relative;
}
.cInput i{
  position:absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(15,76,92,.72);
  font-size: 14px;
}
.cInput input,
.cInput select{
  width:100%;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(15,76,92,.14);
  background: rgba(255,255,255,.55);
  padding: 0 12px 0 38px;
  font-weight: 850;
  color: var(--text);
  outline: none;
}
.cInput select{ padding-right: 12px; }

.cField textarea{
  width:100%;
  min-height: 120px;
  border-radius: 16px;
  border: 1px solid rgba(15,76,92,.14);
  background: rgba(255,255,255,.55);
  padding: 12px 12px;
  font-weight: 800;
  color: var(--text);
  outline:none;
  resize: vertical;
}

.cAgree{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15,76,92,.06);
  border: 1px solid rgba(15,76,92,.10);
  font-weight: 800;
  color: rgba(47,47,47,.76);
  font-size: 13px;
}
.cAgree i{ color: var(--primary); margin-top: 2px; }

.cActions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.cBtn2{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 1000;
  font-size: 13.5px;
  text-decoration:none;
  border: 1px solid rgba(15,76,92,.18);
  background: rgba(255,255,255,.35);
  color: var(--secondary);
  cursor:pointer;
}
.cBtn2--primary{
  background: linear-gradient(135deg, var(--primary), #b44d00);
  border-color: rgba(230,179,37,.18);
  color:#fff;
}
.cBtn2--ghost:hover{ background: rgba(255,255,255,.50); }

/* Side cards */
.cSide{ display:grid; gap: 12px; }
.cInfoCard{
  border-radius: 18px;
  border: 1px solid rgba(15,76,92,.12);
  background: rgba(243,233,220,.35);
  padding: 16px;
}
.cInfoCard h3{
  margin: 0 0 8px;
  font-weight: 1000;
  font-size: 15px;
  color: var(--text);
  display:flex;
  align-items:center;
  gap: 10px;
}
.cInfoCard h3 i{ color: var(--primary); }
.cInfoCard p{
  margin: 0;
  color: rgba(47,47,47,.75);
  font-weight: 750;
  line-height: 1.7;
}
.cInfoCard--accent{
  background: rgba(230,179,37,.14);
  border-color: rgba(230,179,37,.22);
}

/* Map */
.cMap{ margin-top: 22px; }
.cMap__head{
  text-align:center;
  margin: 0 auto 12px;
  max-width: 760px;
}
.cMap__head h2{ margin:0 0 6px; font-weight:1000; font-size:22px; color: var(--text); }
.cMap__head p{ margin:0; color: rgba(47,47,47,.76); font-weight:750; line-height:1.7; }

.cMap__frame{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(15,76,92,.12);
  background: rgba(243,233,220,.35);
}
.cMap__frame iframe{ width:100%; height: 360px; border:0; display:block; }


/* Responsive */
@media (max-width: 980px){
  .cHero__wrap{ grid-template-columns: 1fr; }
  .cGrid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .cRow{ grid-template-columns: 1fr; }
}

/* Pop up */
/* Trigger */
.qOpenBtn{
  display:inline-flex; align-items:center; gap:10px;
  border:none; cursor:pointer;
  padding:12px 16px;
  border-radius:14px;
  font-weight:950;
  color:#fff;
  background:linear-gradient(135deg, var(--secondary), #0b6a72);
  box-shadow:0 16px 40px rgba(15,76,92,.18);
}
.qOpenBtn i{ color:var(--accent); }

/* Modal */
.qModal{ position:fixed; inset:0; display:none; z-index:999999; }
.qModal.is-open{ display:block; }
.qModal__backdrop{
  position:absolute; inset:0;
  background:rgba(15,76,92,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Panel (NOT similar: left accent bar + rounded top header) */
.qModal__panel{
  position:relative;
  width:min(520px, calc(100% - 16px));
  margin:clamp(10px, 7vh, 56px) auto;
  max-height:90vh;
  display:flex; flex-direction:column;
  border-radius:18px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(243,233,220,.88));
  border:1px solid rgba(15,76,92,.16);
  box-shadow: var(--shadow);
}
.qModal__panel::before{
  content:"";
  position:absolute; left:0; top:0; bottom:0;
  width:6px;
  background:linear-gradient(180deg, var(--accent), var(--primary));
  opacity:.95;
}

/* Close */
.qModal__close{
  position:absolute; top:12px; right:12px;
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.92);
  color:var(--secondary);
  display:grid; place-items:center;
  cursor:pointer;
  z-index:3;
}

/* Header */
.qModal__header{
  padding:18px 18px 14px 22px;
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(230,179,37,.20), transparent 60%),
    linear-gradient(135deg, rgba(198,93,0,.10), rgba(15,76,92,.10));
  border-bottom:1px solid rgba(15,76,92,.10);
}
.qModal__badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:7px 11px;
  border-radius:999px;
  font-weight:950;
  color:rgba(15,76,92,.95);
  background:rgba(255,255,255,.70);
  border:1px solid rgba(15,76,92,.14);
  box-shadow:0 10px 24px rgba(15,76,92,.08);
}
.qModal__dot{
  width:9px; height:9px; border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(230,179,37,.14);
}
.qModal__title{
  margin:10px 0 6px;
  font-size:22px;
  font-weight:1100;
  color:var(--secondary);
  letter-spacing:-.2px;
}
.qModal__title span{ color:var(--primary); }
.qModal__sub{
  margin:0;
  color:rgba(47,47,47,.78);
  font-weight:650;
}

/* Body scroll */
.qModal__body{
  padding:14px 18px 18px 22px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}

/* Fields */
.qForm{ display:grid; gap:12px; }
.qField span{
  display:block;
  font-size:12px;
  font-weight:950;
  color:rgba(15,76,92,.92);
  margin:0 0 6px;
  letter-spacing:.22px;
  text-transform:uppercase;
}
.qField input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(15,76,92,.16);
  background:rgba(255,255,255,.92);
  padding:12px 12px;
  font-weight:750;
  color:var(--text);
  outline:none;
  box-shadow:0 10px 22px rgba(15,76,92,.06), inset 0 1px 0 rgba(255,255,255,.7);
  transition:.15s ease;
}
.qField input:focus{
  border-color: rgba(198,93,0,.42);
  box-shadow:0 16px 34px rgba(15,76,92,.10), 0 0 0 4px rgba(230,179,37,.14);
  transform: translateY(-1px);
}

/* Captcha (premium, not like sample) */
.qCaptcha{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(15,76,92,.14);
  background:rgba(255,255,255,.55);
}
.qCaptcha__lbl{
  display:block;
  font-size:12px;
  font-weight:950;
  color:rgba(15,76,92,.92);
  text-transform:uppercase;
  letter-spacing:.22px;
  margin:0 0 6px;
}
.qCaptcha__pill{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(15,76,92,.06), rgba(230,179,37,.12));
  border:1px solid rgba(15,76,92,.14);
}
.qCaptcha__pill b{
  font-size:18px;
  letter-spacing:2px;
  color:var(--secondary);
}
.qCaptcha__regen{
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid rgba(15,76,92,.14);
  background:rgba(255,255,255,.9);
  color:var(--primary);
  cursor:pointer;
}
.qCaptcha__ans{ align-self:end; }

/* Submit */
.qSubmit{
  border:none;
  border-radius:16px;
  padding:13px 14px;
  font-weight:1100;
  color:#fff;
  background:linear-gradient(135deg, var(--secondary), #0b6a72);
  box-shadow:0 18px 44px rgba(15,76,92,.18);
  cursor:pointer;
}
.qSubmit i{ margin-right:8px; color:var(--accent); }

.qHint{
  margin:2px 0 0;
  color:rgba(47,47,47,.72);
  font-weight:650;
  display:flex; align-items:center; gap:10px;
}

/* Responsive */
@media (max-width: 560px){
  .qCaptcha{ grid-template-columns: 1fr; }
  .qModal__header{ padding-right:56px; }
}

/* floating button */
/* ===== Floating Container ===== */
.fContact{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:99999;
}

/* ===== Base Button ===== */
.fBtn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:50px;
  font-weight:900;
  text-decoration:none;
  font-size:14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.3);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  transition:.2s ease;
  color:#fff;
}

.fBtn i{
  font-size:16px;
}

/* ===== Call Button (Theme Based) ===== */
.fBtn--call{
  background:linear-gradient(135deg, #0F4C5C, #0b6a72);
}
.fBtn--call:hover{
  transform:translateY(-3px);
  box-shadow:0 25px 50px rgba(15,76,92,.35);
}

/* ===== WhatsApp Button ===== */
.fBtn--wa{
  background:linear-gradient(135deg, #1fa96b, #0e7a4c);
}
.fBtn--wa:hover{
  transform:translateY(-3px);
  box-shadow:0 25px 50px rgba(0,0,0,.25);
}

/* ===== Mobile Optimization ===== */
@media (max-width:600px){
  .fBtn span{
    display:none; /* only icon on mobile */
  }
  .fBtn{
    width:52px;
    height:52px;
    justify-content:center;
    padding:0;
    border-radius:50%;
  }
}