/* ===== VARIABLES & RESET ===== */
:root {
  --white: #ffffff;
  --blush: #f5e6e0;
  --blush-dark: #edd5cb;
  --rose: #b5748a;
  --rose-dark: #9a5f75;
  --rose-light: #c98fa3;
  --text-dark: #2d1f27;
  --text-mid: #6b4c58;
  --text-light: #a07585;
  --bg-light: #fdf8f6;
  --font-heading: 'Playfair Display', serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 4px 24px rgba(181,116,138,0.12);
  --shadow-hover: 0 12px 40px rgba(181,116,138,0.25);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-light); color: var(--text-dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-pre {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light .section-title,
.section-header.light .section-pre,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-pre { color: rgba(255,255,255,0.8); }

.elegant-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 16px auto; width: fit-content;
}
.elegant-divider span {
  display: block; height: 1px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--rose));
}
.elegant-divider span:last-child {
  background: linear-gradient(90deg, var(--rose), transparent);
}
.elegant-divider i { color: var(--rose); font-size: 0.65rem; }
.elegant-divider.light span { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6)); }
.elegant-divider.light span:last-child { background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent); }
.elegant-divider.light i { color: rgba(255,255,255,0.8); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white; padding: 15px 34px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.03em;
  box-shadow: 0 6px 24px rgba(181,116,138,0.4);
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(181,116,138,0.5);
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
}
.btn-large { padding: 18px 40px; font-size: 1rem; }

.logo-script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(181,116,138,0.12);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  transition: var(--transition);
}
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-dark);
  position: relative; transition: var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--rose);
  transition: var(--transition);
}
.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: var(--rose); color: white;
  padding: 9px 22px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--rose-dark); transform: translateY(-2px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--rose); border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,248,245,0.85) 0%, rgba(245,230,224,0.7) 100%), url('hero-bg.png') center/cover no-repeat;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(181,116,138,0.1) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 70%, rgba(245,230,224,0.8) 0%, transparent 60%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(181,116,138,0.15);
  animation: floatUp linear infinite;
}
.hero-content { position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 700px; }
.hero-pre {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 16px; opacity: 0;
  animation: fadeUp 0.8s forwards 0.2s;
}
.hero-title {
  font-family: var(--font-script); font-size: clamp(3rem, 10vw, 5.5rem);
  color: var(--rose-dark); font-weight: 700; line-height: 1.1;
  opacity: 0; animation: fadeUp 0.9s forwards 0.4s;
  text-shadow: 0 2px 30px rgba(181,116,138,0.2);
}
.hero-divider {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin: 20px 0;
  opacity: 0; animation: fadeUp 0.8s forwards 0.6s;
}
.hero-divider span {
  display: block; height: 1px; width: 80px;
  background: linear-gradient(90deg, transparent, var(--rose-light));
}
.hero-divider span:last-child { background: linear-gradient(90deg, var(--rose-light), transparent); }
.hero-divider i { color: var(--rose); font-size: 0.6rem; }
.hero-tagline {
  font-family: var(--font-heading); font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-mid); font-style: italic; letter-spacing: 0.05em;
  margin-bottom: 12px; opacity: 0; animation: fadeUp 0.8s forwards 0.7s;
}
.hero-sub {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.6;
  margin-bottom: 36px; opacity: 0; animation: fadeUp 0.8s forwards 0.85s;
}
.hero-content .btn-primary { opacity: 0; animation: fadeUp 0.8s forwards 1s; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); }
.scroll-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(181,116,138,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); font-size: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; display: flex; justify-content: center; }
.about-image-frame {
  width: 320px; height: 420px; border-radius: 200px 200px 160px 160px;
  background: linear-gradient(160deg, var(--blush), var(--blush-dark));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(181,116,138,0.35);
  border: 5px solid rgba(255,255,255,0.9);
  outline: 2px solid rgba(181,116,138,0.2);
}
.about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: contrast(1.05) saturate(1.15) brightness(1.03);
}
.about-image-frame:hover .about-photo {
  transform: scale(1.05);
}
.about-badge {
  position: absolute; bottom: 30px; right: -20px;
  background: white; border-radius: 50px;
  padding: 12px 20px; display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow); font-size: 0.8rem; font-weight: 600;
  color: var(--rose);
}
.about-badge i { font-size: 1rem; }
.about-text { }
.about-intro {
  font-family: var(--font-heading); font-size: 1.1rem;
  color: var(--text-dark); line-height: 1.8; margin: 20px 0 16px;
}
.about-intro strong { color: var(--rose); }
.about-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.about-stats {
  display: flex; gap: 32px; margin-bottom: 32px;
  padding: 24px; background: var(--bg-light); border-radius: var(--radius);
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700; color: var(--rose);
}
.stat-label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }
.about-arabic {
  padding: 20px 24px; background: linear-gradient(135deg, var(--blush), rgba(245,230,224,0.5));
  border-radius: var(--radius); border-right: 4px solid var(--rose);
  direction: rtl; text-align: right;
}
.about-arabic p { color: var(--text-mid); line-height: 2; font-size: 0.9rem; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--blush) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white); border-radius: 20px;
  padding: 36px 28px; position: relative; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose-light), var(--rose-dark));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { transform: scaleX(1); }
.card-icon-wrap { margin-bottom: 20px; }
.card-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blush), var(--blush-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--rose);
  transition: var(--transition);
}
.service-card:hover .card-icon {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white; transform: scale(1.1) rotate(-5deg);
}
.card-title {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 600; color: var(--text-dark); margin-bottom: 16px;
}
.card-list { display: flex; flex-direction: column; gap: 12px; }
.card-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--text-mid); line-height: 1.5;
}
.card-list li i { color: var(--rose); font-size: 0.5rem; margin-top: 6px; flex-shrink: 0; }
.card-list li span { display: block; flex: 1; }

.section-desc-ar {
  color: var(--text-light); font-size: 0.95rem; margin-top: 6px; font-weight: 500;
}
.card-ar {
  font-size: 0.9rem; color: var(--rose-light); margin-top: -12px; margin-bottom: 16px; font-weight: 500;
}
em.ar {
  display: block; font-style: normal; color: var(--text-light); font-size: 0.8rem; margin-top: 2px;
}

/* Service Card Wide (Approche Médicale) */
.service-card--wide { grid-column: 1 / -1; }
.card-wide-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
  margin-top: 20px;
}
.card-wide-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: linear-gradient(135deg, var(--bg-light), white);
  border-radius: 16px; border: 1px solid rgba(181,116,138,0.1);
  transition: var(--transition);
}
.card-wide-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-wide-item i { color: var(--rose); font-size: 1.4rem; margin-top: 4px; }
.card-wide-item strong { display: block; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; }
.card-wide-item span.ar { display: block; font-size: 0.85rem; color: var(--text-mid); }


/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.why-card {
  text-align: center; padding: 44px 32px;
  background: linear-gradient(160deg, var(--bg-light), var(--blush));
  border-radius: 20px; transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(181,116,138,0.35);
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1); box-shadow: 0 12px 32px rgba(181,116,138,0.45); }
.why-card h3 {
  font-family: var(--font-heading); font-size: 1.1rem;
  color: var(--text-dark); margin-bottom: 12px; font-weight: 600;
}
.why-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ===== PRODUITS ===== */
.products {
  padding: 100px 0; background: var(--white);
}
.product-category { margin-bottom: 60px; }
.product-category:last-child { margin-bottom: 0; }
.category-title {
  font-family: var(--font-heading); font-size: 1.8rem;
  color: var(--rose-dark); margin-bottom: 30px;
  text-align: center; position: relative;
}
.category-title::after {
  content: ''; display: block; width: 60px; height: 2px;
  background: var(--rose); margin: 12px auto 0;
}
.products-grid {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
}
.product-card {
  width: 200px; background: var(--bg-light);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(181,116,138,0.1);
  transition: var(--transition); border: 1px solid rgba(181,116,138,0.1);
}
.product-card:hover {
  transform: translateY(-5px); box-shadow: 0 12px 24px rgba(181,116,138,0.2);
}
.product-card img {
  width: 100%; height: 200px; object-fit: contain; background: white;
  padding: 10px; border-bottom: 1px solid rgba(181,116,138,0.05);
}
.product-card h4 {
  text-align: center; padding: 16px 10px;
  font-size: 0.95rem; font-weight: 600; color: var(--text-dark);
}

/* ===== RESERVATION ===== */
.reservation {
  padding: 100px 0;
  background: var(--bg-light);
}
.arabic-subdesc {
  text-align: center; color: var(--text-mid);
  font-size: 0.95rem; margin-top: 5px;
}
.reservation-form-container {
  max-width: 700px; margin: 0 auto;
  background: var(--white); padding: 40px;
  border-radius: 24px; box-shadow: var(--shadow-hover);
  border-top: 4px solid #25D366;
}
.wa-form .form-group { margin-bottom: 24px; }
.wa-form label {
  display: block; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px;
  font-size: 0.95rem;
}
.wa-form label span[dir="rtl"] { font-weight: 500; color: var(--text-mid); font-size: 0.9rem; }
.wa-form input[type="text"], .wa-form textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid rgba(181,116,138,0.2);
  border-radius: 12px; font-family: var(--font-body);
  font-size: 1rem; color: var(--text-dark);
  transition: var(--transition);
  background: var(--bg-light);
}
.wa-form input[type="text"]:focus, .wa-form textarea:focus {
  outline: none; border-color: var(--rose);
  background: var(--white); box-shadow: 0 0 0 4px rgba(181,116,138,0.1);
}
.treatments-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.checkbox-label {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--bg-light);
  border: 1px solid rgba(181,116,138,0.1);
  border-radius: 12px; cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0 !important; font-weight: 500 !important;
}
.checkbox-label:hover { border-color: var(--rose-light); background: white; }
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--rose);
}
.checkbox-label span { font-size: 0.85rem; }
.btn-wa {
  width: 100%; justify-content: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  font-size: 1.1rem; padding: 16px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: linear-gradient(135deg, #20B958, #0E6C60);
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}
.elegant-divider i.fa-whatsapp { color: #25D366; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; position: relative; overflow: hidden; }
.contact-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--rose-dark) 0%, var(--rose) 50%, var(--rose-light) 100%);
}
.contact-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 30%, rgba(255,255,255,0.1) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.contact .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; backdrop-filter: blur(10px);
}
.contact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); font-weight: 500; }
.contact-value { color: white; font-size: 1rem; font-weight: 500; display: block; margin-top: 2px; transition: var(--transition); }
.contact-value:hover { opacity: 0.8; }
.contact-socials { display: flex; gap: 14px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 600; transition: var(--transition);
}
.social-btn.instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: white;
}
.social-btn.facebook { background: #1877f2; color: white; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.contact-info .btn-primary {
  background: white; color: var(--rose);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.contact-info .btn-primary:hover { background: var(--blush); transform: translateY(-3px); }
.contact-map {
  border-radius: 20px; overflow: hidden;
  height: 400px; box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); color: var(--blush); padding: 40px 0 24px; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(245,230,224,0.1);
  margin-bottom: 24px;
}
.footer-logo { font-size: 1.5rem; display: block; }
.footer-brand p { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.875rem; color: rgba(245,230,224,0.7);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--rose-light); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(245,230,224,0.08); color: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.footer-socials a:hover { background: var(--rose); color: white; transform: translateY(-3px); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: rgba(245,230,224,0.4); }

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 8px 24px rgba(181,116,138,0.5);
  transition: var(--transition); animation: pulse 2.5s ease-in-out infinite;
}
.float-cta:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(181,116,138,0.6); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(181,116,138,0.5); }
  50% { box-shadow: 0 8px 36px rgba(181,116,138,0.8), 0 0 0 12px rgba(181,116,138,0.1); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 260px;
    background: white; flex-direction: column; justify-content: center;
    gap: 28px; padding: 40px; box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-frame { width: 240px; height: 280px; margin: 0 auto; }
  .about-stats { gap: 16px; }
  .treatments-grid { grid-template-columns: 1fr; }
  .reservation-form-container { padding: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-links, .footer-socials { justify-content: center; }
  .hero-content { padding: 100px 20px 60px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 12px; }
  .contact-socials { flex-direction: column; }
}
