/* ==========================================================
   Sagar King Spa — Luxury Warm Copper Theme
   ========================================================== */

:root {
  /* Cream + gold + charcoal — luxury samurai spa palette */
  --bg:          #f8f1e5;   /* soft warm cream (body) */
  --bg-2:        #f0e5d0;   /* deeper cream alt section */
  --bg-3:        #e8dcc4;
  --surface:     #ffffff;   /* white cards */
  --line:        rgba(168, 130, 76, 0.28);

  --dark:        #14100c;   /* charcoal-espresso for header/footer */
  --dark-2:      #1d1813;

  --gold:        #a8824c;   /* refined samurai gold/bronze */
  --gold-2:      #d4a86a;   /* lighter highlight */
  --gold-soft:   #e9d3a8;
  --gold-ink:    #2a1810;   /* dark text on gold buttons */

  --text:        #3a2a1c;   /* dark warm brown body text */
  --muted:       #7a6655;
  --white:       #1f140a;   /* legacy alias — used for headings, now dark */
  --on-dark:     #f0e6d6;   /* cream text used on dark surfaces */

  --shadow:      0 20px 50px rgba(58,42,28,.12);
  --radius:      16px;
  --radius-sm:   10px;

  --ff-head:     'Poppins', sans-serif;
  --ff-body:     'Poppins', sans-serif;

  --trans:       0.4s cubic-bezier(.2,.8,.2,1);
}

/* Dark zones (header, hero, footer, mobile nav) — locally flip text vars to cream */
.header,
.hero,
.footer,
.nav {
  --text:  #f0e6d6;
  --muted: #c4b59f;
  --white: #fffaf2;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17.5px;   /* base size bumped — scales every rem proportionally */
}
@media (max-width: 860px) {
  html { font-size: 16px; } /* drop back on mobile so layouts don't feel cramped */
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section__title {
  font-family: var(--ff-head);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}
.section__title span {
  color: var(--gold);
  font-style: italic;
}

.section__lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), color var(--trans);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1a1404;
  box-shadow: 0 10px 25px rgba(200,158,111, 0.22);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200,158,111, 0.38);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: #1a1404;
}

.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: rgba(200,158,111,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* WhatsApp green — matches the header CTA style */
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1ebe5b 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37,211,102,0.28);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37,211,102,0.45);
  color: #ffffff;
}

/* Call Now navy */
.btn--call {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5984 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(30,58,95,0.35);
}
.btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(30,58,95,0.55);
  color: #ffffff;
}

.btn--lg {
  padding: 14px 30px;
  font-size: 1rem;
}
.btn--block { width: 100%; justify-content: center; }

.btn-mini {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  transition: var(--trans);
  cursor: pointer;
}
/* Service-card mini buttons — dark espresso fill so they highlight on the white card */
.btn-mini--gold {
  background: linear-gradient(135deg, #1f140a 0%, #2a1810 100%);
  color: var(--gold-2);
  border: 1px solid rgba(168,130,76,0.45);
  box-shadow: 0 6px 16px rgba(20,14,8,0.18);
  font-size: 18px;
}
.btn-mini--gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #14100c;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(168,130,76,0.38);
}

.btn-mini--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1ebe5b 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.28);
}
.btn-mini--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  color: #ffffff;
}

.btn-mini--call {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5984 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(30,58,95,0.32);
}
.btn-mini--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30,58,95,0.5);
  color: #ffffff;
}

/* ==========================================================
   TOP BAR
   ========================================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  height: 44px;
  background: linear-gradient(90deg, #f0e5d0 0%, #f8f1e5 50%, #f0e5d0 100%);
  border-bottom: 1px solid rgba(168,130,76,0.35);
  box-shadow: 0 2px 8px rgba(58,42,28,.08);
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: transform var(--trans);
}
.topbar.hidden {
  transform: translateY(-100%);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 100%;
}

.topbar__info {
  display: flex;
  align-items: center;
  gap: 0;
  color: #1f140a;
  flex-wrap: nowrap;
  overflow: hidden;
}
.topbar__info > a,
.topbar__info > span:not(.topbar__divider) {
  color: #1f140a;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  white-space: nowrap;
  transition: color var(--trans);
}
.topbar__info > a:first-child,
.topbar__info > span:not(.topbar__divider):first-child { padding-left: 0; }
.topbar__info a:hover {
  color: var(--gold);
}
.topbar__info i {
  color: #1f140a;
  font-size: .85rem;
}
.topbar__divider {
  flex: 0 0 auto;
  width: 1px;
  height: 16px;
  background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent);
  opacity: .45;
}

.topbar__socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.topbar__socials::before {
  content: 'Follow us';
  color: #1f140a;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-right: 6px;
}
.topbar__socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(31,20,10,0.06);
  border: 1px solid rgba(31,20,10,0.55);
  color: #1f140a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: var(--trans);
}
.topbar__socials a:hover {
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200,158,111,.35);
}

/* ==========================================================
   HEADER
   ========================================================== */
.header {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(20,16,12, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--trans), padding var(--trans), border-color var(--trans), top var(--trans);
}
.header.scrolled {
  top: 0;
  padding: 10px 0;
  background: rgba(20,16,12, 0.92);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-head);
}
.logo__img {
  width: 78px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(200,158,111,.25));
}
.logo__text {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo__text em {
  font-style: italic;
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--ff-body);
  font-weight: 400;
}

.logo--footer .logo__img { width: 70px; height: 54px; }
.logo--footer .logo__text { font-size: 1.2rem; }

/* Nav */
.nav__list {
  display: flex;
  gap: 30px;
}
.nav__list a {
  position: relative;
  color: var(--text);
  font-size: 17px;
  font-weight: 400;
  padding: 4px 0;
  transition: color var(--trans);
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav__list a:hover,
.nav__list a.active {
  color: var(--gold);
}
.nav__list a:hover::after,
.nav__list a.active::after {
  width: 100%;
}

.header__cta {
  display: flex;
  gap: 10px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--trans);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================
   HERO SLIDER
   ========================================================== */
.hero {
  position: relative;
  width: 100%;
  /* Exact 1600 × 896 banner proportions — no crop, no letterbox on desktop */
  aspect-ratio: 1600 / 896;
  min-height: 580px;
  overflow: hidden;
  background: #0a0704;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0a0704;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.8s ease, visibility 1.8s ease;
  z-index: 1;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Uniform warm overlay across the whole image — every slide reads at the same
     darkness so the page doesn't flicker bright/dark as banners auto-rotate.
     Slight bottom gradient kept to anchor the text. */
  background: linear-gradient(180deg,
    rgba(20,16,12,0.42) 0%,
    rgba(20,16,12,0.42) 55%,
    rgba(20,16,12,0.62) 100%);
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide.active .hero-slide__content > * {
  animation: heroFadeUp .9s ease both;
}
.hero-slide.active .hero-slide__content > *:nth-child(1) { animation-delay: .15s; }
.hero-slide.active .hero-slide__content > *:nth-child(2) { animation-delay: .35s; }
.hero-slide.active .hero-slide__content > *:nth-child(3) { animation-delay: .55s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-slide__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 900px;
  width: 100%;
  padding: 0 24px;
}
.hero-slide__title {
  font-family: var(--ff-head);
  /* Scales from 28px on small mobile up to 60px on large desktops */
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 6px 28px rgba(0,0,0,0.7);
}
.hero-slide__sub {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 32px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 4px 16px rgba(0,0,0,0.7);
}
.hero-slide__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Side arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
  transition: var(--trans);
}
.hero-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gold-ink);
}
.hero-nav--prev { left: 24px; }
.hero-nav--next { right: 24px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--trans);
}
.hero-dot.active {
  width: 32px;
  border-radius: 10px;
  background: #ffffff;
}

/* Scroll-down indicator */
.hero__scroll-down {
  position: absolute;
  bottom: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  transition: var(--trans);
  animation: bounceArrow 2s ease-in-out infinite;
}
.hero__scroll-down:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gold-ink);
}
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about { background: var(--bg-2); }

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left: dual-image collage ───────────────────────────────────── */
.about__media {
  position: relative;
  padding: 0 60px 80px 0;
}

.about__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(58,42,28,0.18);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}
.about__img:hover img { transform: scale(1.06); }

.about__img--main {
  width: 100%;
  height: 480px;
}

.about__img--accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 230px;
  border: 8px solid var(--bg-2);
  border-radius: var(--radius);
  z-index: 2;
  box-shadow: 0 22px 50px rgba(58,42,28,0.22);
}

/* Floating experience badge */
.about__experience {
  position: absolute;
  top: 30px;
  left: -18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #14100c;
  padding: 22px 28px;
  border-radius: var(--radius-sm);
  z-index: 3;
  box-shadow: 0 16px 36px rgba(168,130,76, 0.4);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about__experience-num {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
}
.about__experience-num em {
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 4px;
  margin-left: 2px;
}
.about__experience-label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1.35;
  border-left: 2px solid #14100c;
  padding-left: 14px;
}

/* Subtle dot decoration behind the accent image */
.about__dot-pattern {
  position: absolute;
  right: 24px;
  bottom: 250px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.4;
  z-index: 1;
}

/* ── Right: content ─────────────────────────────────────────────── */
.about__body {
  display: flex;
  flex-direction: column;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 28px;
  padding: 22px 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
}
.about__stat {
  text-align: center;
  position: relative;
}
.about__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.about__stat h3 {
  font-family: var(--ff-head);
  color: var(--gold);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: flex-start;
}
.about__stat h3 em {
  font-style: normal;
  font-size: 1rem;
  margin-top: 4px;
  margin-left: 1px;
}
.about__stat span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.about__features {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}
.about__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 20px;
}
.about__features i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #14100c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

.about__cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.about__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  transition: var(--trans);
}
.about__phone i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(168,130,76,0.12);
  border: 1px solid rgba(168,130,76,0.4);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--trans);
}
.about__phone span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.about__phone small {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about__phone strong {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}
.about__phone:hover i {
  background: var(--gold);
  color: #14100c;
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services {
  background:
    linear-gradient(var(--bg), var(--bg)),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1600&q=60') center/cover;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-2) 50%, var(--gold) 70%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  z-index: 5;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 22px 44px rgba(58,42,28,0.18), 0 0 0 1px rgba(168,130,76,.35);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.08); }

.duration {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(20,16,12,0.78);
  color: var(--gold-2);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  border: 1px solid rgba(212,168,106,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card__body {
  padding: 26px 22px 22px;
}
.service-card__body h3 {
  font-family: var(--ff-head);
  font-size: 23px;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 14px;
  font-weight: 600;
  position: relative;
}
.service-card__body h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width .4s ease;
}
.service-card:hover .service-card__body h3::after {
  width: 80px;
}
.service-card__body > p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 22px;
  min-height: 72px;
}

.service-card__actions {
  display: flex;
  gap: 10px;
}

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery { background: var(--bg-2); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery__item--tall,
.gallery__item--wide {
  grid-column: auto;
  grid-row: auto;
}

.gallery__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,16,12,0.4), rgba(200,158,111,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery__hover i {
  color: var(--white);
  font-size: 1.8rem;
  transform: scale(0.7);
  transition: transform var(--trans);
}
.gallery__item:hover img { transform: scale(1.1); }
.gallery__item:hover .gallery__hover { opacity: 1; }
.gallery__item:hover .gallery__hover i { transform: scale(1); }

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why {
  background: var(--bg);
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(200,158,111,0.08), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(200,158,111,0.06), transparent 60%);
  pointer-events: none;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Horizontal card — icon left, content right, copper accent stripe on hover */
.feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 32px 30px;
  background: var(--surface);
  border: 1.5px solid rgba(168,130,76, 0.55);
  border-radius: var(--radius);
  text-align: left;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(58,42,28,0.06);
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}

/* Number watermark in the corner */
.feature::after {
  content: attr(data-num);
  position: absolute;
  top: -8px;
  right: 16px;
  font-family: var(--ff-head);
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(168,130,76, 0.22);
  pointer-events: none;
  transition: color var(--trans);
}

/* Sliding copper edge that animates in on hover */
.feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

.feature:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 22px 44px rgba(58,42,28,0.16);
}
.feature:hover::before { transform: scaleY(1); }
.feature:hover::after  { color: rgba(168,130,76, 0.32); }

.feature__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border: 1px solid var(--gold);
  color: #14100c;
  font-size: 1.55rem;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(168,130,76, 0.35);
  transition: box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}
.feature:hover .feature__icon {
  box-shadow: 0 16px 30px rgba(168,130,76, 0.5);
}

/* The icon glyph itself gets the dedicated animation, not the box */
.feature__icon i {
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* — Per-icon animations — each tells a story related to its meaning — */

/* 01  Mars — gentle clockwise sway (masculine identity) */
.feature__icon--rotate i {
  animation: featRotate 3.2s ease-in-out infinite;
}
@keyframes featRotate {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(8deg); }
}

/* 02  Hand-holding-heart — heartbeat (caring therapists) */
.feature__icon--beat i {
  animation: featBeat 1.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes featBeat {
  0%, 60%, 100% { transform: scale(1); }
  20%           { transform: scale(1.18); }
  40%           { transform: scale(1.08); }
}

/* 03  Hot-tub-person — float up & down (jacuzzi bobbing) */
.feature__icon--float i {
  animation: featFloat 2.4s ease-in-out infinite;
}
@keyframes featFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* 04  Soap — bubble shake / sparkle (cleanliness) */
.feature__icon--sparkle i {
  animation: featSparkle 2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes featSparkle {
  0%, 100% { transform: rotate(0) scale(1); filter: brightness(1); }
  25%      { transform: rotate(-10deg) scale(1.08); filter: brightness(1.18); }
  50%      { transform: rotate(0) scale(1); filter: brightness(1); }
  75%      { transform: rotate(10deg) scale(1.08); filter: brightness(1.18); }
}

/* 05  Calendar-check — light nod (open/available) */
.feature__icon--swing i {
  animation: featSwing 2.6s ease-in-out infinite;
  transform-origin: center top;
}
@keyframes featSwing {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}

/* 06  Crown — VIP shimmer (light sweep + subtle bounce) */
.feature__icon--shine i {
  animation: featShine 2.8s ease-in-out infinite;
}
@keyframes featShine {
  0%, 100% { transform: translateY(0) scale(1); filter: brightness(1) drop-shadow(0 0 0 rgba(255,255,255,0)); }
  50%      { transform: translateY(-3px) scale(1.08); filter: brightness(1.25) drop-shadow(0 0 8px rgba(255,250,242,0.7)); }
}

/* Glow halo behind the icon for VIP — extra premium touch */
.feature__icon--shine::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(255,250,242,0.5), transparent 70%);
  opacity: 0;
  animation: shineHalo 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shineHalo {
  0%, 100% { opacity: 0; }
  50%      { opacity: 0.55; }
}

.feature__body {
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.feature h3 {
  font-family: var(--ff-head);
  color: var(--white);
  font-size: 23px;
  margin-bottom: 10px;
  padding-bottom: 12px;
  font-weight: 600;
  position: relative;
}
.feature h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width .4s ease;
}
.feature:hover h3::after { width: 56px; }
.feature p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials { background: var(--bg-2); }

.slider {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.slide {
  min-width: 100%;
  padding: 10px 0;
}

.slide__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 0 12px;
}

.slide__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px 40px 36px;
  text-align: center;
  position: relative;
}
.slide__card > i {
  color: var(--gold);
  font-size: 2rem;
  opacity: .35;
  margin-bottom: 14px;
}
.slide__card p {
  font-family: var(--ff-head);
  color: var(--text);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}
.slide__stars {
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.slide__card h4 {
  font-family: var(--ff-head);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
}
.slide__card span { color: var(--muted); font-size: .85rem; }

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__btn:hover {
  background: var(--gold);
  color: #1a1404;
}

.slider__dots {
  display: flex;
  gap: 8px;
}
.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200,158,111,0.3);
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.slider__dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 10px;
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact { background: var(--bg); position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(168,130,76,0.10), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(168,130,76,0.07), transparent 50%);
  pointer-events: none;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* ── Contact cards ────────────────────────────────────────────── */
.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: var(--surface);
  border: 1.5px solid rgba(168,130,76, 0.4);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.contact-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 14px 30px rgba(58,42,28, 0.14);
}
.contact-card:hover::before { transform: scaleY(1); }

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #14100c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(168,130,76, 0.3);
  transition: var(--trans);
}
.contact-card:hover .contact-card__icon {
  transform: scale(1.06) rotate(-4deg);
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  min-width: 0;
}
.contact-card__body small {
  color: var(--muted);
  font-size: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-card__body strong {
  color: var(--white);
  font-size: .98rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.contact-card__arrow {
  color: var(--gold);
  font-size: .85rem;
  transition: transform var(--trans);
}
.contact-card:hover .contact-card__arrow {
  transform: translateX(4px);
}

.contact-card--static { cursor: default; }
.contact-card--static:hover {
  transform: none;
  border-color: rgba(168,130,76, 0.4);
  box-shadow: none;
}
.contact-card--static:hover::before { transform: scaleY(0); }
.contact-card--static:hover .contact-card__icon { transform: none; }

/* ── Form ───────────────────────────────────────────────────────── */
.contact__form {
  background: var(--surface);
  border: 1.5px solid rgba(168,130,76, 0.4);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0 16px 40px rgba(58,42,28, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form-head h3 {
  font-family: var(--ff-head);
  color: var(--white);
  font-size: 1.55rem;
  margin-bottom: 6px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}
.contact__form-head h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.contact__form-head p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  position: relative;
  display: flex;
  align-items: center;
}
.field > i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: .92rem;
  pointer-events: none;
  z-index: 1;
}
.field--ta > i {
  top: 22px;
  transform: none;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px 14px 46px;
  background: rgba(168,130,76, 0.05);
  border: 1.5px solid rgba(168,130,76, 0.32);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(168,130,76, 0.15);
}
.contact__form textarea { resize: vertical; padding-top: 14px; }
.contact__form option { background: #ffffff; color: var(--text); }

.form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.form-status--ok  { color: #1f7a4a; }
.form-status--err { color: #b3261e; }

.contact__map-wrap {
  position: relative;
  z-index: 1;
}
.contact__map {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(168,130,76, 0.4);
  filter: grayscale(.25);
  transition: filter var(--trans);
  box-shadow: 0 16px 40px rgba(58,42,28, 0.12);
}
.contact__map:hover { filter: none; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: #09090b;
  border-top: 1px solid var(--line);
  position: relative;
}

/* ── CTA strip at the very top of the footer ────────────────────── */
.footer__cta-strip {
  background: linear-gradient(135deg, rgba(168,130,76,0.18) 0%, rgba(168,130,76,0.06) 100%);
  border-bottom: 1px solid rgba(168,130,76, 0.25);
  padding: 36px 0;
}
.footer__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer__cta-text h3 {
  font-family: var(--ff-head);
  color: var(--gold-2);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.footer__cta-text p {
  color: var(--muted);
  font-size: .95rem;
}
.footer__cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Main footer grid ───────────────────────────────────────────── */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 50px;
  padding: 70px 0 50px;
}

.footer__col--brand .logo--footer { margin-bottom: 18px; }
.footer__col--brand p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 22px;
  max-width: 340px;
  line-height: 1.7;
}

.footer__col h4 {
  font-family: var(--ff-head);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  display: inline-block;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.footer__col ul li {
  margin-bottom: 10px;
}
.footer__col ul a {
  color: var(--text);
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--trans), transform var(--trans);
}
.footer__col ul a i {
  color: var(--gold);
  font-size: .65rem;
  transition: transform var(--trans);
}
.footer__col ul a:hover {
  color: var(--gold);
}
.footer__col ul a:hover i {
  transform: translateX(3px);
}

.footer__contact li {
  color: var(--text);
  font-size: .92rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  line-height: 1.55;
  margin-bottom: 14px;
}
.footer__contact li > i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(168,130,76, 0.14);
  border: 1px solid rgba(168,130,76, 0.4);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .82rem;
  margin-top: 2px;
}
.footer__contact a {
  color: var(--text);
  transition: color var(--trans);
}
.footer__contact a:hover { color: var(--gold); }

.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(168,130,76, 0.1);
  border: 1px solid rgba(168,130,76, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--trans);
}
.footer__socials a:hover {
  background: var(--gold);
  color: #14100c;
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ── Bottom strip: copyright + legal links ──────────────────────── */
.footer__bottom {
  border-top: 1px solid rgba(168,130,76, 0.2);
  padding: 22px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__copy {
  color: var(--muted);
  font-size: 18px;
}
.footer__credit {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--trans);
}
.footer__credit:hover { color: var(--gold-2); }

.footer__legal {
  display: flex;
  gap: 0;
  list-style: none;
}
.footer__legal li {
  display: flex;
  align-items: center;
}
.footer__legal li:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 14px;
  background: rgba(168,130,76, 0.4);
  margin: 0 14px;
}
.footer__legal a {
  color: var(--muted);
  font-size: 18px;
  transition: color var(--trans);
  cursor: pointer;
}
.footer__legal a:hover { color: var(--gold); }

/* ==========================================================
   MODALS — Privacy, Terms, Refund popups
   ========================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s ease, visibility .35s ease;
}
.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 2, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  background: var(--surface);
  border: 1.5px solid rgba(168,130,76, 0.5);
  border-radius: var(--radius);
  width: min(720px, 92%);
  max-height: 86vh;
  margin: 6vh auto;
  padding: 38px 40px 36px;
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(168,130,76,0.15);
}
.modal.open .modal__dialog {
  transform: translateY(0) scale(1);
}

/* Custom scrollbar */
.modal__dialog::-webkit-scrollbar { width: 8px; }
.modal__dialog::-webkit-scrollbar-track { background: transparent; }
.modal__dialog::-webkit-scrollbar-thumb {
  background: rgba(168,130,76, 0.4);
  border-radius: 4px;
}
.modal__dialog::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(168,130,76, 0.12);
  border: 1px solid rgba(168,130,76, 0.4);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--trans);
  z-index: 2;
}
.modal__close:hover {
  background: var(--gold);
  color: #14100c;
  transform: rotate(90deg);
}

.modal__head {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(168,130,76, 0.25);
}
.modal__head .eyebrow { margin-bottom: 8px; }
.modal__head h3 {
  font-family: var(--ff-head);
  color: var(--white);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.modal__sub {
  color: var(--muted);
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modal__body {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.75;
}
.modal__body h4 {
  font-family: var(--ff-head);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 22px 0 10px;
  position: relative;
  padding-left: 14px;
}
.modal__body h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  border-radius: 2px;
}
.modal__body p {
  margin-bottom: 14px;
  color: var(--text);
}
.modal__body ul {
  list-style: none;
  margin: 12px 0 16px;
  padding-left: 0;
}
.modal__body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--text);
}
.modal__body ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
.modal__body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dashed rgba(168,130,76, 0.5);
  transition: color var(--trans);
}
.modal__body a:hover { color: var(--gold-2); }
.modal__body strong { color: var(--white); }

/* ==========================================================
   MOBILE STICKY ACTION BAR — full-width WhatsApp + Call Now
   ========================================================== */
.mobile-actions {
  display: none;        /* hidden on desktop — shown only on mobile via media query */
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: linear-gradient(180deg, #3d2817 0%, #2d1c0e 100%);
  box-shadow: 0 -6px 22px rgba(0,0,0,0.32);
  border-top: 1px solid rgba(168,130,76, 0.35);
}
.mobile-actions__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 8px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .3px;
  text-decoration: none;
  transition: background var(--trans);
}
.mobile-actions__btn i {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-actions__btn:active {
  background: rgba(255,255,255, 0.08);
}
.mobile-actions__divider {
  width: 1px;
  background: rgba(255,255,255, 0.4);
  margin: 14px 0;
  flex-shrink: 0;
}

/* ==========================================================
   FLOATING / BACK TO TOP
   ========================================================== */
.float-wa,
.float-call {
  position: fixed;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  z-index: 90;
  transition: transform var(--trans);
}
.float-wa:hover,
.float-call:hover {
  transform: scale(1.08);
  color: #fff;
}

.float-wa {
  bottom: 22px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5b 100%);
  box-shadow: 0 8px 20px rgba(37,211,102,.4);
  animation: pulseWa 2s infinite;
}
@keyframes pulseWa {
  0%   { box-shadow: 0 8px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 8px 20px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

.float-call {
  bottom: 92px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5984 100%);
  box-shadow: 0 8px 20px rgba(30,58,95,.45);
  animation: pulseCall 2s infinite;
  animation-delay: 1s;
}
.float-call i {
  animation: ring 1.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes pulseCall {
  0%   { box-shadow: 0 8px 20px rgba(30,58,95,.45), 0 0 0 0 rgba(45,89,132,.55); }
  70%  { box-shadow: 0 8px 20px rgba(30,58,95,.45), 0 0 0 18px rgba(45,89,132,0); }
  100% { box-shadow: 0 8px 20px rgba(30,58,95,.45), 0 0 0 0 rgba(45,89,132,0); }
}
@keyframes ring {
  0%, 60%, 100% { transform: rotate(0); }
  10% { transform: rotate(-18deg); }
  20% { transform: rotate(18deg); }
  30% { transform: rotate(-12deg); }
  40% { transform: rotate(12deg); }
  50% { transform: rotate(0); }
}

/* ==========================================================
   AOS-LIKE REVEAL
   ========================================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE — full coverage across mobile sizes
   Breakpoints:
     - 1200px : large desktop / small laptop
     - 1024px : tablet landscape
     -  860px : tablet portrait / large mobile
     -  640px : medium mobile (most modern phones in portrait)
     -  480px : small mobile
     -  360px : tiny / older phones
   ========================================================== */

/* ── 1200px — small laptops / large tablets ─────────────────── */
@media (max-width: 1200px) {
  .container { width: min(1140px, 92%); }
  .section { padding: 95px 0; }
  .footer__grid { gap: 36px; }
}

/* ── 1024px — tablet ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 85px 0; }

  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__media { padding: 0 40px 60px 0; max-width: 600px; margin: 0 auto; }
  .about__img--main { height: 420px; }
  .about__img--accent { width: 55%; height: 200px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }

  .topbar__info { gap: 14px; font-size: 14px; }
  .topbar__info a:last-child,
  .topbar__info .topbar__divider:last-of-type { display: none; }

  .footer__cta-inner { gap: 22px; }
  .footer__cta-text h3 { font-size: 1.5rem; }

  /* Show sticky bottom action bar on all mobile + tablet sizes */
  .mobile-actions { display: flex; }
  .float-wa, .float-call { display: none; }
  body { padding-bottom: 68px; }
}

/* ── 860px — tablet portrait / large mobile ────────────────── */
@media (max-width: 860px) {
  /* Hamburger button on top of everything */
  .hamburger { display: flex; position: relative; z-index: 220; }
  .header__cta { display: none; }

  /* Mobile menu — full screen solid dark overlay */
  .nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #14100c 0%, #1d1813 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
    z-index: 210;
    padding: 90px 24px 40px;
    overflow-y: auto;
  }
  .nav.active { transform: translateX(0); }

  .nav__list {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    width: 100%;
    max-width: 360px;
  }
  .nav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(168,130,76, 0.18);
  }
  .nav__list li:last-child { border-bottom: none; }
  .nav__list a {
    display: block;
    font-size: 19px;
    font-weight: 500;
    color: #f0e6d6;
    padding: 18px 12px;
    letter-spacing: .5px;
    transition: color var(--trans);
  }
  .nav__list a::after { display: none; }   /* hide desktop underline indicator */
  .nav__list a:hover,
  .nav__list a.active { color: var(--gold-2); }

  /* topbar collapses to socials only */
  .topbar { height: 0; visibility: hidden; }
  .header { top: 0; }

  /* logo shrinks */
  .logo__img { width: 64px; height: 50px; }

  .section { padding: 70px 0; }
  .section__title { font-size: 32px; }
  .section__lead { font-size: 16px; }
  .eyebrow { font-size: 14px; letter-spacing: 3px; }

  /* hero */
  .hero { aspect-ratio: auto; height: 88vh; min-height: 520px; max-height: none; }
  .hero-nav { width: 42px; height: 42px; }
  .hero-nav--prev { left: 10px; }
  .hero-nav--next { right: 10px; }
  .hero-slide__sub { font-size: 24px; line-height: 1.25; }
  .hero-slide__buttons { gap: 10px; }
  .hero-slide__buttons .btn { padding: 12px 22px; font-size: 16px; }
  .hero__scroll-down { display: none; }

  /* about — collage simplified */
  .about__media { padding: 0 24px 70px 0; }
  .about__img--main { height: 340px; }
  .about__img--accent { width: 60%; height: 180px; border-width: 6px; }
  .about__experience { padding: 14px 18px; left: -10px; top: 16px; }
  .about__experience-num { font-size: 2.2rem; }
  .about__experience-num em { font-size: 1.1rem; }
  .about__experience-label { font-size: 11px; padding-left: 10px; }
  .about__stats { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
  .about__stat:not(:last-child)::after { display: none; }
  .about__stat:not(:last-child) { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
  .about__features li { font-size: 17px; }

  /* services */
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .service-card__body h3 { font-size: 20px; }
  .service-card__body > p { font-size: 16px; min-height: auto; }

  /* why choose us */
  .why__grid { grid-template-columns: 1fr; gap: 18px; }
  .feature { grid-template-columns: 60px 1fr; padding: 24px 22px; gap: 18px; }
  .feature h3 { font-size: 19px; }
  .feature p { font-size: 16px; }
  .feature::after { font-size: 3.4rem; }
  .feature__body { padding-right: 18px; }

  /* gallery */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; gap: 12px; }
  .gallery__item--wide,
  .gallery__item--tall { grid-column: auto; grid-row: auto; }

  /* testimonials */
  .slide__pair { grid-template-columns: 1fr; gap: 18px; padding: 0 8px; }
  .slide__card { padding: 36px 22px 28px; }
  .slide__card p { font-size: 17px; }
  .slider__btn { width: 38px; height: 38px; }

  /* contact */
  .contact-card { grid-template-columns: 50px 1fr auto; padding: 16px 18px; gap: 14px; }
  .contact-card__icon { width: 44px; height: 44px; font-size: 1rem; }
  .contact-card__body strong { font-size: 16px; }
  .contact-card__body small { font-size: 13px; }
  .contact__form { padding: 30px 22px; }
  .contact__form-head h3 { font-size: 22px; }
  .contact__map { height: 320px; }

  /* footer */
  .footer__cta-inner { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .footer__cta-text h3 { font-size: 1.45rem; }
  .footer__cta-actions { justify-content: center; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    text-align: left;
    padding: 50px 0 40px;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer__col--brand p { margin-left: auto; margin-right: auto; }
  .footer__socials { justify-content: center; }

  .footer__bottom-inner { justify-content: center; text-align: center; flex-direction: column; gap: 12px; }
  .footer__legal { justify-content: center; flex-wrap: wrap; }

  /* modals */
  .modal__dialog { padding: 30px 24px 26px; max-height: 90vh; margin: 4vh auto; width: 94%; }
  .modal__head h3 { font-size: 1.55rem; }
  .modal__body { font-size: 15px; }

  /* Hide round floating buttons on mobile — replaced by sticky action bar */
  .float-wa, .float-call { display: none; }

  /* Show full-width sticky action bar */
  .mobile-actions { display: flex; }
  body { padding-bottom: 64px; }   /* keep content from sitting under the bar */
}

/* ── 640px — medium mobile (modern phones in portrait) ────── */
@media (max-width: 640px) {
  .container { width: 92%; }
  .section { padding: 60px 0; }
  .section__head { margin-bottom: 40px; }
  .section__title { font-size: 28px; }

  /* hero — buttons stack, sub text smaller */
  .hero { height: 82vh; min-height: 480px; }
  .hero-slide__content { padding: 0 18px; }
  .hero-slide__sub { font-size: 22px; }
  .hero-slide__buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-slide__buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
  }
  .hero-nav { width: 38px; height: 38px; font-size: .9rem; }
  .hero-dots { bottom: 18px; }

  /* about */
  .about__media { padding: 0 18px 60px 0; }
  .about__img--main { height: 280px; }
  .about__img--accent { width: 65%; height: 150px; border-width: 5px; }
  .about__experience { padding: 12px 14px; gap: 10px; left: -6px; }
  .about__experience-num { font-size: 1.9rem; }
  .about__experience-label { font-size: 10px; padding-left: 8px; }
  .about__dot-pattern { display: none; }
  .about__cta { flex-direction: column; align-items: stretch; gap: 14px; }
  .about__cta .btn { justify-content: center; }
  .about__phone { justify-content: center; }

  /* services — single column */
  .services__grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card__img { aspect-ratio: 16 / 10; }
  .service-card__actions .btn-mini { padding: 11px 12px; font-size: 15px; }

  /* feature horizontal stays */
  .feature { padding: 22px 18px; gap: 14px; grid-template-columns: 56px 1fr; }
  .feature__icon { width: 56px; height: 56px; font-size: 1.4rem; }
  .feature::after { font-size: 2.8rem; right: 12px; }

  /* gallery */
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 10px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }

  /* testimonials */
  .slider { max-width: 100%; }
  .slide__card { padding: 30px 20px 26px; }
  .slide__card p { font-size: 16px; }
  .slide__card h4 { font-size: 17px; }

  /* contact */
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 26px 18px; }
  .contact-card { padding: 14px 16px; grid-template-columns: 44px 1fr 16px; gap: 12px; }
  .contact-card__icon { width: 40px; height: 40px; font-size: .95rem; border-radius: 10px; }
  .contact-card__body strong { font-size: 14.5px; line-height: 1.3; }
  .contact-card__arrow { font-size: .8rem; }
  .contact__map { height: 280px; }

  /* footer */
  .footer__cta-text h3 { font-size: 1.3rem; }
  .footer__cta-text p { font-size: 14px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; text-align: center; padding: 40px 0 30px; }
  .footer__col { text-align: center; }
  .footer__col h4 { display: block; }
  .footer__col h4::after { left: 50%; transform: translateX(-50%); }
  .footer__col ul a { justify-content: center; }
  .footer__contact li { justify-content: flex-start; max-width: 280px; margin-left: auto; margin-right: auto; }
  .footer__legal li:not(:last-child)::after { margin: 0 10px; }

  /* CTA strip stack */
  .footer__cta-actions { width: 100%; flex-direction: column; }
  .footer__cta-actions .btn { width: 100%; justify-content: center; }

  /* modals */
  .modal__dialog { padding: 26px 20px 22px; }
  .modal__head h3 { font-size: 1.35rem; }
  .modal__body h4 { font-size: 1rem; }
}

/* ── 480px — small mobile ──────────────────────────────────── */
@media (max-width: 480px) {
  html { font-size: 15.5px; }
  .section { padding: 50px 0; }
  .section__title { font-size: 24px; }
  .section__lead { font-size: 15px; }

  .logo__img { width: 56px; height: 44px; }
  .header { padding: 12px 0; }
  .header.scrolled { padding: 8px 0; }

  /* hero compact */
  .hero { height: 78vh; min-height: 440px; }
  .hero-slide__sub { font-size: 19px; }
  .hero-slide__buttons .btn { padding: 12px 16px; font-size: 15px; }
  .hero-nav { width: 34px; height: 34px; }
  .hero-nav--prev { left: 6px; }
  .hero-nav--next { right: 6px; }

  /* services */
  .service-card__body { padding: 22px 18px 18px; }
  .service-card__body h3 { font-size: 19px; }
  .service-card__body > p { font-size: 14.5px; }

  /* about */
  .about__img--main { height: 240px; }
  .about__img--accent { width: 70%; height: 130px; }
  .about__features li { font-size: 15px; }
  .about__stat h3 { font-size: 1.55rem; }
  .about__stat span { font-size: 12px; }

  /* feature */
  .feature { grid-template-columns: 50px 1fr; padding: 18px 16px; gap: 14px; }
  .feature__icon { width: 50px; height: 50px; font-size: 1.2rem; border-radius: 12px; }
  .feature h3 { font-size: 17px; }
  .feature p { font-size: 14.5px; }

  /* contact */
  .contact-card { grid-template-columns: 40px 1fr; padding: 14px 14px; gap: 12px; }
  .contact-card__icon { width: 38px; height: 38px; }
  .contact-card__arrow { display: none; }
  .contact__form { padding: 22px 16px; gap: 12px; }
  .contact__form input,
  .contact__form select,
  .contact__form textarea { padding: 12px 14px 12px 42px; font-size: 14.5px; }
  .field > i { left: 14px; font-size: .85rem; }
  .contact__map { height: 240px; }

  /* footer */
  .footer__cta-strip { padding: 26px 0; }
  .footer__cta-text h3 { font-size: 1.18rem; }
  .footer__contact li { font-size: 14.5px; }
  .footer__copy, .footer__legal a { font-size: 14px; }

  /* modal */
  .modal__dialog { padding: 22px 16px 18px; max-height: 92vh; margin: 3vh auto; width: 96%; }
  .modal__close { width: 32px; height: 32px; top: 10px; right: 10px; }
  .modal__head { margin-bottom: 18px; padding-bottom: 16px; }
  .modal__head h3 { font-size: 1.2rem; }
  .modal__body { font-size: 14.5px; line-height: 1.65; }

  /* Sticky bar slimmer on small phones */
  .mobile-actions__btn { padding: 12px 6px; font-size: 16px; gap: 10px; }
  .mobile-actions__btn i { width: 32px; height: 32px; font-size: 1.1rem; }
  body { padding-bottom: 60px; }
}

/* ── 360px — tiny / older phones ──────────────────────────── */
@media (max-width: 360px) {
  .container { width: 94%; }
  .section { padding: 44px 0; }
  .section__title { font-size: 21px; }

  .hero { min-height: 420px; }
  .hero-slide__sub { font-size: 17px; }

  .about__img--main { height: 200px; }
  .about__img--accent { width: 75%; height: 110px; }

  .service-card__img { aspect-ratio: 16 / 11; }

  .feature { grid-template-columns: 44px 1fr; gap: 12px; padding: 16px 14px; }
  .feature__icon { width: 44px; height: 44px; font-size: 1rem; }

  .contact__form-head h3 { font-size: 1.15rem; }

  .mobile-actions__btn { font-size: 15px; padding: 11px 4px; gap: 8px; }
  .mobile-actions__btn i { width: 30px; height: 30px; font-size: 1rem; border-width: 1.25px; }
}
