/* ════════════════════════════════════════════════════════
   DEEP STREAM AYUR – MAIN STYLESHEET
   ════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --clr-primary:       #3d5a2e;
  --clr-primary-dark:  #2a3f1f;
  --clr-primary-light: #5a8040;
  --clr-accent:        #c9a84c;
  --clr-accent-light:  #e2c97a;
  --clr-cream:         #f7f2e8;
  --clr-cream-dark:    #ede5d3;
  --clr-white:         #ffffff;
  --clr-text:          #2c2c2c;
  --clr-text-light:    #6b6b6b;
  --clr-border:        #ddd6c4;
  --clr-whatsapp:      #25d366;

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.14);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--clr-text); background: var(--clr-white); line-height: 1.65; }
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── CONTAINER ──────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.6rem; border-radius: var(--radius-sm);
  font-family: var(--ff-body); font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer;
}
.btn--primary {
  background: var(--clr-primary); color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(61,90,46,.35);
}
.btn--primary:hover { background: var(--clr-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,90,46,.45); }

.btn--book {
  background: var(--clr-primary); color: var(--clr-white);
  padding: .65rem 1.3rem; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  white-space: nowrap;
}
.btn--book:hover { background: var(--clr-primary-dark); }

.btn--whatsapp {
  background: var(--clr-whatsapp); color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn--whatsapp:hover { filter: brightness(1.1); transform: translateY(-2px); }

.btn--outline-dark {
  background: transparent; color: var(--clr-primary);
  border: 2px solid var(--clr-primary); padding: .75rem 1.8rem;
}
.btn--outline-dark:hover { background: var(--clr-primary); color: var(--clr-white); }

.btn--outline-light {
  background: transparent; color: var(--clr-white);
  border: 2px solid var(--clr-white); padding: .72rem 1.6rem;
}
.btn--outline-light:hover { background: var(--clr-white); color: var(--clr-primary); }

.btn--sm { padding: .55rem 1.2rem; font-size: .78rem; }

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--clr-primary-dark); color: rgba(255,255,255,.85);
  font-size: .78rem; padding: .45rem 0;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar__left  { display: flex; gap: 1.4rem; }
.topbar__right { display: flex; align-items: center; gap: 1rem; }
.topbar__left span, .topbar__right span { display: flex; align-items: center; gap: .4rem; }
.topbar__left i, .topbar__right i { color: var(--clr-accent); }

/* ── HEADER ─────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner { display: flex; align-items: center; gap: 1rem; padding: .75rem 1.5rem; max-width: 1320px; margin: 0 auto; }

/* ── LOGO ───────────────────────────────────────────────── */
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo__img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  min-width: 140px;
}
.logo__img--footer {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: .45rem .8rem;
  margin-bottom: .8rem;
}

/* ── NAV ────────────────────────────────────────────────── */
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .25rem; }
.nav__item--dropdown { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem .65rem; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 500; color: var(--clr-text);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  color: var(--clr-primary); background: rgba(61,90,46,.07);
}
.nav__link .fa-chevron-down { font-size: .65rem; transition: var(--transition); }
.nav__item--dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

/* dropdown */
.dropdown {
  position: absolute; top: calc(100% + .5rem); left: 0;
  background: var(--clr-white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 200px; z-index: 100;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: var(--transition); border: 1px solid var(--clr-border);
}
.nav__item--dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown li a {
  display: block; padding: .65rem 1.1rem; font-size: .875rem;
  color: var(--clr-text); transition: var(--transition); border-radius: 0;
}
.dropdown li:first-child a { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.dropdown li:last-child  a { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.dropdown li a:hover { background: var(--clr-cream); color: var(--clr-primary); }

.header__actions { display: flex; align-items: center; gap: .75rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: var(--transition); }

/* ── LANGUAGE TOGGLE ─────────────────────────────────────── */
.lang-toggle { display: inline-flex; align-items: center; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .6rem; border-radius: var(--radius-sm);
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  color: var(--clr-primary); background: rgba(61,90,46,.08);
  border: 1px solid rgba(61,90,46,.2); transition: var(--transition);
  flex-shrink: 0; white-space: nowrap;
}
.lang-btn:hover { background: var(--clr-primary); color: var(--clr-white); }
.lang-label { font-size: .72rem; font-weight: 700; }

/* Mobile nav Book Now CTA */
.nav__mobile-cta { display: none; padding: 1.5rem 0 .5rem; }

/* ── HEADER CONTACT BUTTONS ─────────────────────────────── */
.header__contacts {
  display: flex; align-items: center; gap: .6rem;
  margin-left: auto; /* push contacts + actions right */
}
.hdr-contact {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem .85rem; border-radius: 50px;
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  transition: var(--transition); white-space: nowrap;
  border: 1.5px solid transparent;
}
.hdr-contact i { font-size: .82rem; }
/* Phone call – green outlined */
.hdr-contact--call {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
  background: rgba(61,90,46,.06);
}
.hdr-contact--call:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(61,90,46,.3);
}
/* WhatsApp – green solid */
.hdr-contact--wa {
  color: var(--clr-white);
  background: var(--clr-whatsapp);
  border-color: var(--clr-whatsapp);
}
.hdr-contact--wa:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
}

/* Mobile nav contact links */
.nav__mobile-contacts {
  display: none;
  flex-direction: column; gap: .6rem;
  padding: 1.2rem 0 .8rem;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: .5rem;
}
.nav__contact-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem; border-radius: var(--radius-sm);
  font-size: .92rem; font-weight: 600;
  transition: var(--transition);
}
.nav__contact-link--call {
  color: var(--clr-primary);
  background: rgba(61,90,46,.06);
  border: 1.5px solid var(--clr-primary);
}
.nav__contact-link--wa {
  color: var(--clr-white);
  background: var(--clr-whatsapp);
}
.nav__contact-link i { font-size: 1.1rem; }


/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--clr-cream);
  min-height: 85vh;
  display: flex;
  align-items: stretch;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: 100%;
  align-items: stretch;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem max(1.5rem, calc((100vw - 1240px) / 2 + 1.5rem));
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-primary-dark);
  margin-bottom: 0.8rem;
}
.hero__title-leaf {
  font-size: 1.6rem;
  color: var(--clr-primary-light);
  transform: rotate(30deg);
  display: inline-block;
  vertical-align: super;
  margin-left: 0.3rem;
  opacity: 0.8;
}
.hero__subtitle {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 600;
  color: #a1823a; /* Beautiful warm gold matching screenshot */
  margin-bottom: 1rem;
}
.hero__desc {
  font-size: 0.95rem;
  color: var(--clr-text-light);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}
.hero__feature-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(61,90,46,0.3);
  background: rgba(61,90,46,0.05);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.hero__feature:hover .hero__feature-circle {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(61,90,46,0.2);
}
.hero__feature-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-primary-dark);
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.btn--hero {
  border-radius: 4px;
  padding: 0.85rem 1.8rem;
}
.btn--outline-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  color: var(--clr-whatsapp);
  border: 2px solid var(--clr-whatsapp);
  transition: var(--transition);
}
.btn--outline-whatsapp:hover {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,211,102,0.25);
}

/* Right side Image wrapper */
.hero__image-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--clr-cream) 0%, rgba(247,242,232,0.8) 5%, transparent 20%);
  pointer-events: none;
}
.hero__card {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: rgba(42, 63, 31, 0.9); /* Dark olive glassmorphism card */
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 360px;
  color: var(--clr-white);
  z-index: 10;
}
.hero__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: var(--clr-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero__card strong {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-white);
  display: block;
  margin-bottom: 0.3rem;
}
.hero__card ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero__card ul li {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__card ul li i {
  color: var(--clr-accent);
  font-size: 0.8rem;
}

/* Decorative leaves */
.hero__leaf { position: absolute; color: var(--clr-primary); opacity: .06; font-size: 8rem; pointer-events: none; }
.hero__leaf--1 { top: -1rem; left: -2rem; transform: rotate(-30deg); font-size: 12rem; }
.hero__leaf--2 { bottom: 2rem; right: 10rem; transform: rotate(60deg); font-size: 10rem; }

/* ── SECTION COMMONS ────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header__leaf { color: var(--clr-accent); font-size: 1.4rem; margin-bottom: .5rem; }
.section-title {
  font-family: var(--ff-heading); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--clr-primary-dark);
  letter-spacing: .01em;
  display: block;
}
/* ── Headline ornament: ─── 🍃 ─── */
.section-title::before { content: none; }
.section-title::after {
  content: '';
  display: block;
  width: 200px;
  height: 16px;
  margin: .85rem auto 0;
  background:
    /* leaf SVG centered */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%233d5a2e' d='M17 8C8 10 5.9 16.17 3.82 19.68L5.71 21l1-1.29C7.29 19 8.5 18 10 17c3-1 4-2 6-5l-1 8c1-1 2-5 2-8 0-1 1-2 1-3 0 0-1 1-2 1z'/%3E%3C/svg%3E") center center / 14px 14px no-repeat,
    /* two flanking lines with gap in middle */
    linear-gradient(90deg,
      transparent 0%, var(--clr-accent) 5%,
      var(--clr-accent) 41%, transparent 41%,
      transparent 59%, var(--clr-accent) 59%,
      var(--clr-accent) 95%, transparent 100%
    ) 0 50% / 100% 1px no-repeat;
}
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── TREATMENT CARDS ────────────────────────────────────── */
.treatments-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}
.treatment-card {
  position: relative; background: var(--clr-white);
  border-radius: var(--radius-md); padding: 1.8rem 1.2rem;
  text-align: center; border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  cursor: default;
}
.treatment-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary); background: var(--clr-cream);
}
.treatment-card__badge {
  position: absolute; top: -.5rem; right: 1rem;
  padding: .2rem .7rem; border-radius: 20px;
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
}
.badge--hot { background: #e74c3c; color: #fff; }
.badge--new { background: var(--clr-accent); color: #fff; }

.treatment-card__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  color: var(--clr-white); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(61,90,46,.25);
  transition: var(--transition);
}
.treatment-card:hover .treatment-card__icon { transform: scale(1.1); }
.treatment-card__name { font-family: var(--ff-heading); font-size: 1rem; font-weight: 600; color: var(--clr-primary-dark); margin-bottom: .3rem; }
.treatment-card__duration { font-size: .78rem; color: var(--clr-text-light); margin-bottom: .4rem; }
.treatment-card__price { font-size: 1.5rem; font-weight: 700; color: var(--clr-primary); margin-bottom: .6rem; line-height: 1; }
.treatment-card__price .currency { font-size: .9rem; font-weight: 400; }
.treatment-card__desc { font-size: .78rem; color: var(--clr-text-light); line-height: 1.55; }

/* ── AYURVEDIC SECTION ──────────────────────────────────── */
.ayurvedic-section { background: var(--clr-cream); }

.treatment-tabs {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 1.5rem; background: var(--clr-white);
  padding: .6rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.tab-btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 500; color: var(--clr-text-light);
  transition: var(--transition); border: none; background: none; cursor: pointer;
}
.tab-btn:hover { color: var(--clr-primary); background: var(--clr-cream); }
.tab-btn.active { background: var(--clr-primary); color: var(--clr-white); box-shadow: 0 4px 12px rgba(61,90,46,.3); }
.tab-btn i { font-size: .8rem; }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.pricing-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pricing-table table { width: 100%; border-collapse: collapse; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.pricing-table thead tr { background: var(--clr-primary); color: var(--clr-white); }
.pricing-table thead th { padding: .85rem 1rem; text-align: left; font-size: .82rem; font-weight: 600; letter-spacing: .03em; }
.pricing-table tbody tr { border-bottom: 1px solid var(--clr-border); background: var(--clr-white); transition: background .2s; }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--clr-cream); }
.pricing-table tbody td { padding: .7rem 1rem; font-size: .85rem; color: var(--clr-text); }
.pricing-table tbody td:first-child { font-weight: 500; }

/* ── COMBO SECTION ──────────────────────────────────────── */
.combo-section { background: var(--clr-white); }
.combo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1.4rem; }

.combo-card {
  position: relative; background: var(--clr-white);
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--clr-border); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.combo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--clr-accent); }

.combo-card__save {
  position: absolute; top: .75rem; left: .75rem; z-index: 2;
  background: var(--clr-accent); color: var(--clr-white);
  padding: .25rem .75rem; border-radius: 20px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
}
.combo-card__img-wrap { position: relative; height: 150px; overflow: hidden; }
.combo-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.combo-card:hover .combo-card__img-wrap img { transform: scale(1.08); }
.combo-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,90,46,.5), transparent);
  display: flex; align-items: flex-end; padding: .7rem;
}
.combo-card__icons { display: flex; gap: .4rem; }
.combo-card__icons i { color: rgba(255,255,255,.9); font-size: .9rem; }
.combo-card__body { padding: .9rem 1rem 1.2rem; }
.combo-card__name { font-size: .82rem; font-weight: 600; color: var(--clr-primary-dark); margin-bottom: .5rem; line-height: 1.35; }
.combo-card__pricing { display: flex; align-items: center; gap: .6rem; margin-bottom: .75rem; }
.combo-card__old { font-size: .8rem; color: var(--clr-text-light); text-decoration: line-through; }
.combo-card__new { font-size: 1.1rem; font-weight: 700; color: var(--clr-primary); }

/* ── CUSTOMIZE BANNER ───────────────────────────────────── */
.customize-banner {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
  padding: 1.4rem 0;
}
.customize-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.customize-banner p { color: var(--clr-white); font-size: .95rem; font-weight: 500; display: flex; align-items: center; gap: .6rem; }
.customize-banner p i { color: var(--clr-accent); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--clr-primary-dark); color: rgba(255,255,255,.8); padding: 4rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer__col .logo__img--footer { display: block; }
.footer__logo { display: block; margin-bottom: 1rem; }
.footer__about { font-size: .83rem; line-height: 1.8; color: rgba(255,255,255,.65); }

.footer__heading { font-family: var(--ff-heading); font-size: 1rem; font-weight: 600; color: var(--clr-white); margin-bottom: 1.1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--clr-accent); display: inline-block; }
.footer__links li { margin-bottom: .5rem; }
.footer__links a { font-size: .84rem; color: rgba(255,255,255,.65); transition: color .2s; display: flex; align-items: center; gap: .4rem; }
.footer__links a::before { content: '›'; color: var(--clr-accent); }
.footer__links a:hover { color: var(--clr-accent); }

.footer__contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: .83rem; color: rgba(255,255,255,.65); margin-bottom: .55rem; }
.footer__contact i { color: var(--clr-accent); margin-top: .15rem; flex-shrink: 0; }
.footer__contact a:hover { color: var(--clr-accent); }

.footer__social { display: flex; gap: .6rem; margin-bottom: 1.2rem; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--transition);
}
.social-icon--fb     { background: #1877f2; color: #fff; }
.social-icon--ig     { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-icon--yt     { background: #ff0000; color: #fff; }
.social-icon--google { background: #ffffff; color: #ea4335; }
.social-icon:hover   { transform: translateY(-3px); box-shadow: 0 4px 16px rgba(0,0,0,.3); }

.footer__rating { background: rgba(255,255,255,.07); border-radius: var(--radius-sm); padding: .8rem 1rem; border: 1px solid rgba(255,255,255,.1); }
.rating__logo { display: flex; align-items: center; gap: .4rem; color: var(--clr-white); font-size: .85rem; font-weight: 600; margin-bottom: .3rem; }
.rating__logo i { color: #00aa6c; font-size: 1.1rem; }
.rating__badge { font-size: .72rem; color: var(--clr-accent); font-weight: 600; margin-bottom: .4rem; }
.rating__stars { display: flex; align-items: center; gap: .35rem; font-size: .78rem; }
.rating__stars i { color: #f5c518; font-size: .85rem; }
.rating__stars strong { color: var(--clr-white); }
.footer__rating small { font-size: .72rem; color: rgba(255,255,255,.45); display: block; margin-top: .3rem; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; }
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: .5rem;
}
.footer__bottom-inner a {
  color: rgba(255,255,255,.6);
  text-decoration: underline;
  transition: var(--transition);
}
.footer__bottom-inner a:hover {
  color: var(--clr-accent);
}


/* ── WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--clr-whatsapp); color: var(--clr-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition); animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.8); }
}

/* ── GALLERY ────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 1rem; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay { position: absolute; inset: 0; background: rgba(61,90,46,.5); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ── CONTACT ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form { background: var(--clr-white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--clr-text); margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm); font-family: var(--ff-body); font-size: .9rem;
  color: var(--clr-text); background: var(--clr-white); transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--clr-primary); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-card { display: flex; align-items: flex-start; gap: 1rem; background: var(--clr-cream); border-radius: var(--radius-md); padding: 1.2rem; }
.contact-info-card__icon { width: 42px; height: 42px; border-radius: 50%; background: var(--clr-primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card h4 { font-size: .85rem; font-weight: 700; color: var(--clr-primary-dark); margin-bottom: .2rem; }
.contact-info-card p { font-size: .83rem; color: var(--clr-text-light); }
.contact-info-card a:hover { color: var(--clr-primary); }

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-hero { background: linear-gradient(135deg, var(--clr-cream) 0%, #e8f0e0 100%); padding: 6rem 0 4rem; text-align: center; }
.about-hero h1 {
  font-family: var(--ff-heading); font-size: clamp(2rem,4vw,3rem); color: var(--clr-primary-dark);
  display: inline-block;
}
.about-hero h1::before { content: none; }
.about-hero h1::after {
  content: '';
  display: block;
  width: 200px;
  height: 16px;
  margin: .8rem auto 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%233d5a2e' d='M17 8C8 10 5.9 16.17 3.82 19.68L5.71 21l1-1.29C7.29 19 8.5 18 10 17c3-1 4-2 6-5l-1 8c1-1 2-5 2-8 0-1 1-2 1-3 0 0-1 1-2 1z'/%3E%3C/svg%3E") center center / 14px 14px no-repeat,
    linear-gradient(90deg, transparent 0%, var(--clr-accent) 5%, var(--clr-accent) 41%, transparent 41%, transparent 59%, var(--clr-accent) 59%, var(--clr-accent) 95%, transparent 100%) 0 50% / 100% 1px no-repeat;
}
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-content img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.stat-card { text-align: center; background: var(--clr-cream); border-radius: var(--radius-md); padding: 1.8rem 1rem; }
.stat-card__number { font-family: var(--ff-heading); font-size: 2.5rem; font-weight: 700; color: var(--clr-primary); }
.stat-card__label { font-size: .82rem; color: var(--clr-text-light); margin-top: .2rem; }

/* ── FLASH MESSAGES ─────────────────────────────────────── */
.flash-msg { padding: 1rem 1.4rem; border-radius: var(--radius-sm); margin: 1rem 0; display: flex; align-items: center; gap: .7rem; font-size: .9rem; }
.flash-msg--success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.flash-msg--error   { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }

/* ── PAGE HERO (Inner pages) ────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%); padding: 4rem 0; text-align: center; color: var(--clr-white); }
.page-hero h1 {
  font-family: var(--ff-heading); font-size: clamp(1.8rem,3vw,2.8rem); margin-bottom: .5rem;
  display: inline-block;
}
.page-hero h1::before { content: none; }
.page-hero h1::after {
  content: '';
  display: block;
  width: 200px;
  height: 16px;
  margin: .7rem auto 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e2c97a' d='M17 8C8 10 5.9 16.17 3.82 19.68L5.71 21l1-1.29C7.29 19 8.5 18 10 17c3-1 4-2 6-5l-1 8c1-1 2-5 2-8 0-1 1-2 1-3 0 0-1 1-2 1z'/%3E%3C/svg%3E") center center / 14px 14px no-repeat,
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.55) 5%, rgba(255,255,255,.55) 41%, transparent 41%, transparent 59%, rgba(255,255,255,.55) 59%, rgba(255,255,255,.55) 95%, transparent 100%) 0 50% / 100% 1px no-repeat;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: .95rem; }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.6); margin-top: .8rem; }
.breadcrumb a { color: var(--clr-accent); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ──── 1300px: fix header crowding ──────────────────────── */
@media (max-width: 1300px) {
  .header__inner { gap: 1rem; padding: .7rem 1rem; }
  .nav__link { padding: .55rem .6rem; }
  .hdr-contact__num { display: none; }
  .hdr-contact { padding: .5rem; border-radius: 50%; width: 36px; height: 36px; justify-content: center; }
}

/* ──── 1200px: large tablets / small laptops ─────────────── */
@media (max-width: 1200px) {
  .hero__content {
    padding: 4rem 3rem 4rem max(1.5rem, calc((100vw - 1240px) / 2 + 1.5rem));
  }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}

/* ──── 1024px: tablets landscape ────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-tables { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 2rem; }

  /* Hero stacks vertically */
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content {
    padding: 4rem 2rem;
    align-items: center;
    text-align: center;
  }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__features { justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
  .hero__actions { justify-content: center; flex-wrap: wrap; }
  .hero__image-wrap { height: 420px; }
  .hero__image-fade {
    background: linear-gradient(to bottom, var(--clr-cream) 0%, rgba(247,242,232,0.8) 5%, transparent 25%);
  }
  .hero__card {
    right: 50%;
    transform: translateX(50%);
    bottom: 1.5rem;
    width: 92%;
    max-width: 340px;
  }

  /* Treatments */
  .treatment-tabs { flex-wrap: wrap; }
  .tab-btn { font-size: .78rem; padding: .5rem .85rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

/* ──── 768px: tablets portrait / large phones ────────────── */
@media (max-width: 768px) {
  /* Topbar */
  .topbar { padding: .3rem 0; }
  .topbar__left { display: none; }
  .topbar__right { margin-left: auto; }
  .topbar__inner { justify-content: flex-end; }

  /* Header */
  .header__inner {
    padding: .6rem .9rem;
    gap: .75rem;
    flex-wrap: nowrap;
  }
  .logo {
    gap: .5rem;
    flex-shrink: 1;
    min-width: 0;
    max-width: 55%;
  }
  .logo__img { height: 48px; max-width: 160px; }

  /* header actions – push to right (contacts hidden on mobile) */
  .header__actions {
    margin-left: auto;
    flex-shrink: 0;
    gap: .5rem;
  }

  /* Hide desktop contact buttons on mobile */
  .header__contacts { display: none; }

  /* Mobile nav */
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 58px;
    background: var(--clr-white);
    z-index: 999;
    padding: 1rem 1.5rem 2rem;
    overflow-y: auto;
    border-top: 1px solid var(--clr-border);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; flex-direction: column; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link {
    padding: .9rem 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: .95rem;
  }
  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    pointer-events: all;
    transform: none;
    border: none;
    background: var(--clr-cream);
    border-radius: 0;
    min-width: unset;
  }
  .dropdown li a { padding: .6rem 1.5rem; font-size: .88rem; }
  .hamburger { display: flex; flex-shrink: 0; }
  .header__actions .btn--book { display: none; }

  /* Show contact links inside open mobile nav */
  .nav.open .nav__mobile-contacts { display: flex; }

  /* Language toggle – keep visible, hide text label */
  .lang-label { display: none; }
  .lang-btn { padding: .28rem .42rem; font-size: .7rem; }

  /* Topbar hours hidden on mobile */
  .topbar__hours { display: none; }

  /* Mobile nav Book Now shown */
  .nav.open .nav__mobile-cta { display: block; }

  /* Hero */
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content {
    padding: 3rem 1.5rem;
    align-items: center;
    text-align: center;
  }
  .hero__title { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .hero__subtitle { font-size: 1.05rem; }
  .hero__desc { font-size: .9rem; max-width: 100%; }
  .hero__features { justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
  .hero__feature-circle { width: 46px; height: 46px; font-size: 1rem; }
  .hero__feature-text { font-size: .72rem; }
  .hero__actions { justify-content: center; flex-wrap: wrap; gap: .9rem; }
  .hero__image-wrap { height: 300px; }
  .hero__image-fade {
    background: linear-gradient(to bottom, var(--clr-cream) 0%, rgba(247,242,232,0.6) 10%, transparent 30%);
  }
  .hero__card {
    right: 50%;
    transform: translateX(50%);
    bottom: 1rem;
    width: 90%;
    max-width: 310px;
    padding: 1rem 1.2rem;
  }

  /* Sections */
  .section { padding: 3.5rem 0; }
  .section-title { font-size: clamp(1.5rem, 4.5vw, 2rem); }

  /* Treatment tabs scrollable */
  .treatment-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: .5rem;
    gap: .4rem;
  }
  .treatment-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; font-size: .76rem; padding: .5rem .9rem; }

  /* Treatment grid */
  .treatments-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .treatment-card { padding: 1.4rem .9rem; }
  .treatment-card__icon { width: 50px; height: 50px; font-size: 1.15rem; }

  /* Pricing tables */
  .pricing-tables { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-table tbody td { padding: .6rem .7rem; font-size: .8rem; }
  .pricing-table thead th { padding: .7rem .7rem; font-size: .78rem; }

  /* Combos */
  .combo-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .combo-card__img-wrap { height: 130px; }

  /* Customize banner */
  .customize-banner__inner { flex-direction: column; text-align: center; gap: 1rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.8rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 3rem 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: .4rem; }

  /* About */
  .about-hero { padding: 4rem 0 2.5rem; }
  .about-content { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Page Hero */
  .page-hero { padding: 3rem 0; }
  .page-hero h1 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* WhatsApp float */
  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 48px; height: 48px; font-size: 1.35rem; }
}

/* ──── 480px: small phones ───────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  /* Hero */
  .hero__content { padding: 2.5rem 1rem; }
  .hero__title { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .hero__features { gap: 1rem; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__image-wrap { height: 250px; }
  .hero__card { padding: .8rem 1rem; }
  .hero__card strong { font-size: .85rem; }
  .hero__card ul li { font-size: .7rem; }

  /* Treatments */
  .treatments-grid { grid-template-columns: 1fr; }
  .treatment-card { padding: 1.3rem 1rem; }

  /* Combos */
  .combo-grid { grid-template-columns: 1fr; }
  .combo-card__img-wrap { height: 180px; }
  .combo-card__body { padding: 1rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }

  /* About */
  .about-stats { grid-template-columns: 1fr; }
  .stat-card__number { font-size: 2rem; }

  /* Footer */
  .footer__grid { gap: 1.5rem; }

  /* Pricing table horizontal scroll on tiny screens */
  .pricing-table { overflow-x: auto; }
  .pricing-table table { min-width: 320px; }

  /* Topbar */
  .topbar { font-size: .7rem; }
  .topbar__right span { gap: .25rem; }
  .lang-btn { padding: .25rem .4rem; font-size: .68rem; }

  /* Treatment tabs */
  .tab-btn { font-size: .72rem; padding: .45rem .75rem; }

  /* Section */
  .section { padding: 2.8rem 0; }
  .section-title { font-size: 1.5rem; }
}

/* ──── 360px: very small phones ─────────────────────────── */
@media (max-width: 360px) {
  .hero__title { font-size: 1.55rem; }
  .hero__subtitle { font-size: .95rem; }
  .header__inner { padding: .5rem .75rem; gap: .5rem; }
  .logo__img { height: 36px; }
  .hamburger span { width: 20px; }
  .lang-btn { padding: .22rem .36rem; }
  .lang-btn img { width: 14px; }
  .btn--hero, .btn--outline-whatsapp { font-size: .78rem; padding: .7rem 1.2rem; }
  .contact-form { padding: 1.4rem 1rem; }
}

