/* ============================================
   ESPINAS CLINIC - LUXURY AESTHETIC CSS
   ============================================ */

/* CSS Variables */
:root {
  /* Primary Brand Colors */
  --primary: #7a0f2f;
  --primary-light: #9e3a57;
  --primary-lighter: #c36a83;
  --soft-blush: #f2d6dc;
  --light-bg: #faf6f7;
  --off-white: #f6f7f6;

  /* Accent */
  --gold: #c9a86a;
  --gold-light: #d4b87a;

  /* Text Colors */
  --text-dark: #141414;
  --text-secondary: #6f6f6f;
  --text-light: #ffffff;

  /* Shadows */
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 24px 60px rgba(0, 0, 0, 0.12);

  /* Border Radius */
  --radius-card: 26px;
  --radius-pill: 999px;

  /* Transitions */
  --transition-fast: 300ms ease;
  --transition-medium: 400ms ease;
  --transition-slow: 500ms ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(44px, 6vw, 72px);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: clamp(24px, 2.5vw, 32px);
}

h4 {
  font-size: clamp(20px, 2vw, 26px);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

/* Micro Labels */
.micro-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-medium);
  background: transparent;
  box-sizing: border-box;
}

.navbar.scrolled {
  background: rgba(246, 247, 246, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 10px;
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--gold);
  color: var(--text-dark) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 106, 0.3);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: transform var(--transition-medium);
  transform: translateX(100%);
  box-sizing: border-box;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav .nav-link {
  color: var(--text-light);
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
}

.mobile-nav .nav-cta {
  background: var(--gold);
  color: var(--text-dark) !important;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  margin-top: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 106, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--text-light);
}

.btn-text {
  background: transparent;
  color: var(--primary);
  padding: 0;
  font-weight: 500;
  position: relative;
}

.btn-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

.btn-text:hover::after {
  width: 100%;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

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

.card-burgundy {
  background: var(--primary);
  color: var(--text-light);
}

.card-burgundy h3,
.card-burgundy h4 {
  color: var(--text-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 6vw 80px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  align-items: center;
}

.hero-image {
  position: relative;
  height: 70vh;
  min-height: 500px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  background: var(--primary);
  border-radius: var(--radius-card);
  padding: 60px 50px;
  height: 70vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.hero-content .micro-label {
  margin-bottom: 24px;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 90%;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 100px 6vw;
  position: relative;
}

.section-light {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
}

/* ============================================
   TREATMENT CARDS
   ============================================ */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.treatment-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.treatment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

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

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

.treatment-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--soft-blush), var(--light-bg));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
}

.treatment-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.treatment-card p {
  font-size: 15px;
  margin-bottom: 20px;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

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

.team-card-image {
  height: 400px;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
}

.team-card-content {
  padding: 30px;
}

.team-card-content h3 {
  margin-bottom: 8px;
}

.team-card-content .role {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.team-card-content p {
  font-size: 15px;
}

/* ============================================
   ACCORDION (PRICES)
   ============================================ */
.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border-radius: var(--radius-card);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accordion-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: var(--light-bg);
}

.accordion-header h3 {
  font-size: 22px;
}

.accordion-header .icon {
  width: 32px;
  height: 32px;
  background: var(--soft-blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-body {
  padding: 0 30px 30px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--soft-blush);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item span:first-child {
  font-weight: 500;
}

.price-item .price {
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: all var(--transition-fast);
  background: white;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-lighter);
  box-shadow: 0 0 0 3px rgba(195, 106, 131, 0.15);
}

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

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  margin-top: 2px;
}

.checkbox-group label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info p {
  margin-bottom: 40px;
  font-size: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--soft-blush), var(--light-bg));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-item p {
  margin: 0;
  font-size: 15px;
}

.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.map-container {
  margin-top: 60px;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   OPENING HOURS
   ============================================ */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.hours-table tr {
  border-bottom: 1px solid var(--soft-blush);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 14px 0;
  font-size: 15px;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
}

/* ============================================
   CONDITIONS PAGE
   ============================================ */
.conditions-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-pill);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--primary-lighter);
}

.tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.condition-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
  cursor: pointer;
}

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

.condition-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--soft-blush), var(--light-bg));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
}

.condition-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.condition-card p {
  font-size: 14px;
  margin: 0;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 6vw 80px;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  align-items: start;
}

.booking-info {
  padding-top: 40px;
}

.booking-info h1 {
  margin-bottom: 20px;
}

.booking-info > p {
  font-size: 18px;
  margin-bottom: 40px;
}

.booking-shortcuts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shortcut-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

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

.shortcut-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--soft-blush), var(--light-bg));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
}

.shortcut-card h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.shortcut-card p {
  margin: 0;
  font-size: 14px;
}

.booking-form-wrapper {
  background: white;
  border-radius: var(--radius-card);
  padding: 50px;
  box-shadow: var(--shadow-soft);
}

.booking-form-wrapper h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 80px 6vw 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.footer-brand .logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.footer-column h4 {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 18px;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 24px;
  box-shadow: 0 8px 30px rgba(201, 168, 106, 0.4);
  z-index: 999;
  transition: all var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 106, 0.5);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  box-shadow: var(--shadow-soft);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-hover);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================
   FEATURED TREATMENT SECTIONS
   ============================================ */
.featured-treatment {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 6vw;
  background: var(--off-white);
}

.featured-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.featured-container.reverse {
  direction: rtl;
}

.featured-container.reverse > * {
  direction: ltr;
}

.featured-image {
  height: 65vh;
  min-height: 450px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  background: var(--primary);
  border-radius: var(--radius-card);
  padding: 50px;
  height: auto;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content .micro-label {
  margin-bottom: 20px;
}

.featured-content h2 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 52px);
}

.featured-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.featured-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   PUBLICATIONS
   ============================================ */
.publications-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-lighter) transparent;
}

.publications-scroll::-webkit-scrollbar {
  height: 6px;
}

.publications-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.publications-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-lighter);
  border-radius: 3px;
}

.publication-card {
  flex-shrink: 0;
  width: 280px;
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

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

.publication-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.publication-card-content {
  padding: 24px;
}

.publication-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.publication-card p {
  font-size: 14px;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero-container,
  .featured-container,
  .contact-grid,
  .booking-container {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .hero-content,
  .featured-image,
  .featured-content {
    height: auto;
    min-height: auto;
  }

  .hero-content,
  .featured-content {
    padding: 40px 30px;
  }

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

  .featured-container.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .section {
    padding: 60px 5vw;
  }

  .hero {
    padding: 100px 5vw 60px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

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

  .btn {
    width: 100%;
  }

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

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

  .booking-form-wrapper,
  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .conditions-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .floating-btn,
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .scroll-top {
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .treatment-card,
  .condition-card {
    padding: 30px 20px;
  }

  .team-card-image {
    height: 300px;
  }
}

/* ============================================
   AOS ANIMATION OVERRIDES
   ============================================ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--soft-blush);
  color: var(--primary);
}
