/* ═══════════════════════════════════════════════════
   Dr. Aditi Somvanshi — Homeopathy & Ayurveda
   style.css
   ═══════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
/* Fonts are loaded via JS (main.js loadThirdPartyResources) only after cookie consent.
   System font fallbacks are defined in index.html <style> block. */

/* ── CSS VARIABLES ── */
:root {
  --cream: #faf7f2;
  --sage: #7a9e87;
  --sage-light: #a8c4b0;
  --sage-dark: #4e7259;
  --warm-brown: #6b4f3a;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --text-dark: #2a2118;
  --text-mid: #5a4e44;
  --text-light: #9b8e84;
  --white: #ffffff;
  --border: rgba(122, 158, 135, 0.2);
  --shadow: 0 4px 32px rgba(42, 33, 24, 0.08);
  --radius: 12px;
  --transition: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

/* ══════════════════════════════════════
   LANGUAGE BAR
══════════════════════════════════════ */
.lang-bar {
  background: var(--sage-dark);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  padding: 6px 40px;
}

.lang-bar span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin-right: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--sage-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--sage-dark);
}

.nav-cta {
  background: var(--sage-dark);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500 !important;
}

.nav-cta:hover {
  background: var(--sage) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  display: block;
  transition: var(--transition);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(78, 114, 89, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--sage-dark);
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  background: var(--sage-dark);
  color: var(--white);
}

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
section {
  padding: 100px 80px;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.section-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: var(--warm-brown);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge::before {
  content: '✦';
  font-size: 8px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--warm-brown);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--sage-dark);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Right Panel */
.hero-right {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  align-self: stretch;
  min-height: 92vh;
}




.hero-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 180px;
  opacity: 0.15;
  position: absolute;
  user-select: none;
}

.hero-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 220px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  bottom: -20px;
  right: -10px;
  line-height: 1;
  user-select: none;
}

/* Floating cards on hero */
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  font-size: 12px;
}

.hero-card-loc {
  bottom: 60px;
  left: 32px;
}

.hero-card-loc .card-title {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.hero-card-loc .card-sub {
  color: var(--text-light);
}

.hero-card-avail {
  top: 60px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf87;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.2); }
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-visual {
  position: relative;
}

.about-img-container {
  border-radius: 16px;
  height: 420px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
}

.about-doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 2rem;
}

.about-img-placeholder span {
  font-size: 64px;
}

.about-box {
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 16px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  position: relative;
  overflow: hidden;
}

.about-box::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
}

.about-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.about-accent strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
}

.about-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--sage);
}

.credential-item span:first-child {
  font-size: 18px;
}

.credential-item .cred-text {
  font-size: 13px;
  color: var(--text-mid);
}

.credential-item .cred-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 2px;
}

/* ══════════════════════════════════════
   TREATMENTS
══════════════════════════════════════ */
#treatments {
  background: var(--cream);
}

.treatments-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.treatment-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 1;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 33, 24, 0.1);
}

.treatment-card:hover::before {
  transform: scaleX(1);
}

/* Full-width banner image at the top of each treatment card */
.treatment-banner {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.treatment-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.treatment-banner-fallback {
  font-size: 52px;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Text content sits below the banner with its own padding */
.treatment-card .treatment-name,
.treatment-card .treatment-desc {
  padding-left: 28px;
  padding-right: 28px;
}

.treatment-card .treatment-name {
  padding-top: 24px;
}

.treatment-card .treatment-desc {
  padding-bottom: 28px;
}

.treatment-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.treatment-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   BOOKING
══════════════════════════════════════ */
#booking {
  background: var(--sage-dark);
  color: var(--white);
}

#booking .section-label {
  color: var(--gold-light);
}

#booking .section-title {
  color: var(--white);
}

#booking .section-title em {
  color: var(--gold-light);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.booking-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.consult-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consult-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.consult-opt-icon {
  font-size: 24px;
}

.consult-opt-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.consult-opt-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Booking Form */
.booking-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--sage-dark);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--sage);
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--sage-dark);
  font-size: 15px;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: -8px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-fallback {
  font-size: 20px;
  display: none;
}

.avatar-1 { background: #e8f5e9; }
.avatar-2 { background: #fce4ec; }
.avatar-3 { background: #e3f2fd; }

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
#blog {
  background: var(--cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}

.blog-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.blog-thumb-fallback {
  font-size: 60px;
  display: none;
  position: relative;
  z-index: 1;
}

.blog-thumb-1 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.blog-thumb-2 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.blog-thumb-3 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }

.blog-body {
  padding: 24px;
}

.blog-tag {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.blog-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-read-more {
  color: var(--sage-dark);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-read-more:hover {
  color: var(--gold);
}

/* ── BLOG IMAGE UPLOAD SLOT ── */
.blog-img-upload {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.blog-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-upload-icon {
  font-size: 48px;
  opacity: 0.6;
  transition: var(--transition);
}

.blog-upload-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  opacity: 0;
  transition: opacity 0.2s;
  background: rgba(255,255,255,0.75);
  padding: 4px 10px;
  border-radius: 20px;
}

.blog-img-upload:hover .blog-upload-hint {
  opacity: 1;
}

.blog-img-upload:hover .blog-upload-icon {
  transform: scale(1.1);
}

.blog-uploaded-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ── BLOG EXPAND / FULL CONTENT ── */
.blog-full-content {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.8;
  animation: blog-fade-in 0.3s ease;
}

@keyframes blog-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.blog-full-content p {
  margin-bottom: 12px;
}

.blog-full-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.blog-full-content li {
  margin-bottom: 6px;
}

.blog-full-content strong {
  color: var(--text-dark);
}

.blog-full-content em {
  color: var(--sage-dark);
  font-style: italic;
}

/* Read more button (now a button, not a link) */
.blog-footer .blog-read-more {
  background: none;
  border: none;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  font-size: 12px;
}

.blog-card.expanded .blog-read-more {
  color: var(--text-light);
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--sage);
  box-shadow: 0 4px 20px rgba(122, 158, 135, 0.15);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.icon-wa    { background: #e8f5e9; }
.icon-email { background: var(--gold-light); }
.icon-phone { background: #e3f2fd; }
.icon-loc   { background: #fce4ec; }

.contact-method-text strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-method-text span {
  font-size: 13px;
  color: var(--text-light);
}

/* Map placeholder */
.contact-map {
  background: var(--sage-light);
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}

.map-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.map-label span {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}

/* Leaflet map override */
.contact-map--leaflet {
  font-size: 0;       /* remove the 60px emoji sizing */
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}

/* Keep Leaflet attribution readable */
.contact-map--leaflet .leaflet-control-attribution {
  font-size: 10px;
}

/* Hours box */
.hours-box {
  margin-top: 24px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hours-box p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

.hours-box strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 14px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 80px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social:hover {
  border-color: var(--gold);
  background: var(--gold);
}

/* ══════════════════════════════════════
   WHATSAPP FLOAT BUTTON
══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: bounce-in 0.6s 1s both;
}

@keyframes bounce-in {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to   { transform: scale(1) rotate(0);       opacity: 1; }
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ══════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--sage-dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: var(--shadow);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  max-width: 280px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1100px)
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  section {
    padding: 70px 24px;
  }

  nav {
    padding: 0 24px;
  }

  .lang-bar {
    padding: 6px 24px;
  }

  /* Mobile nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  #hero {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 24px 32px;
  }

  .hero-right {
    height: 300px;
    min-height: unset;
    align-self: auto;
  }

  .hero-monogram {
    font-size: 140px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  /* Grids */
  .about-grid,
  .booking-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .treatments-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  footer {
    padding: 50px 24px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Treatments header */
  .treatments-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-card {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
  }
}
/* ═══════════════════════════════════════
   COOKIE CONSENT BANNER
════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2c2c2c;
  color: #f0f0f0;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 13px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  display: none; /* shown by JS if not yet accepted */
}
.cookie-banner.visible {
  display: block;
}
.cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  min-width: 220px;
}
.cookie-banner-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #fff;
}
.cookie-banner-text p {
  margin: 0;
  line-height: 1.5;
  color: #ccc;
}
.cookie-banner-text a {
  color: #a8d5a2;
  text-decoration: underline;
}
.cookie-banner-text code {
  background: rgba(255,255,255,0.1);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 12px;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept {
  background: #4e7259;
  color: #fff;
}
.cookie-btn-decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}

/* ═══════════════════════════════════════
   CONSENT WITHDRAWAL MODAL
════════════════════════════════════════ */
.consent-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 10000;
}
.consent-modal-overlay.visible { display: block; }
.consent-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  background: #fff;
  border-radius: 8px;
  padding: 36px 32px 28px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  font-family: 'DM Sans', Arial, sans-serif;
}
.consent-modal.visible { display: block; }
.consent-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  line-height: 1;
}
.consent-modal-close:hover { color: #333; }

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}