:root {
  --red: #D90429;
  --red2: #EF233C;
  --orange: #F77F00;
  --orange2: #FCBF49;
  --pink: #FF4D8D;
  --pink2: #FF85AB;
  --yellow: #FFD60A;
  --yellow2: #FFAA00;
  --white: #FFFFFF;
  --offwhite: #FFF5F7;
  --dark: #12020A;
  --dark2: #220B14;
  --mid: #4A1525;
  --textc: #3A1520;
  --textl: #8A5565;
  --gfire: linear-gradient(135deg, #D90429, #F77F00, #FFD60A);
  --grose: linear-gradient(135deg, #FF4D8D, #D90429, #F77F00);
  --gwarm: linear-gradient(135deg, #F77F00, #FFD60A);
  --gdeep: linear-gradient(135deg, #12020A 0%, #2D0515 50%, #1A0208 100%);
  --gpink: linear-gradient(135deg, #FF4D8D, #D90429);
  --sh: 0 8px 32px rgba(217, 4, 41, .18);
  --shlg: 0 20px 60px rgba(217, 4, 41, .22);
  --rad: 18px;
  --radsm: 10px;
  --tr: .35s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', 'Noto Sans Devanagari', sans-serif;
  background: #fff;
  color: var(--textc);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gfire);
  border-radius: 3px;
}

/* CONTAINER */
.wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* SECTION HEAD */
.sh {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sh h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: .5rem 0 1rem;
  color: var(--dark);
}

.sh p {
  color: var(--textl);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.sh.lgt h2 {
  color: #fff;
}

.sh.lgt p {
  color: rgba(255, 255, 255, .65);
}

/* LABEL PILL */
.lbl {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, rgba(217, 4, 41, .1), rgba(247, 127, 0, .1));
  border: 1px solid rgba(217, 4, 41, .25);
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: .6rem;
}

.lbl.lgt {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

/* GRADIENT TEXT */
.gt {
  background: var(--gfire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gtw {
  background: var(--gwarm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gfire);
  color: #fff;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 4px 20px rgba(217, 4, 41, .4);
  font-size: .95rem;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--tr);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(217, 4, 41, .5);
}

.btn:hover::after {
  background: rgba(255, 255, 255, .12);
}

.btn.wht {
  background: #fff;
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.btn.wht:hover {
  background: var(--offwhite);
}

.btn.full {
  width: 100%;
  justify-content: center;
  border-radius: var(--radsm);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 2px solid var(--red);
  color: var(--red);
  padding: .8rem 1.8rem;
  border-radius: 100px;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
  transition: var(--tr);
  font-family: inherit;
}

.btn-o:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-3px);
}

.btn-o.sm {
  padding: .5rem 1.2rem;
  font-size: .82rem;
}

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 0;
  transition: var(--tr);
}

.nav.sc {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 2px 30px rgba(217, 4, 41, .1);
  backdrop-filter: blur(12px);
  padding: .6rem 0;
}

.nav-in {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gfire);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--sh);
  transition: var(--tr);
  overflow: hidden;
  flex-shrink: 0;
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-img:hover {
  transform: rotate(-6deg) scale(1.08);
}

.logo-txt span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.nav.sc .logo-txt span {
  color: var(--dark);
}

.logo-txt small {
  font-size: .68rem;
  color: rgba(255, 255, 255, .65);
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.nav.sc .logo-txt small {
  color: var(--textl);
}

/* NAV LINKS */
.navl {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.navl a {
  padding: .45rem .8rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
  transition: var(--tr);
}

.nav.sc .navl a {
  color: var(--textc);
}

.navl a:hover,
.navl a.act {
  background: rgba(217, 4, 41, .1);
  color: var(--red);
}

/* EMERGENCY BTN */
.emg {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--red);
  color: #fff;
  padding: .5rem .5rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  animation: epulse 2.5s ease-in-out infinite;
}

@keyframes epulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(217, 4, 41, .5);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(217, 4, 41, 0);
  }
}

/* HAMBURGER */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  z-index: 201;
}

.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--tr);
}

.nav.sc .ham span {
  background: var(--dark);
}

.ham.op span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ham.op span:nth-child(2) {
  opacity: 0;
}

.ham.op span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gdeep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 1.5rem 4rem;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hs {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .22;
}

.hs1 {
  width: 520px;
  height: 520px;
  background: var(--red);
  top: -10%;
  right: -5%;
  animation: fsh 8s ease-in-out infinite;
}

.hs2 {
  width: 380px;
  height: 380px;
  background: var(--orange);
  bottom: -5%;
  left: -5%;
  animation: fsh 10s ease-in-out infinite reverse;
}

.hs3 {
  width: 260px;
  height: 260px;
  background: var(--pink);
  top: 40%;
  left: 28%;
  animation: fsh 13s ease-in-out infinite 2s;
}

@keyframes fsh {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(30px, -20px);
  }

  66% {
    transform: translate(-20px, 25px);
  }
}

.hero-in {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-c {
  flex: 1;
}

.hero-v {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 214, 10, .15);
  border: 1px solid rgba(255, 214, 10, .35);
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 8vw, 5.2rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: .7rem;
}

.hero-hi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: .7rem;
}

.hero-desc {
  color: rgba(255, 255, 255, .58);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
}

.stat-s {
  font-size: 1.1rem;
  color: var(--yellow);
  font-weight: 700;
}

.stat-l {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .15rem;
}

.sdiv {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, .18);
}

/* Hero visual */
.hv-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hv-box {
  width: 100%;
  height: 400px;
  border-radius: 2rem;
  background: rgba(255, 255, 255, .06);
  border: 2px dashed rgba(255, 255, 255, .2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(255, 255, 255, .4);
  font-size: 3.5rem;
}

.hv-box span {
  font-size: .85rem;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255, 255, 255, .35);
}

.fc {
  position: absolute;
  background: #fff;
  padding: .7rem 1rem;
  border-radius: var(--radsm);
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shlg);
  animation: fcard 4s ease-in-out infinite;
}

.fc i {
  font-size: 1.4rem;
  color: var(--red);
}

.fc strong {
  font-size: .82rem;
  display: block;
  color: var(--dark);
}

.fc small {
  font-size: .68rem;
  color: var(--textl);
}

.fc1 {
  bottom: -1rem;
  left: -2rem;
  animation-delay: 0s;
}

.fc2 {
  top: 1.5rem;
  right: -2rem;
  animation-delay: 1.5s;
}

@keyframes fcard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .35);
  font-size: 1.4rem;
  animation: bonce 2s ease-in-out infinite;
}

@keyframes bonce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===== TICKER ===== */
.ticker {
  background: var(--gfire);
  padding: .8rem 0;
  overflow: hidden;
}

.tick-tr {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: tick 30s linear infinite;
}

.tick-tr span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-weight: 600;
  font-size: .83rem;
  white-space: nowrap;
}

@keyframes tick {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker:hover .tick-tr {
  animation-play-state: paused;
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: #fff;
}

.ab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ab-vis {
  display: grid;
  grid-template-columns: 1fr .5fr;
  gap: 1rem;
}

.ab-main {
  grid-column: 1/-1;
}

.iph {
  border-radius: var(--rad);
  background: linear-gradient(135deg, rgba(217, 4, 41, .06), rgba(247, 127, 0, .06));
  border: 2px dashed rgba(217, 4, 41, .2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: rgba(217, 4, 41, .38);
  font-size: 2.5rem;
  text-align: center;
  padding: 1.2rem;
}

.iph span {
  font-size: .75rem;
  color: var(--textl);
}

.iph.lg {
  height: 280px;
}

.iph.sm {
  height: 160px;
  font-size: 1.8rem;
}

.ab-badge {
  background: var(--gfire);
  color: #fff;
  border-radius: var(--rad);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
  height: 160px;
  justify-content: center;
}

.ab-badge i {
  font-size: 2rem;
}

.ab-badge strong {
  font-size: .95rem;
}

.ab-badge small {
  font-size: .72rem;
  opacity: .85;
}

.ab-txt h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin: .5rem 0 1.2rem;
}

.ab-txt p {
  color: var(--textl);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: .93rem;
}

.hilist {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

.hi {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1rem;
  border-radius: var(--radsm);
  background: linear-gradient(135deg, rgba(217, 4, 41, .04), rgba(247, 127, 0, .04));
  border-left: 3px solid var(--red);
  transition: var(--tr);
}

.hi:hover {
  transform: translateX(6px);
  background: linear-gradient(135deg, rgba(217, 4, 41, .09), rgba(247, 127, 0, .09));
}

.hi i {
  font-size: 1.3rem;
  color: var(--red);
  margin-top: .1rem;
  flex-shrink: 0;
}

.hi strong {
  display: block;
  font-size: .88rem;
  color: var(--dark);
}

.hi small {
  font-size: .75rem;
  color: var(--textl);
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: var(--offwhite);
}

.sv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sv-card {
  background: #fff;
  border-radius: var(--rad);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(217, 4, 41, .06);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.sv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gfire);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--tr);
}

.sv-card:hover::before {
  transform: scaleX(1);
}

.sv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(217, 4, 41, .15);
}

.sv-ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 4, 41, .1), rgba(247, 127, 0, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 1.1rem;
  transition: var(--tr);
}

.sv-card:hover .sv-ic {
  background: var(--gfire);
  color: #fff;
  transform: rotate(-5deg) scale(1.08);
}

.sv-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

.sv-card p {
  font-size: .81rem;
  color: var(--textl);
  line-height: 1.65;
}

/* ===== ROOMS ===== */
.rooms {
  padding: 6rem 0;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.rooms::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(217, 4, 41, .15) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(247, 127, 0, .1) 0%, transparent 60%);
}

.rm-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.rm-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.rm-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  /* allow flex-basis to control width */
  border-radius: var(--rad);
  overflow: hidden;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
  transition: var(--tr);
}

.rm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 4, 41, .4);
  box-shadow: 0 14px 44px rgba(217, 4, 41, .22);
}

.rm-img {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(217, 4, 41, .18), rgba(247, 127, 0, .1));
  font-size: 3.5rem;
  color: rgba(255, 255, 255, .28);
  gap: .5rem;
  position: relative;
  overflow: hidden;
}

/* When a photo is added: fills the card image area */
.rm-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Hide the fallback icon when image loads successfully */
.rm-slide-img + i {
  position: relative;
  z-index: 0;
}

.rm-info {
  padding: 1.5rem;
}

.rm-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gfire);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: .8rem;
}

.rm-info h3 {
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .45rem;
}

.rm-info p {
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
  line-height: 1.6;
}

/* ===== SLIDER CONTROLS ===== */
.sl-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gfire);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh);
  transition: var(--tr);
  z-index: 10;
  /* ensure tappable on touch screens */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.sl-btn:hover {
  transform: translateY(-50%) scale(1.12);
}

.sl-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.sl-btn.prv {
  left: 0.5rem;
}

.sl-btn.nxt {
  right: 0.5rem;
}

.sl-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}

.sl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: var(--tr);
  border: none;
  /* make dots easily tappable */
  padding: 0;
  min-width: 8px;
}

.sl-dot.on {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 6rem 0;
  background: #fff;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gi {
  position: relative;
  overflow: hidden;
  border-radius: var(--radsm);
  cursor: pointer;
}

.gi.tall {
  grid-row: span 2;
}

.gi.wide {
  grid-column: span 2;
}

.gi-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(217, 4, 41, .07), rgba(247, 127, 0, .07));
  border: 2px dashed rgba(217, 4, 41, .2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(217, 4, 41, .38);
  font-size: 2rem;
}

.gi-ph span {
  font-size: .72rem;
  color: var(--textl);
}

.gi-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 4, 41, .75), rgba(247, 127, 0, .75));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  opacity: 0;
  transition: var(--tr);
  border-radius: var(--radsm);
}

.gi:hover .gi-ov {
  opacity: 1;
}

.gi:hover {
  transform: scale(1.02);
}

/* Video row */
.vid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.vid-ph {
  border-radius: var(--rad);
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  height: 280px;
  cursor: pointer;
  transition: var(--tr);
  border: 2px dashed rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(255, 255, 255, .35);
  font-size: 2.5rem;
}

.vid-ph:hover {
  transform: scale(1.02);
  box-shadow: var(--shlg);
}

.vid-ph p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
}

.vid-ph small {
  font-size: .74rem;
  text-align: center;
  max-width: 280px;
  line-height: 1.5;
}

.play-fake {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gfire);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-top: .5rem;
  animation: epulse 2.5s ease-in-out infinite;
}

/* ===== FREE CAMP ===== */
.camp {
  padding: 6rem 0;
  background: var(--gdeep);
  position: relative;
  overflow: hidden;
}

.camp-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: .2;
}

.cs1 {
  width: 420px;
  height: 420px;
  background: var(--pink);
  top: -20%;
  right: 0;
  animation: fsh 9s ease-in-out infinite;
}

.cs2 {
  width: 320px;
  height: 320px;
  background: var(--yellow);
  bottom: -15%;
  left: 10%;
  animation: fsh 11s ease-in-out infinite reverse;
}

.camp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.camp-c h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
  margin: .5rem 0 1.2rem;
}

.camp-c p {
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: .93rem;
}

.cfeat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2rem;
}

.cf {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255, 255, 255, .83);
  font-size: .86rem;
  font-weight: 500;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  padding: .65rem .9rem;
  border-radius: var(--radsm);
  transition: var(--tr);
}

.cf:hover {
  background: rgba(255, 255, 255, .13);
  transform: translateX(4px);
}

.cf i {
  color: var(--yellow);
  font-size: 1.1rem;
}

.camp-med {
  position: relative;
}

.cmed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.ciph {
  height: 150px;
  border-radius: var(--radsm);
  background: rgba(255, 255, 255, .07);
  border: 2px dashed rgba(255, 255, 255, .14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .28);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--tr);
}

.ciph span {
  font-size: .7rem;
  color: rgba(255, 255, 255, .3);
}

.ciph.wd {
  grid-column: span 2;
  height: 180px;
}

.ciph:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(217, 4, 41, .5);
}

.camp-bfloat {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gwarm);
  color: var(--dark);
  padding: 1.2rem;
  border-radius: var(--rad);
  text-align: center;
  box-shadow: var(--shlg);
  animation: fcard 4s ease-in-out infinite;
}

.camp-bfloat i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: .3rem;
}

.camp-bfloat span {
  font-size: 1.1rem;
  font-weight: 800;
  display: block;
}

.camp-bfloat small {
  font-size: .68rem;
  opacity: .75;
}

/* ===== TESTIMONIALS ===== */
.testi {
  padding: 6rem 0;
  background: var(--offwhite);
}

.te-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.te-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.te-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  /* allow flex-basis to control width */
  background: #fff;
  border-radius: var(--rad);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(217, 4, 41, .07);
  border: 1px solid rgba(217, 4, 41, .07);
  flex-shrink: 0;
  transition: var(--tr);
}

.te-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(217, 4, 41, .13);
}

.stars {
  display: flex;
  gap: .2rem;
  color: var(--yellow2);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.te-card>p {
  color: var(--textl);
  font-size: .88rem;
  line-height: 1.78;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.te-card>p::before {
  content: '"';
  font-size: 1.6rem;
  color: var(--red);
  line-height: 0;
  vertical-align: -.25em;
  margin-right: .2rem;
}

.t-auth {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.t-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gfire);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.t-auth strong {
  display: block;
  font-size: .88rem;
  color: var(--dark);
}

.t-auth small {
  font-size: .73rem;
  color: var(--textl);
}

.rat-sum {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  background: #fff;
  border-radius: var(--rad);
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(217, 4, 41, .07);
  width: fit-content;
  margin: 0 auto;
}

.big-r {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.big-r i {
  color: var(--yellow2);
  font-size: 2.2rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: #fff;
}

.co-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.co-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.co-card {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.1rem;
  border-radius: var(--radsm);
  background: var(--offwhite);
  border: 1px solid rgba(217, 4, 41, .08);
  transition: var(--tr);
}

.co-card:hover {
  border-color: rgba(217, 4, 41, .28);
  transform: translateX(5px);
}

.co-card i {
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: .1rem;
}

.co-card strong {
  display: block;
  font-size: .83rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .2rem;
}

.co-card p,
.co-card small {
  font-size: .8rem;
  color: var(--textl);
  line-height: 1.5;
}

.co-card a {
  color: var(--red);
  font-weight: 600;
}

.socl {
  display: flex;
  gap: .6rem;
  margin-top: .5rem;
}

.socl a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--offwhite);
  border: 1px solid rgba(217, 4, 41, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  transition: var(--tr);
}

.socl a:hover {
  background: var(--gfire);
  color: #fff;
  border-color: transparent;
  transform: scale(1.12) rotate(-5deg);
}

.appt-form {
  background: var(--offwhite);
  border-radius: var(--rad);
  padding: 2rem;
  border: 1px solid rgba(217, 4, 41, .1);
}

.appt-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.appt-form h3 i {
  color: var(--red);
}

.fg {
  margin-bottom: 1rem;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid rgba(217, 4, 41, .15);
  border-radius: var(--radsm);
  background: #fff;
  color: var(--textc);
  font-family: inherit;
  font-size: .86rem;
  transition: var(--tr);
  outline: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 4, 41, .1);
}

.fg textarea {
  height: 88px;
  resize: none;
}

.map-ph {
  border-radius: var(--rad);
  background: linear-gradient(135deg, var(--offwhite), rgba(217, 4, 41, .04));
  border: 2px dashed rgba(217, 4, 41, .2);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(217, 4, 41, .38);
  font-size: 2.5rem;
  padding: 2rem;
  text-align: center;
}

.map-ph p {
  font-size: 1rem;
  color: var(--textl);
  font-weight: 600;
}

.map-ph small {
  font-size: .78rem;
  color: var(--textl);
  line-height: 1.5;
  max-width: 260px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
}

.ft-top {
  padding: 4rem 0 2.5rem;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.ft-logo strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.ft-logo small {
  color: rgba(255, 255, 255, .45);
  font-size: .68rem;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.ft-brand p {
  color: rgba(255, 255, 255, .45);
  font-size: .83rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ft-col h4 {
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: .6rem;
}

.ft-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gfire);
  border-radius: 2px;
}

.ft-col ul li {
  margin-bottom: .45rem;
}

.ft-col a {
  color: rgba(255, 255, 255, .45);
  font-size: .82rem;
  transition: var(--tr);
}

.ft-col a:hover {
  color: var(--red);
  padding-left: 4px;
}

.ft-ct p {
  color: rgba(255, 255, 255, .45);
  font-size: .8rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .55rem;
  line-height: 1.5;
}

.ft-ct i {
  color: var(--red);
  flex-shrink: 0;
  margin-top: .1rem;
}

.ft-ct a {
  color: rgba(255, 255, 255, .45);
}

.ft-ct a:hover {
  color: var(--red);
}

.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 1.2rem 0;
  text-align: center;
}

.ft-bot p {
  color: rgba(255, 255, 255, .28);
  font-size: .78rem;
}

.ft-bot i {
  color: var(--red);
}

/* FLOATING */
.fab-c,
.fab-w,
.fab-t {
  position: fixed;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  z-index: 150;
  box-shadow: var(--sh);
}

.fab-c {
  bottom: 9rem;
  background: var(--red);
  color: #fff;
  animation: epulse 3s ease-in-out infinite;
}

.fab-w {
  bottom: 4.5rem;
  background: #25D366;
  color: #fff;
}

.fab-t {
  bottom: 0;
  right: 1.5rem;
  background: var(--gfire);
  color: #fff;
  opacity: 0;
  pointer-events: none;
}

.fab-t.show {
  opacity: 1;
  pointer-events: auto;
  bottom: .8rem;
}

.fab-c:hover,
.fab-w:hover,
.fab-t:hover {
  transform: scale(1.13) translateY(-2px);
}

/* REVEAL ANIMATION */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.rev.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px) {
  .sv-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* 2 cards per page on tablet */
  .rm-card {
    flex: 0 0 calc(50% - .75rem);
  }

  .te-card {
    flex: 0 0 calc(50% - .75rem);
  }

  .co-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-ph {
    grid-column: span 2;
    min-height: 240px;
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media(max-width:900px) {
  .hero-in {
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero-v {
    justify-content: center;
    width: 100%;
  }

  .hv-wrap {
    max-width: 100%;
  }

  .ab-grid {
    grid-template-columns: 1fr;
  }

  .camp-grid {
    grid-template-columns: 1fr;
  }

  .camp-bfloat {
    right: 0;
  }

  .sv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vid-row {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .navl {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 2, 10, .97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 199;
  }

  .navl.op {
    display: flex;
  }

  .navl a {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .9) !important;
  }

  .ham {
    display: flex;
  }

  /* ---- SLIDER: exactly 1 card per page on mobile ---- */
  /* gap: 0 means cards are flush; flex: 0 0 100% = exactly the wrapper width */
  .rm-track {
    gap: 0;
  }

  .te-track {
    gap: 0;
  }

  .rm-card {
    flex: 0 0 100%;
    width: 100%;
  }

  .te-card {
    flex: 0 0 100%;
    width: 100%;
  }

  /* Shrink arrows on mobile but keep them visible, overlaid on card */
  .sl-btn {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .sl-btn.prv {
    left: 0.5rem;
  }

  .sl-btn.nxt {
    right: 0.5rem;
  }

  /* ---- Dots: bigger tap area on mobile ---- */
  .sl-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
  }

  .sl-dot.on {
    width: 28px;
  }

  .co-grid {
    grid-template-columns: 1fr;
  }

  .map-ph {
    grid-column: auto;
  }

  .ft-grid {
    grid-template-columns: 1fr;
  }

  .fc1,
  .fc2 {
    display: none;
  }

  .hero-stats {
    gap: 1rem;
  }

  .cfeat {
    grid-template-columns: 1fr;
  }

  .ab-vis {
    grid-template-columns: 1fr;
  }

  .ab-badge {
    display: none;
  }

  .gal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gi.tall,
  .gi.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media(max-width:480px) {
  .wrap {
    padding: 0 1rem;
  }

  .nav-in {
    padding: 0 1rem;
    gap: .5rem;
  }

  .emg {
    padding: .5rem .8rem;
  }

  .emg .emg-txt {
    display: none;
  }

  .sv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sdiv {
    display: none;
  }

  /* Extra-small screens: even smaller arrows */
  .sl-btn {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  .sl-btn.prv {
    left: 0.25rem;
  }

  .sl-btn.nxt {
    right: 0.25rem;
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }
}

@media(max-width:400px) {
  .sv-grid {
    grid-template-columns: 1fr;
  }
}

@media(hover:none) {
  .sv-card:active {
    transform: translateY(-4px);
  }

  .rm-card:active {
    border-color: rgba(217, 4, 41, .4);
  }

  .gi:active .gi-ov {
    opacity: 1;
  }

  .btn:active {
    transform: scale(.97);
  }
}

/* ===== FLOATING BUTTONS: mobile sizing ===== */
@media(max-width:768px) {

  .fab-c,
  .fab-w,
  .fab-t {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    right: 0.6rem;
  }

  .fab-c {
    bottom: 8rem;
  }

  .fab-w {
    bottom: 4.5rem;
  }

  .fab-t.show {
    bottom: 0.8rem;
  }
}

/* ===== TESTIMONIAL SLIDER ===== */
/* te-wrap: no padding — arrows overlay on top of the card */
.te-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* ===== DEV CREDIT ===== */
#dev1-Credit {
  color: rgba(217, 4, 41, .75);
  font-size: 24px;
  text-align: center;
}