/* ==========================================================================
   RnJ Ladies Salon — styles.css
   Brand pink: #E50695 (logo se liya gaya)
   ========================================================================== */

/* ---------- Local fonts ---------- */
@font-face {
  font-family: 'Belinda';
  src: url('fonts/belinda-regular.woff2') format('woff2'),
       url('fonts/belinda-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #E50695;
  --pink-soft: #FF4DB8;
  --pink-deep: #A8046E;
  --ink: #241019;
  --plum-deep: #1C0613;
  --white: #FFFFFF;

  --header-h: 88px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-pink: 0 14px 40px rgba(229, 6, 149, 0.28);
  --shadow-deep: 0 24px 70px rgba(28, 6, 19, 0.45);
}

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

html { overflow-x: hidden; }

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ==========================================================================
   Header (header.html — JS se embed hota hai)
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(43, 10, 31, 0.08);
  isolation: isolate;
}

.site-header .container {
  width: 100%;
  max-width: 100%;
  padding: 0 5%;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s var(--ease-out);
}
.brand:hover { transform: translateY(-2px); }

.brand-logo { height: 54px; width: auto; }

.nav-list { display: flex; align-items: center; gap: 6px; }

.nav-link {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s, background 0.3s;
}
.nav-link:hover { background: rgba(229, 6, 149, 0.25); color: var(--white); }
.nav-link.active { color: var(--pink-soft); }

.nav-cta {
  display: inline-block;
  margin-left: 12px;
  padding: 12px 28px;
  border-radius: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink) 55%, var(--pink-deep));
  transition: transform 0.3s var(--ease-out);
}
.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
}

/* More dropdown */
.has-dropdown { position: relative; }

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 0;
}

.nav-caret { transition: transform 0.3s; }

.has-dropdown:hover .nav-caret,
.has-dropdown.open .nav-caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 200px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 14px;
  box-shadow: var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(14px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown .nav-link {
  display: block;
  width: 100%;
  color: var(--ink);
  border-radius: 10px;
  padding: 11px 16px;
}
.dropdown .nav-link:hover { background: rgba(229, 6, 149, 0.10); color: var(--pink); }

/* Scroll ke baad header smoothly white ho jata hai, menu black */
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(43, 10, 31, 0.12);
}

/* Header CTA actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s;
}
.header-phone:hover { color: var(--pink); }
.header-phone svg { stroke: currentColor; flex-shrink: 0; }

.header-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 50%, var(--pink-soft) 100%);
  background-size: 200% auto;
  padding: 9px 18px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-position 0.4s ease, transform 0.25s ease;
}
.header-book-btn:hover {
  background-position: right center;
  transform: translateY(-1px);
}

/* Book btn inside mobile drawer — hidden on desktop */
.nav-book-btn {
  display: none;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 52px;
  height: 48px;
  padding: 10px;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 14px;
}

.nav-toggle-bar {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--pink);
  border-radius: 3px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ==========================================================================
   Hero — full screen header video
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--plum-deep);
  margin-top: var(--header-h);
}

/* Hero — single image with bottom text */
.hero--slider { position: relative; }

.hero-bg-img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-bottom-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 20px 36px;
  text-align: center;
}
.hero-title {
  animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-sub {
  animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero-title {
  font-size: clamp(2.7rem, 6.75vw, 5.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero-title em { color: var(--pink-soft); font-style: normal; }

.hero-sub {
  font-size: clamp(1.35rem, 2.7vw, 1.65rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 50%, var(--pink-soft) 100%);
  background-size: 200% auto;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 10px;
  transition: background-position 0.4s ease, transform 0.25s ease;
}
.hero-cta:hover { background-position: right center; transform: translateY(-2px); }

/* Hero text — tablet */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(1.6rem, 4vw, 2.4rem); }
  .hero-sub { font-size: clamp(0.85rem, 2vw, 1.1rem); }
  .hero-bottom-text { padding: 24px 16px 28px; }
}
/* Hero text — mobile */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .hero-sub { font-size: clamp(0.75rem, 3.5vw, 0.95rem); }
  .hero-bottom-text { padding: 16px 12px 8px; margin-bottom: -14px; }
  .hero-bg-img { height: 74vw; object-fit: cover; }
}

/* Old video styles (kept, video commented out) */
.hero-video { display: none; }
.hero-overlay { position: absolute; inset: 0; }
.hero-slide { display: none; }
.hero-dots { display: none; }

/* ==========================================================================
   Sections — shared helpers
   ========================================================================== */
.section { padding: 90px 0; position: relative; }

.section-head { max-width: 620px; margin: 0 auto 52px; text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.kicker::before, .kicker::after {
  content: '';
  width: 26px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--pink));
}
.kicker::after { background: linear-gradient(90deg, var(--pink), transparent); }

.section-title {
  font-size: clamp(2.16rem, 4.08vw, 3.12rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title em {
  font-family: 'Belinda', cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.18em;
  line-height: 1;
  color: var(--pink);
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  top: 0.12em;
}

.section-sub { color: #7A5C6D; font-size: 1.26rem; }

/* Scroll-triggered reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ==========================================================================
   Services Detail Cards section
   ========================================================================== */
.svc-section {
  padding: 100px 0 15px;
  background: #fcfcfc;
  position: relative;
}

.svc-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.svc-divider svg { width: 100%; height: 110px; display: block; }
.svc-divider svg path { fill: var(--white); }
.svc-divider-top { top: -1px; }
.svc-divider-bottom { bottom: -1px; }
.svc-divider-bottom svg path { fill: #FDF9F7; }

/* Subtle decorative blobs in background */
.svc-section::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.07;
  background: var(--pink);
  width: 500px; height: 500px; top: 20px; left: -160px;
}
@media (max-width: 1024px) {
  .svc-section::before { width: 300px; height: 300px; left: -120px; }
}

/* 2-col header */
.svc-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 0 60px;
  margin-bottom: 64px;
}
.svc-section__heading .kicker-left { margin-bottom: 10px; }
.svc-section__heading .section-title { margin: 0; text-align: left; }
.svc-section__sub {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #7A6E77;
  align-self: end;
  padding-bottom: 6px;
}

/* Infinite marquee */
.svc-marquee {
  overflow: hidden;
  padding: 16px 0 48px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.svc-marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  /* JS RAF handles scroll on all screen sizes — no CSS animation */
}
.svc-marquee { cursor: grab; }
.svc-marquee.is-dragging { cursor: grabbing; }
@media (max-width: 768px) {
  .svc-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    padding-left: 20px;
    cursor: default;
  }
}

@keyframes svc-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card */
.svc-card {
  width: 390px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: scale(1.03);
  box-shadow: none;
}

/* Image area */
.svc-card__media {
  position: relative;
  height: 364px;
}
.svc-card__media img,
.svc-card__media .svc-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
  transition: transform 0.55s var(--ease-out);
}

/* Decorative circle badge — overlaps bottom-right of image */
.svc-card__badge {
  position: absolute;
  bottom: -29px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #fff;
  border-radius: 50%;
  border: 1.5px solid rgba(229,6,149,0.25);
  display: grid;
  place-items: center;
  color: var(--pink);
  z-index: 2;
}
.svc-card__badge svg { width: 34px; height: 34px; }

/* Card body */
.svc-card__body {
  padding: 44px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 0 0 16px 16px;
}
.svc-card__title {
  margin: 0 0 10px;
  font-size: 1.74rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.svc-card__desc {
  margin: 0 0 18px;
  font-size: 1.12rem;
  line-height: 1.65;
  color: #7A6E77;
}

/* Featured list */
.svc-card__features { margin-bottom: 22px; }
.svc-card__features strong {
  display: block;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.svc-card__features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  color: #5E5464;
}
.svc-card__features li::before {
  content: '✦';
  font-size: 0.78rem;
  color: var(--pink);
  flex-shrink: 0;
}

/* Book Appointment button */
.svc-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
  align-self: stretch;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 50%, var(--pink-soft) 100%);
  background-size: 200% auto;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-position 0.4s ease, transform 0.25s ease;
}
.svc-card__link:hover {
  background-position: right center;
  transform: translateY(-2px);
}
.svc-wa-icon { flex-shrink: 0; }

/* ==========================================================================
   Our Services — Bento grid (old site exact replica)
   Layout:
     [HAIR      ][NAILS & FEET][FACE      ][BODY      ]
     [HAIR      ][EYE LASH & BROW (wide)  ][BODY      ]
   ========================================================================== */
.our-services { padding: 90px 0 100px; background: var(--white); }

/* Desktop block: visible on desktop, hidden on tablet/mobile */
.svc-tiles--desktop { display: grid; }
@media (max-width: 900px) { .svc-tiles--desktop { display: none !important; } }

/* Mobile/Tablet block: hidden on desktop */
.svc-tiles-mobile { display: none; }

@media (max-width: 900px) {
  .svc-tiles-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
    padding: 0 20px;
  }
  .svc-tile-mob {
    display: block;
    border-radius: 16px;
    overflow: visible;
    text-decoration: none;
    box-shadow: none;
    position: relative;
    transition: transform 0.3s ease;
  }
  .svc-tile-mob img {
    border-radius: 16px;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
  }
  /* Shadow below card */
  .svc-tile-mob::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 36px;
    background: url('../images/Card Shadow.png') center top / 100% 100% no-repeat;
    pointer-events: none;
  }
  .svc-tile-mob:hover { transform: translateY(-4px); }
  /* Center last card if odd total */
  .svc-tile-mob:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    margin: 0 auto;
  }
}

@media (max-width: 540px) {
  .svc-tiles-mobile {
    grid-template-columns: 1fr;
    padding: 0 45px;
    gap: 40px;
  }
  .svc-tile-mob:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
}

.svc-tiles {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 56px;
  padding: 0 16px;
  width: 100%;
}

/* Grid placement */
.svc-tile--hair   { grid-column: 1;          grid-row: 1 / span 2; }
.svc-tile--nails  { grid-column: 2;          grid-row: 1; }
.svc-tile--face   { grid-column: 3;          grid-row: 1; }
.svc-tile--eyelash{ grid-column: 2 / span 2; grid-row: 2; }
.svc-tile--body   { grid-column: 4;          grid-row: 1 / span 2; }

/* Base tile */
.svc-tile {
  position: relative;
  display: block;
  overflow: visible;
  border-radius: 20px;
  text-decoration: none;
  background: var(--plum-deep);
  transition: transform 0.38s var(--ease-out), box-shadow 0.38s var(--ease-out);
  box-shadow: 0 6px 24px rgba(28,6,19,0.18);
}
.svc-tile::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 36px;
  background: url('../images/Card Shadow.png') center top / 100% 100% no-repeat;
  pointer-events: none;
  border-radius: 0;
}

.svc-tile:hover {
  transform: translateY(-6px);
  box-shadow: none;
}
/* 3D tilt — JS sets this via style attribute */
.svc-tile { will-change: transform; }

.svc-tile--nails,
.svc-tile--face { aspect-ratio: 1 / 1; }

.svc-tile--eyelash { aspect-ratio: 46 / 21; }

/* Portrait tiles fill both grid rows automatically (no aspect-ratio needed) */

.svc-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: fill;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

/* Each image has text baked-in at top-left — anchor from top-left so text + subject are both visible */
.svc-tile--hair { background: linear-gradient(175deg, #c0006a 0%, #e8108a 40%, #f5b0d8 100%); }
.svc-tile--hair img    { object-position: center top; }
.svc-tile--nails img   { object-position: 60% center; }
.svc-tile--face img    { object-position: center center; }
.svc-tile--eyelash img { object-fit: fill; object-position: center center; }
.svc-tile--body { background: linear-gradient(175deg, #a8005a 0%, #c82070 30%, #e07050 70%, #b04828 100%); }
.svc-tile--body img    { object-position: center top; }

.svc-tile:hover img { transform: none; }



/* ---- Responsive ---- */

/* Tablet (≤900px): stack into 2+2+1 */
@media (max-width: 900px) {
  .svc-tiles {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: unset;
    gap: 12px;
  }
  .svc-tile--hair   { grid-column: 1 / span 2; grid-row: auto; aspect-ratio: 16/9; }
  .svc-tile--nails  { grid-column: 3;           grid-row: auto; aspect-ratio: 1/1; }
  .svc-tile--face   { grid-column: 4;           grid-row: auto; aspect-ratio: 1/1; }
  .svc-tile--eyelash{ grid-column: 1 / span 2;  grid-row: auto; aspect-ratio: 16/9; }
  .svc-tile--body   { grid-column: 3 / span 2;  grid-row: auto; aspect-ratio: 16/9; }

  .svc-tile--hair   .svc-tile__text,
  .svc-tile--body   .svc-tile__text { font-size: clamp(1.4rem, 3.5vw, 2rem); }
  .svc-tile--body   .svc-tile__text { right: 5%; top: 8%; }
}

/* Mobile (≤640px): 1-col full-width */
@media (max-width: 640px) {
  .svc-tiles {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    gap: 12px;
  }
  .svc-tile--hair,
  .svc-tile--nails,
  .svc-tile--face,
  .svc-tile--eyelash,
  .svc-tile--body {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: unset;
    height: 0;
    padding-bottom: 56.25%; /* 9/16 — reliable 16:9 regardless of grid stretch */
  }
  .svc-tile img { object-fit: cover; object-position: center center; }
  .svc-tile--hair img    { object-position: center top; }
  .svc-tile--eyelash img { object-position: center center; }

  .svc-tile__text { font-size: clamp(1rem, 4.5vw, 1.3rem) !important; }
  .svc-tile--body .svc-tile__text { right: auto; left: 8%; text-align: left; }
  .svc-tile--eyelash .svc-tile__text { bottom: auto; top: 8%; }
  .svc-tile { border-radius: 14px; }
}

/* ==========================================================================
   Categories section
   ========================================================================== */
/* Flex layout — orphan cards center hote hain, har breakpoint par clean */
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 24px;
  row-gap: 150px;
  margin-top: 150px;
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc((100% - 4 * 24px) / 5);   /* 5 per row */
  padding: 0 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(43, 10, 31, 0.07);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(229, 6, 149, 0.16);
}

/* Morphing blob photo — card ke upar overlap, shape animate hoti rehti hai */
.cat-photo {
  display: block;
  width: clamp(165px, 14vw, 215px);
  aspect-ratio: 1 / 1;
  margin-top: calc(clamp(165px, 14vw, 215px) / -2);
  position: relative;
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(43, 10, 31, 0.18);
  transition: box-shadow 0.4s var(--ease-out);
  animation:
    border-transform 6s ease-in-out infinite alternate,
    blob-float 5s ease-in-out infinite alternate;
}


/* Har card ki blob alag point se start ho — sab different nazar aayein */
.cat-card:nth-child(2) .cat-photo { animation-delay: -2s; }
.cat-card:nth-child(3) .cat-photo { animation-delay: -4s; }
.cat-card:nth-child(4) .cat-photo { animation-delay: -6s; }
.cat-card:nth-child(5) .cat-photo { animation-delay: -8s; }
.cat-card:hover .cat-photo {
  box-shadow: 0 16px 40px rgba(229, 6, 149, 0.30), 0 0 0 3px rgba(229, 6, 149, 0.35);
}

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.cat-card:hover .cat-img { transform: scale(1.12); }

/* Blob shape morph animation — gehri shape changes */
@keyframes border-transform {
  0%, 100% { border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%; }
  20% { border-radius: 33% 67% 48% 52% / 62% 30% 70% 38%; }
  40% { border-radius: 55% 45% 28% 72% / 38% 68% 32% 62%; }
  60% { border-radius: 68% 32% 62% 38% / 72% 42% 58% 28%; }
  80% { border-radius: 38% 62% 42% 58% / 32% 62% 38% 68%; }
}

/* Halki floating movement — blob zinda lage */
@keyframes blob-float {
  from { transform: translateY(0) rotate(-1.5deg); }
  to { transform: translateY(-10px) rotate(1.5deg); }
}

.cat-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2B2349;
  margin: 24px 0 12px;
}

.cat-desc {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #6F6C7E;
  margin: 0 2px 26px;
}

/* Book Now — pink → purple gradient pill (reference style) */
.cat-btn {
  display: block;
  width: min(205px, 88%);
  padding: 14px 10px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 100%);
  box-shadow: 0 8px 22px rgba(179, 107, 240, 0.25);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), filter 0.3s;
  margin-bottom: -24px;
}
.cat-card:hover .cat-btn {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(229, 6, 149, 0.38);
  filter: brightness(1.06);
}

/* ==========================================================================
   The RnJ Experience — video carousel
   ========================================================================== */
.experience {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF0F8 0%, #FCE3F1 50%, #FFF0F8 100%);
}

/* Cloudy wavy dividers */
.exp-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.exp-divider svg { width: 100%; height: 110px; display: block; }
.exp-divider svg path { fill: var(--white); }
.exp-divider-top { top: -1px; }
.exp-divider-bottom { bottom: -1px; }

/* Floating salon decorations */
.exp-deco {
  position: absolute;
  color: var(--pink-soft);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.exp-deco-1 { width: 70px; top: 16%; left: 5%; animation: exp-float 7s ease-in-out infinite; }
.exp-deco-2 { width: 52px; bottom: 18%; right: 6%; color: var(--pink); opacity: 0.4; animation: exp-float 9s ease-in-out infinite reverse; }
.exp-deco-3 { width: 30px; top: 26%; right: 12%; color: var(--gold, #E8B84B); opacity: 0.7; animation: exp-twinkle 4s ease-in-out infinite; }
.exp-deco-4 { width: 22px; bottom: 26%; left: 12%; color: var(--pink-soft); opacity: 0.6; animation: exp-twinkle 5s ease-in-out infinite 1s; }

@keyframes exp-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(18deg); }
}
@keyframes exp-twinkle {
  0%, 100% { transform: scale(0.7) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.15) rotate(40deg); opacity: 0.85; }
}

/* Container content hearts ke upar */
.experience .container { position: relative; z-index: 3; }

/* Floating hearts layer */
.exp-hearts {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.heart {
  position: absolute;
  bottom: 60px;
  width: var(--size, 26px);
  height: var(--size, 26px);
  color: var(--c, #FF4DB8);
  opacity: 0;
  animation: heart-rise var(--dur, 5s) ease-in forwards;
  will-change: transform, opacity;
}
.heart svg { width: 100%; height: 100%; display: block; }

@keyframes heart-rise {
  0%   { transform: translate(0, 0) scale(0.4) rotate(0deg); opacity: 0; }
  10%  { opacity: var(--o, 0.9); transform: translate(0, calc(var(--rise, -600px) * 0.06)) scale(1) rotate(-8deg); }
  35%  { transform: translate(var(--x1, 20px), calc(var(--rise, -600px) * 0.34)) scale(1.05) rotate(8deg); }
  65%  { transform: translate(var(--x2, -20px), calc(var(--rise, -600px) * 0.64)) scale(1) rotate(-6deg); }
  90%  { opacity: calc(var(--o, 0.9) * 0.6); }
  100% { transform: translate(var(--x3, 15px), var(--rise, -600px)) scale(0.85) rotate(6deg); opacity: 0; }
}

/* Like / heart button */
.exp-like {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 44px auto 0;
  padding: 13px 26px 13px 20px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 100%);
  box-shadow: 0 10px 28px rgba(179, 107, 240, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.25s var(--ease-out), box-shadow 0.3s;
  animation: like-attract 2.4s var(--ease-out) infinite;
}
.exp-like:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 38px rgba(229, 6, 149, 0.45); animation-play-state: paused; }
.exp-like:active { transform: scale(0.95); }

.exp-like-text {
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Heart icon dhadakta rahe (heartbeat) */
.exp-like svg { position: relative; z-index: 1; animation: heartbeat 1.4s ease-in-out infinite; transform-origin: center; }
.exp-like.pop svg { animation: like-pop 0.4s var(--ease-out); }

/* Pulsing ring — attention khinche */
.exp-like-ring {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  animation: like-ring 2.4s var(--ease-out) infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.22); }
  30% { transform: scale(1); }
  45% { transform: scale(1.14); }
  60% { transform: scale(1); }
}
@keyframes like-attract {
  0%, 100% { box-shadow: 0 10px 28px rgba(229, 6, 149, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
  50% { box-shadow: 0 14px 38px rgba(229, 6, 149, 0.5), 0 0 0 6px rgba(229, 6, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
}
@keyframes like-ring {
  0% { transform: scale(0.7); opacity: 0.6; }
  70% { transform: scale(2.4); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes like-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.45); }
  100% { transform: scale(1); }
}

/* Carousel */
.exp-carousel { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); }

.exp-stage {
  position: relative;
  height: 680px;
  perspective: 1800px;
}

.exp-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 380px;
  max-width: 62vw;
  height: 100%;
  margin-left: -190px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--plum-deep);
  box-shadow: var(--shadow-deep);
  transition: transform 0.7s var(--ease-out), opacity 0.7s var(--ease-out), filter 0.7s var(--ease-out);
  will-change: transform, opacity;
}
@media (max-width: 460px) {
  .exp-slide { margin-left: -31vw; }
}

.exp-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide positions — portrait coverflow (no overlap, full width use) */
.exp-slide[data-pos="0"]  { transform: translateX(0) scale(1) translateZ(0); opacity: 1; z-index: 5; }
.exp-slide[data-pos="1"]  { transform: translateX(96%) scale(0.8) rotateY(-9deg); opacity: 0.7; z-index: 4; filter: brightness(0.72); }
.exp-slide[data-pos="-1"] { transform: translateX(-96%) scale(0.8) rotateY(9deg); opacity: 0.7; z-index: 4; filter: brightness(0.72); }
.exp-slide[data-pos="2"]  { transform: translateX(170%) scale(0.6) rotateY(-13deg); opacity: 0.34; z-index: 3; filter: brightness(0.55); }
.exp-slide[data-pos="-2"] { transform: translateX(-170%) scale(0.6) rotateY(13deg); opacity: 0.34; z-index: 3; filter: brightness(0.55); }
.exp-slide[data-pos="hidden"] { transform: translateX(0) scale(0.4); opacity: 0; z-index: 1; pointer-events: none; }

.exp-slide[data-pos="1"], .exp-slide[data-pos="-1"],
.exp-slide[data-pos="2"], .exp-slide[data-pos="-2"] { cursor: pointer; }

/* Sound toggle — center video par */
.exp-sound {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(120px);
  z-index: 8;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(28, 6, 19, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.exp-sound:hover { background: var(--pink); }
.exp-sound .ico-sound { display: none; }
.exp-sound.is-on .ico-sound { display: block; }
.exp-sound.is-on .ico-muted { display: none; }

/* ---- Play button overlay (center slide only) ---- */
.exp-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  width: 62px; height: 62px;
  border-radius: 50%;
  border: none;
  background: rgba(229, 6, 149, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out), background 0.2s;
  z-index: 8;
  box-shadow: 0 6px 28px rgba(229, 6, 149, 0.55);
}
.exp-play-btn svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.exp-slide[data-pos="0"] .exp-play-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.exp-play-btn:hover {
  background: var(--pink);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 36px rgba(229, 6, 149, 0.7);
}
.exp-play-btn:active { transform: translate(-50%, -50%) scale(0.95); }

/* ---- Video Modal / Lightbox ---- */
.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.vid-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.vid-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 2, 8, 0.9);
  cursor: pointer;
}
.vid-modal__box {
  position: relative;
  z-index: 1;
  width: min(92vw, 880px);
  max-height: 90vh;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(229, 6, 149, 0.18);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.32s var(--ease-out), opacity 0.28s ease;
  opacity: 0;
}
.vid-modal.is-open .vid-modal__box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.vid-modal__video {
  width: 100%;
  max-height: 86vh;
  display: block;
  background: #000;
  outline: none;
}
.vid-modal__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.vid-modal__close:hover { background: var(--pink); transform: scale(1.1); }

@media (max-width: 820px) {
  .exp-sound { transform: translateX(80px); }
}

/* Nav arrows */
.exp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s;
}
.exp-nav:hover { background: var(--pink); color: var(--white); transform: translateY(-50%) scale(1.1); }
.exp-prev { left: calc(50% - 200px); }
.exp-next { right: calc(50% - 200px); }

/* Dots */
.exp-dots { display: flex; justify-content: center; gap: 10px; margin-top: 38px; }
.exp-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(229, 6, 149, 0.28);
  transition: width 0.35s var(--ease-out), background 0.3s;
}
.exp-dots button.active { width: 30px; background: var(--pink); }

/* ==========================================================================
   About Us — "Why Choose RnJ" (why-choose-one adapted)
   ========================================================================== */
.about-rnj { position: relative; padding: 100px 0; background: #fff; }

.about-rnj__shape {
  position: absolute;
  left: 3%;
  bottom: 8%;
  width: 64px;
  color: var(--pink-soft);
  opacity: 0.5;
  z-index: 5;
  pointer-events: none;
  animation: exp-float 7s ease-in-out infinite;
}

.about-rnj .container { position: relative; max-width: 100%; padding: 0 8px; }

.about-rnj__inner { position: relative; }

.about-rnj__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: start;
  position: relative;
}

.about-rnj__head { margin-bottom: 6px; }

.kicker-left { justify-content: flex-start; }
.kicker-left::before { display: none; }

.about-rnj__content .section-title { text-align: left; }

.about-rnj__highlight {
  margin-top: 16px;
  color: var(--pink);
  font-size: 1.344rem;
  font-weight: 600;
  line-height: 1.6;
}

.about-rnj__text {
  margin-top: 16px;
  color: #6F6C7E;
  font-size: 1.2rem;
  line-height: 1.9;
}

.about-rnj__list { margin-top: 38px; display: grid; gap: 22px; }

.about-rnj__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0 24px;
}

.about-rnj__item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-rnj__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-deep));
  transition: transform 0.5s var(--ease-out), background 0.4s;
}
.about-rnj__item:hover .about-rnj__icon { transform: scale(1.08) rotate(-6deg); background: var(--plum-deep); }

.about-rnj__item-title {
  margin: 0;
  font-size: 1.26rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.25;
}

.about-rnj__item-text {
  margin: 0;
  padding-left: 24px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6F6C7E;
  border-left: 1px solid rgba(229, 6, 149, 0.2);
}

.about-rnj__btn {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 36px;
  border-radius: 10px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 100%);
  transition: transform 0.3s var(--ease-out);
}
.about-rnj__btn:hover { transform: translateY(-3px); }

/* Image side */
.about-rnj__media { position: sticky; top: 100px; }

.about-rnj__image {
  border-radius: 10px;
  overflow: hidden;
}
.about-rnj__image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.2; }

.about-rnj__media[data-reveal] { transform: translateX(60px); }
.about-rnj__media[data-reveal].is-revealed { transform: none; }

.about-rnj__badge {
  position: absolute;
  left: -26px;
  bottom: 30px;
  padding: 18px 26px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-pink);
  text-align: center;
  animation: blob-float 5s ease-in-out infinite alternate;
}
.about-rnj__badge strong {
  display: block;
  font-family: 'Belinda', cursive;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--pink);
}
.about-rnj__badge span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted, #7A5C6D); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .cat-card { width: calc((100% - 2 * 24px) / 3); }   /* 3 per row */
}

@media (max-width: 980px) {
  .about-rnj__grid { grid-template-columns: 1fr; gap: 44px; }
  .about-rnj__content .section-title { text-align: left; }
  .about-rnj__media { order: -1; position: relative; top: auto; }
  .about-rnj__image img { aspect-ratio: 16 / 11; }
  .about-rnj__badge { left: auto; right: 20px; bottom: -22px; }
}

@media (max-width: 1024px) {
  /* Services grid — tablet: 2 columns */
  .svc-section__header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .svc-section__sub { padding-bottom: 0; }
  .svc-card { width: 300px; }

  :root { --header-h: 74px; }

  .brand-logo { height: 62px; }

  .header-inner { justify-content: space-between; }

  .nav-toggle { display: flex; position: relative; z-index: 1001; }
  .header-actions { display: none; }

  .main-nav {
    flex: unset;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86vw);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(170deg, #33081F, var(--plum-deep));
    box-shadow: none;
    padding: calc(var(--header-h) + 24px) 28px 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
    overflow-y: auto;
    z-index: 999;
    justify-content: flex-start;
    align-items: stretch;
  }
  body.nav-open .main-nav { transform: translateX(0); box-shadow: var(--shadow-deep); }

  .nav-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 50%, var(--pink-soft) 100%);
    background-size: 200% auto;
    transition: background-position 0.4s ease, transform 0.25s ease;
  }
  .nav-book-btn:hover { background-position: right center; transform: translateY(-2px); }

  .nav-list { flex-direction: column; align-items: stretch; gap: 6px; }

  .nav-link {
    color: var(--white);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1.05rem;
  }
  .site-header.scrolled .nav-link { color: var(--white); }
  .nav-link:hover, .site-header.scrolled .nav-link:hover { background: rgba(229, 6, 149, 0.22); color: var(--white); }
  .nav-link.active, .site-header.scrolled .nav-link.active { color: var(--pink-soft); }

  .nav-cta-item { margin-top: 18px; }
  .nav-cta { display: block; text-align: center; margin-left: 0; }

  /* Mobile dropdown — accordion style */
  .dropdown-trigger { width: 100%; justify-content: space-between; }

  .dropdown {
    position: static;
    transform: none;
    min-width: 0;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    border-radius: 12px;
    margin-top: 6px;
    padding: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown:hover .dropdown { transform: none; }
  .has-dropdown:not(.open):hover .dropdown { display: none; }

  .dropdown .nav-link { color: rgba(255, 255, 255, 0.88); }
  .site-header.scrolled .dropdown .nav-link { color: rgba(255, 255, 255, 0.88); }
  .dropdown .nav-link:hover { background: rgba(229, 6, 149, 0.22); color: var(--white); }
}

/* iPad portrait (768px) — 2 per row cat cards, layout adjustments */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .cat-grid { column-gap: 16px; row-gap: 120px; margin-top: 120px; }
  .cat-card { width: calc((100% - 16px) / 2); padding: 0 14px; }

  .about-rnj__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-rnj__media { order: -1; }
  .about-rnj__image img { aspect-ratio: 16 / 11; }
  .about-rnj__badge { left: auto; right: 20px; bottom: -22px; }

  .book-form-wrap { width: 90%; }

  .brands-inner { grid-template-columns: 1fr; }
  .brands-left { position: static; padding: 0 24px; margin-bottom: 32px; }
}

@media (max-width: 720px) {
  .cat-grid { column-gap: 16px; row-gap: 120px; margin-top: 120px; }
  .cat-card { width: calc((100% - 16px) / 2); padding: 0 14px; }   /* 2 per row */
}

@media (max-width: 640px) {
  /* Services grid — mobile: 1 column */
  .svc-section { padding: 70px 0 80px; }
  .svc-card { width: 260px; }
  .svc-card__media { height: 200px; }
  .svc-card__body { padding: 38px 18px 20px; }
  .svc-card__link { font-size: 0.72rem; letter-spacing: 0.05em; padding: 10px 13px; gap: 5px; }

  .section { padding: 60px 0; }

  /* About — mobile */
  .about-rnj { padding: 60px 0; }
  .about-rnj .container { padding: 0 16px; }
  .about-rnj__item {
    grid-template-columns: 1fr;
    gap: 8px 0;
  }
  .about-rnj__item-left { gap: 12px; }
  .about-rnj__icon { width: 44px; height: 44px; }
  .about-rnj__item-text { padding-left: 0; border-left: 0; }
  .about-rnj__badge { padding: 14px 20px; }
  .about-rnj__badge strong { font-size: 1.8rem; }

  .cat-title { font-size: 1.05rem; margin: 18px 0 12px; }

  .cat-desc { font-size: 0.88rem; margin-bottom: 22px; }

  .cat-btn { padding: 11px 18px; font-size: 0.74rem; }

  .experience { padding: 110px 0 120px; }
  .exp-divider svg { height: 60px; }
  .exp-stage { height: 520px; }
  .exp-slide { border-radius: 12px; }
  .exp-nav { width: 44px; height: 44px; }
  .exp-deco-1, .exp-deco-2 { width: 42px; }

  /* Mobile par door wali reels chhupa do — sirf center + 1 side */
  .exp-slide[data-pos="1"]  { transform: translateX(80%) scale(0.78) rotateY(-8deg); opacity: 0.5; }
  .exp-slide[data-pos="-1"] { transform: translateX(-80%) scale(0.78) rotateY(8deg); opacity: 0.5; }
  .exp-slide[data-pos="2"], .exp-slide[data-pos="-2"] { opacity: 0; pointer-events: none; }
}

@media (max-width: 460px) {
  .cat-grid { column-gap: 10px; row-gap: 120px; }
  .cat-card { width: calc((100% - 10px) / 2); padding: 0 6px; }  /* 2 per row */
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testi-section {
  padding: 90px 0 10px;
  background: #fcfcfc;
}
.testi-section .container {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: 30px;
}

.testi-head {
  text-align: center;
  margin-bottom: 52px;
}

/* Track wrap: arrows on sides */
.testi-track-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Overflow viewport */
.testi-stage {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

/* Sliding row */
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.42s ease;
  will-change: transform;
}

/* Individual card — width set by JS */
.testi-card {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 1px solid #ebebeb;
  text-align: center;
}

/* Stars */
.testi-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
}
.testi-stars svg path { fill: var(--pink); }

/* Review text */
.testi-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  flex: 1;
  margin: 0;
}

/* Author */
.testi-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  text-align: left;
}
.testi-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #f0f0f0;
}
.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}
.testi-role {
  font-size: 0.76rem;
  color: #999;
  letter-spacing: 0.04em;
}

/* Arrow buttons */
.testi-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  color: #666;
  transition: border-color 0.25s, color 0.25s;
}
.testi-arrow:hover {
  border-color: #999;
  color: #333;
}
.testi-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Dots */
.testi-dots-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.testi-dot.active {
  background: #999;
  transform: scale(1.4);
}

/* Responsive */
@media (max-width: 640px) {
  .testi-section { padding: 60px 0 70px; }
  .testi-arrow { display: none; }
  .testi-track-wrap { gap: 0; padding: 0 2px; }
  .testi-card { padding: 28px 20px 24px; border-radius: 14px; }
}

/* ==========================================================================
   Our Team Section
   ========================================================================== */
.team-section {
  padding: 100px 0 110px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,6,149,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.team-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,6,149,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.team-section .container {
  width: 100%;
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin-inline: 0;
  box-sizing: border-box;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0e8ed;
  box-shadow: 0 4px 20px rgba(229,6,149,0.06);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s ease;
  cursor: default;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(229,6,149,0.14);
}

.team-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f0f5;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }

/* Pink gradient overlay bottom of photo */
.team-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,6,19,0.55) 0%, transparent 50%);
  pointer-events: none;
}

.team-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}
.team-tags span {
  font-size: 0.7rem;
  color: #888;
  background: #f7f0f5;
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (max-width: 720px) {
  .team-section { padding: 70px 0 80px; }
  .team-section .container { padding-left: 0; padding-right: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 32px; padding: 0 12px; }
  .team-card { border-radius: 14px; }
  .team-info { padding: 12px 12px 14px; gap: 3px; }
  .team-name { font-size: 0.88rem; }
  .team-role { font-size: 0.67rem; }
  .team-tags { display: none; }
}

/* ==========================================================================
   Instagram Feed Section
   ========================================================================== */

/* ==========================================================================
   Before & After Section
   ========================================================================== */
.ba-section {
  padding: 90px 0 90px;
  background-color: #1e1b24;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  position: relative;
  overflow: hidden;
}
.ba-galaxy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.ba-section .container {
  position: relative;
  z-index: 1;
}
.ba-section .kicker {
  color: var(--pink-soft);
}
.ba-section .section-title {
  color: #fff;
}
.ba-section .section-sub {
  color: rgba(255,255,255,0.55);
}
.ba-head {
  text-align: center;
  margin-bottom: 56px;
}
.ba-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.ba-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
}
.ba-compare {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.07);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-img--before {
  clip-path: inset(0 50% 0 0);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}
.ba-handle-line {
  width: 2px;
  flex: 1;
  background: rgba(255,255,255,0.85);
}
.ba-handle-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
  color: var(--plum-deep);
}
.ba-lbl {
  position: absolute;
  top: 14px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 4;
  backdrop-filter: blur(6px);
}
.ba-lbl--l { left: 14px; }
.ba-lbl--r { right: 14px; }
.ba-caption {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Tablet: 2 per row */
@media (max-width: 900px) {
  .ba-grid { max-width: 660px; gap: 20px; }
  .ba-card { flex: 0 0 calc(50% - 10px); }
}
/* Mobile: 1 per row */
@media (max-width: 600px) {
  .ba-section { padding: 60px 0 60px; }
  .ba-grid { max-width: 380px; gap: 28px; }
  .ba-card { flex: 0 0 100%; }
}
.insta-section {
  padding: 60px 0 40px;
  background: #fff;
}

/* Hide Elfsight free branding */
.eapps-link,
.eapps-widget-toolbar,
[class*="eapps-link"],
[class*="eapps-widget-toolbar"],
.eapps-instagram-feed-title,
[data-type="widget-toolbar"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Profile header */
.insta-profile {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 0 28px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 4px;
}

.insta-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2.5px solid #efefef;
  padding: 6px;
  background: #fff;
}
.insta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.insta-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.insta-name-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.insta-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0095f6;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 8px;
  transition: opacity 0.25s;
  white-space: nowrap;
}
.insta-follow-btn:hover { opacity: 0.85; }

.insta-handle-text {
  font-size: 0.9rem;
  color: #555;
}

.insta-stats {
  display: flex;
  gap: 32px;
  margin-top: 4px;
}
.insta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.insta-stat strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.insta-stat span {
  font-size: 0.8rem;
  color: #666;
}

/* 4-column grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-item:hover img { transform: scale(1.06); }
.insta-item:hover .insta-overlay { opacity: 1; }

/* Responsive */
@media (max-width: 768px) {
  .insta-profile { gap: 20px; }
  .insta-stats { gap: 20px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-name { font-size: 0.95rem; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--pink);
  color: #fff;
  font-size: 1.06rem;
  line-height: 1.7;
  position: relative;
}

/* Wave transition: testi → footer */
.footer-wave {
  background: transparent;
  line-height: 0;
  position: relative;
  margin-top: -1px;
}
.footer-wave svg { width: 100%; height: 90px; display: block; }

/* Map inside footer */
.footer-map {
  position: relative;
  line-height: 0;
}
.map-iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}
.map-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  white-space: nowrap;
}
.map-badge svg { color: var(--pink); flex-shrink: 0; }

.footer-top { padding: 32px 0 24px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Col 1 — Brand */
.footer-col--brand {}

.footer-logo img {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-about {
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 300px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.footer-social:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Headings */
.footer-heading {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
}

/* Quick links */
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: #fff;
  transition: color 0.25s, padding-left 0.25s;
  font-size: 1.03rem;
}
.footer-links a:hover { color: #fff; padding-left: 6px; }

/* Contact list */
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-size: 0.85rem;
}
.footer-contact li svg { color: #fff; flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #fff; transition: color 0.25s; }
.footer-contact a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 14px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy { color: #fff; font-size: 0.96rem; }
.footer-tagline {
  font-family: 'Belinda', Georgia, cursive;
  font-size: 1.1rem;
  color: #fff;
}
.footer-tagline a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.footer-tagline a:hover { opacity: 0.8; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-about { max-width: 100%; }
  .map-iframe { height: 320px; }
  .footer-wave svg { height: 70px; }
}

@media (max-width: 640px) {
  .footer-top { padding: 50px 0 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
  .map-iframe { height: 260px; }
  .map-badge { font-size: 0.72rem; padding: 7px 13px; }
  .footer-wave svg { height: 50px; }
}

/* ==========================================================================
   Brands We Love Section
   ========================================================================== */
/* ==========================================================================
   Packages Section
   ========================================================================== */
.pkg-section {
  position: relative;
  overflow: hidden;
}
.pkg-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/packgesbackgroun1.jpg') center / cover no-repeat;
  background-attachment: fixed;
  z-index: 0;
}
.pkg-section::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.82);
  z-index: 1;
}
.pkg-layout {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 660px;
}

/* ── Left panel ── */
.pkg-left {
  padding: 72px 30px 72px 30px;
  display: flex; flex-direction: column; gap: 36px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-right: 1px solid rgba(255,255,255,0.6);
}
.pkg-left-text { display: flex; flex-direction: column; gap: 10px; }
.pkg-left-sub { font-size: 0.87rem; color: #777; line-height: 1.7; }

.pkg-nav { display: flex; flex-direction: column; gap: 7px; }
.pkg-cat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 13px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.08); border-radius: 10px;
  color: var(--ink); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.22s; text-align: left; width: 100%;
  backdrop-filter: blur(4px);
}
.pkg-cat svg { flex-shrink: 0; color: #bbb; transition: color 0.22s; }
.pkg-cat span { flex: 1; }
.pkg-cat b {
  background: rgba(0,0,0,0.07); color: #999; font-size: 0.67rem;
  padding: 2px 7px; border-radius: 10px; font-weight: 700;
  min-width: 22px; text-align: center; flex-shrink: 0; transition: all 0.22s;
}
.pkg-cat:hover { background: rgba(255,255,255,0.95); border-color: var(--pink); color: var(--pink); }
.pkg-cat:hover svg { color: var(--pink); }
.pkg-cat.active { background: var(--pink); border-color: var(--pink); color: #fff; font-weight: 700; box-shadow: 0 4px 18px rgba(229,6,149,0.28); }
.pkg-cat.active svg { color: #fff; }
.pkg-cat.active b { background: rgba(255,255,255,0.22); color: #fff; }

/* ── Right panel ── */
.pkg-right { padding: 44px 20px 40px 16px; }
.pkg-right-inner {}

/* ── Cards wrap: arrows on sides ── */
.pkg-cards-wrap {
  display: flex; align-items: center; gap: 12px;
}
.pkg-slider-viewport {
  flex: 1; min-width: 0;
  overflow: hidden;
  position: relative;
}
.pkg-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pkg-arr {
  flex-shrink: 0;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.7); border-radius: 50%;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 3px 14px rgba(0,0,0,0.15);
  color: var(--ink); transition: all 0.22s;
}
.pkg-arr:hover { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0 4px 18px rgba(229,6,149,0.4); }
.pkg-arr:disabled { opacity: 0.35; pointer-events: none; }

/* ── Cards ── */
.pkg-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transition: transform 0.25s, box-shadow 0.25s; position: relative;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,0.15); }
.pkg-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--pink); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px; z-index: 2; letter-spacing: 0.04em;
}
.pkg-card-img { height: 155px; overflow: hidden; }
.pkg-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.pkg-card:hover .pkg-card-img img { transform: scale(1.07); }
.pkg-card-body { padding: 13px 15px 15px; }
.pkg-card-name { font-size: 0.87rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; line-height: 1.35; }
.pkg-card-desc { font-size: 0.74rem; color: #999; line-height: 1.5; margin-bottom: 9px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.25rem; }
.pkg-card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.pkg-duration { font-size: 0.71rem; color: #bbb; display: flex; align-items: center; gap: 4px; }
.pkg-price { font-size: 0.98rem; font-weight: 800; color: var(--pink); }
.pkg-btn {
  display: block; width: 100%; text-align: center;
  padding: 8px; background: var(--pink); color: #fff;
  border: none; border-radius: 8px; font-size: 0.75rem; font-weight: 700;
  cursor: pointer; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s; text-decoration: none;
}
.pkg-btn:hover { background: var(--plum-deep); transform: translateY(-1px); }

/* ── Dots ── */
.pkg-dots { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.pkg-dot { width: 8px; height: 8px; border-radius: 50%; background: #ccc; cursor: pointer; transition: all 0.28s; border: none; padding: 0; }
.pkg-dot.active { background: var(--pink); width: 24px; border-radius: 4px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pkg-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .pkg-layout { grid-template-columns: 1fr; }
  .pkg-left { padding: 44px 24px 32px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .pkg-nav { flex-direction: row; flex-wrap: wrap; }
  .pkg-cat { width: auto; padding: 8px 12px; }
  .pkg-cat b { display: none; }
  .pkg-right { padding: 32px 16px 36px; }
}
@media (max-width: 540px) {
  .pkg-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pkg-card-img { height: 120px; }
  .pkg-card-body { padding: 10px 11px 12px; }
  .pkg-card-name { font-size: 0.78rem; }
  .pkg-card-desc { display: none; }
  .pkg-arr { display: none; }
  /* dots mobile par show hongy */
  .pkg-slider-viewport { overflow: hidden; }
}

.brands-section {
  padding: 90px 0;
  background: #fff;
}

.brands-inner {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
}

/* Left sticky col */
.brands-left {
  padding: 0 35px 0 35px;
  position: sticky;
  top: calc(var(--header-h, 80px) + 40px);
  align-self: start;
}

.brands-title { text-align: left; margin: 8px 0 0; }

.brands-desc {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #7A6E77;
}

/* Right marquee col */
.brands-right {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 6px 0;
}

.brands-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
}

.brands-track--fwd {
  animation: brands-fwd 30s linear infinite;
  will-change: transform;
}
.brands-track--rev {
  animation: brands-rev 30s linear infinite;
  will-change: transform;
}

.brands-track:hover { animation-play-state: paused; }

@keyframes brands-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes brands-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.brand-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: transform 0.35s ease;
}

.brand-logo-item:hover {
  transform: scale(1.08);
}

.brand-logo-item img {
  width: 140px;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .brands-inner { grid-template-columns: 1fr; }
  .brands-left {
    position: static;
    padding: 0 24px;
    margin-bottom: 36px;
  }
}

@media (max-width: 720px) {
  .brands-section { padding: 60px 0; }
  .brand-logo-item img { width: 130px; }
  .brands-track { gap: 32px; }
}

/* ==========================================================================
   Special Offers / Packages Section
   ========================================================================== */
.offers-section {
  padding: 100px 0 110px;
  background: #fcfcfc;
  position: relative;
  overflow: hidden;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.offer-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 3px solid #222;
  border-radius: 14px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
}
.offer-card--signature {
  border-top-color: #E8B84B;
  background: #fffdf5;
  box-shadow: 0 2px 16px rgba(232,184,75,0.1);
}
.offer-card--signature:hover { box-shadow: 0 12px 36px rgba(232,184,75,0.2); }

.offer-badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.offer-badge--gold {
  background: #E8B84B;
  color: #1C0613;
}

.offer-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}

.offer-services {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.offer-services li {
  font-size: 0.75rem;
  color: #777;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.offer-services li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #aaa;
}
.offer-card--signature .offer-services li::before { background: #E8B84B; }

.offer-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #e8e8e8;
}
.offer-was {
  font-size: 0.75rem;
  color: #bbb;
  text-decoration: line-through;
}
.offer-now {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
}
.offer-card--signature .offer-now { color: #c8961e; }
.offer-btn {
  display: block;
  width: 100%;
  padding: 9px 0;
  background: #222;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 4px;
  transition: background 0.2s, transform 0.15s;
}
.offer-btn:hover { background: #444; transform: translateY(-1px); }
.offer-card--signature .offer-btn { background: #c8961e; }
.offer-card--signature .offer-btn:hover { background: #e0aa22; }

/* Responsive */
@media (max-width: 1200px) {
  .offers-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .offers-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 640px) {
  .offers-section { padding: 70px 0 80px; }
  .offers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; }
  .offer-card { padding: 16px 14px 14px; gap: 10px; }
  .offer-name { font-size: 0.82rem; }
  .offer-now { font-size: 1rem; }
}

/* ==========================================================================
   Book Appointment Section
   ========================================================================== */
.book-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background-image: url('../images/book-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}

/* Overlay container */
.book-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.book-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(68deg, rgb(10 4 8 / 0%) 0%, rgb(10 4 8 / 24%) 45%, rgba(10, 4, 8, 0.82) 100%);
}

/* Inner layout — form pushed to right */
.book-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 80px 0;
}

/* Form card */
.book-form-wrap {
  width: 52%;
  max-width: 580px;
}

/* Top icon */
.book-icon {
  width: 52px;
  height: 52px;
  color: var(--pink-soft);
  margin-bottom: 16px;
}
.book-icon svg { width: 100%; height: 100%; }

/* Kicker — script style */
.book-kicker {
  display: block;
  font-family: 'Belinda', Georgia, cursive;
  font-size: 1.75rem;
  background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1;
}

/* Title */
.book-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  line-height: 1.1;
}

/* Form layout */
.book-form { width: 100%; }

.book-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.book-field {
  position: relative;
  margin-bottom: 28px;
}
.book-field--full { grid-column: 1 / -1; }

.book-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Inputs — underline only style */
.book-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.book-input::placeholder { color: rgba(255,255,255,0.3); }
.book-input:focus { border-bottom-color: var(--pink-soft); }

/* Select arrow */
.book-field--select { position: relative; }
.book-select { cursor: pointer; padding-right: 20px; }
.book-select option { color: var(--ink); background: #fff; }
.book-select-arrow {
  position: absolute;
  right: 2px;
  bottom: 12px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}

/* Date icon */
.book-field--date { position: relative; }
.book-date-icon {
  position: absolute;
  right: 2px;
  bottom: 10px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 24px;
  cursor: pointer;
}

/* Textarea */
.book-textarea {
  resize: none;
  padding-top: 8px;
  min-height: 72px;
}

/* Submit button — brand gradient */
.book-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 50%, var(--pink-soft) 100%);
  background-size: 200% auto;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-position 0.4s ease, transform 0.2s;
}
.book-submit:hover {
  background-position: right center;
  transform: translateY(-2px);
}
.book-submit:active { transform: translateY(0); }

/* Success message */
.book-success {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pink-soft);
  margin-top: 20px;
}
.book-success svg { flex-shrink: 0; }
.book-success p { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .book-inner { justify-content: center; padding: 70px 0; }
  .book-form-wrap { width: 80%; max-width: 620px; }
}

@media (max-width: 720px) {
  .book-inner { justify-content: center; padding: 60px 0; }
  .book-form-wrap { width: 100%; }
  .book-overlay {
    background: linear-gradient(180deg, rgba(10,4,8,0.55) 0%, rgba(10,4,8,0.85) 100%);
  }
}

@media (max-width: 640px) {
  .book-row { grid-template-columns: 1fr; gap: 0; }
  .book-title { font-size: 1.9rem; }
  .book-section { min-height: auto; }
}

/* ============================================================
   FIND US / MAP SECTION
   ============================================================ */
.findus-section {
  background: #fcfcfc;
  padding: 100px 0 0;
}

.findus-head { max-width: 720px; }

.findus-sub {
  margin: 8px 0 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #5a3a4e;
}

.findus-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.findus-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.findus-cta--phone {
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(229,6,149,0.25);
}
.findus-cta--phone svg { stroke: var(--pink); }
.findus-cta--phone:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
}

.findus-cta--book {
  color: #fff;
  background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 50%, var(--pink-soft) 100%);
  background-size: 200% auto;
}
.findus-cta--book:hover {
  background-position: right center;
  transform: translateY(-2px);
}

/* Full-width map */
.findus-map-full {
  width: 100%;
  height: 520px;
}

.findus-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1024px) {
  .findus-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .findus-map-full { height: 440px; }
}

@media (max-width: 720px) {
  .findus-section { padding-top: 72px; }
  .findus-map-full { height: 380px; }
}

@media (max-width: 460px) {
  .findus-section { padding-top: 56px; }
  .findus-map-full { height: 300px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   Mobile Sticky Bottom Bar
   ========================================================================== */
.mobile-sticky-bar { display: none; }

@media (max-width: 1024px) {
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    box-shadow: 0 -4px 20px rgba(28,6,19,0.15);
  }
  .mobile-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  .mobile-sticky-btn:active { opacity: 0.85; }
  .mobile-sticky-btn--book {
    background: linear-gradient(90deg, var(--pink-soft) 0%, #B36BF0 50%, var(--pink-soft) 100%);
    background-size: 200% auto;
    color: #fff;
  }
  .mobile-sticky-btn--call {
    background: #fff;
    color: var(--pink);
    border-left: 1px solid rgba(229,6,149,0.15);
  }
}

