/* ============================================
   Daley Clinic — Clinica Estetica Website
   Color Palette (Gold & Cream):
     --gold:        #b8975a
     --gold-dark:   #9a7d48
     --gold-light:  #d4be8a
     --cream:       #f8f5ef
     --cream-light: #fdfbf7
     --ivory:       #faf8f4
     --charcoal:    #2d2d2d
     --text-dark:   #1a1a1a
     --text-body:   #4a4a4a
     --text-light:  #8a8a8a
   ============================================ */

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

:root {
  --rose-gold: #b8975a;
  --rose-gold-dark: #9a7d48;
  --rose-gold-light: #d4be8a;
  --blush: #f3efe6;
  --blush-light: #f8f5ef;
  --cream: #fdfbf7;
  --brown-dark: #2d2d2d;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-body: #4a4a4a;
  --text-light: #8a8a8a;
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.08);
  --shadow-md: 0 4px 20px rgba(45, 45, 45, 0.10);
  --shadow-lg: 0 8px 40px rgba(45, 45, 45, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--brown-dark);
  line-height: 1.2;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  color: var(--brown-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184, 151, 90, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 151, 90, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--rose-gold);
  border: 2px solid var(--rose-gold);
}

.btn-outline:hover {
  background: var(--rose-gold);
  color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184, 151, 90, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 151, 90, 0.4);
}

.btn-whatsapp .wa-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Social Icons */
.social-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* --- Header / Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.nav-logo img {
  height: 50px;
  width: auto;
}

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--blush);
}

.nav-lang a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--text-light);
  transition: all var(--transition);
}

.nav-lang a.active {
  background: var(--rose-gold);
  color: var(--white);
}

.nav-lang a:hover:not(.active) {
  color: var(--rose-gold);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

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

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

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

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush) 100%);
  overflow: hidden;
  padding-top: 76px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 151, 90, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(184, 151, 90, 0.1);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose-gold);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--brown-dark);
}

.hero-title span {
  color: var(--rose-gold);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-image-decoration {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border: 2px solid var(--rose-gold);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

/* Hero placeholder when no image */
.hero-image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose-gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow-lg);
}

/* --- About Section --- */
.about {
  background: var(--white);
}

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

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}

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

.about-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose-gold), var(--rose-gold-light));
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose-gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow-md);
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-quote {
  position: relative;
  padding: 24px 24px 24px 48px;
  background: var(--blush-light);
  border-radius: var(--radius-md);
  margin: 32px 0;
  font-style: italic;
  color: var(--brown-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  padding-right: 32px;
}

.about-quote::before {
  content: '\201C';
  position: absolute;
  left: 16px;
  top: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--rose-gold);
  line-height: 1;
}

.about-quote::after {
  content: '\201D';
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--rose-gold);
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 4px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--blush-light);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--rose-gold-dark);
  font-weight: 500;
}

/* --- Team Section --- */
.team {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
  border: 1px solid transparent;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 151, 90, 0.2);
}

.team-card-photo {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose-gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-body {
  padding: 28px 24px;
}

.team-card-body h3 {
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.team-card-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.team-card-body p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* --- Services Section --- */
.services {
  background: var(--cream);
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.service-category {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.service-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 151, 90, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  border: 3px solid var(--rose-gold-light);
  box-shadow: var(--shadow-sm);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-category h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--brown-dark);
}

.service-list {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-gold);
}

.services-cta {
  text-align: center;
}

/* --- Service Accordion --- */
.service-accordion {
  text-align: left;
}

.service-item {
  border-bottom: 1px solid var(--blush);
  padding-left: 0;
}

.service-item::before {
  display: none;
}

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

.service-item-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  text-align: left;
  transition: color var(--transition);
}

.service-item-toggle:hover {
  color: var(--rose-gold);
}

.service-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--rose-gold);
  transition: transform var(--transition), background var(--transition);
}

.service-item.active .service-item-icon {
  transform: rotate(45deg);
  background: var(--rose-gold);
  color: var(--white);
}

.service-item-desc {
  max-height: 0;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-light);
  padding-left: 0;
  padding-right: 34px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.service-item.active .service-item-desc {
  max-height: 200px;
  padding-bottom: 12px;
}

/* --- Results Section --- */
.results {
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.results-text .section-label {
  color: var(--rose-gold);
}

.results-title {
  font-size: 3rem;
  color: var(--rose-gold-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.results-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.results-divider {
  width: 80px;
  height: 3px;
  background: var(--rose-gold);
  margin-bottom: 20px;
}

.results-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.results-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--rose-gold);
  font-size: 0.92rem;
}

/* --- Facilities Gallery --- */
.facilities {
  background: var(--cream);
}

.facilities-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.facility-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.facility-img.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.results-instagram-link:hover {
  color: var(--rose-gold-dark);
}

.results-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ba-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
}

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

.ba-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose-gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}

/* --- FAQ Section --- */
.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: rgba(184, 151, 90, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--rose-gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--rose-gold);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--rose-gold);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* --- Locations Section --- */
.locations {
  background: var(--white);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 480px;
  margin: 0 auto;
}

.location-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
}

.location-map {
  width: 100%;
  height: 200px;
  background: var(--blush);
}

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

.location-info {
  padding: 28px;
  text-align: center;
}

.location-info h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--brown-dark);
}

.location-info p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 8px;
}

.location-info .btn {
  margin-top: 16px;
}

/* --- Contact / CTA Section --- */
.contact {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 100%);
}

.contact-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  color: var(--text-body);
  font-weight: 500;
  transition: all var(--transition);
}

.contact-method:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-method-icon {
  font-size: 1.2rem;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
}

.contact-icons a {
  color: var(--rose-gold);
  transition: all var(--transition);
}

.contact-icons a:hover {
  color: var(--rose-gold-dark);
  transform: scale(1.15);
}

.contact-icons a svg {
  width: 44px;
  height: 44px;
}

/* --- Footer --- */
.footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

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

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--rose-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
}

.footer-credit {
  width: 100%;
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: var(--rose-gold);
  color: var(--white);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(184, 151, 90, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(184, 151, 90, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* --- Diagnosis Popup --- */
.diagnosis-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.diagnosis-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.diagnosis-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s ease;
  position: relative;
}

.diagnosis-popup-overlay.active .diagnosis-popup {
  transform: translateY(0) scale(1);
}

.diagnosis-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--blush-light);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.diagnosis-popup-close:hover {
  background: var(--blush);
  color: var(--brown-dark);
}

.diagnosis-popup-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(183,110,121,0.1), rgba(212,160,167,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.diagnosis-popup h3 {
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.diagnosis-popup p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.diagnosis-popup .btn {
  width: 100%;
  max-width: 280px;
}

.diagnosis-popup-skip {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.diagnosis-popup-skip:hover {
  color: var(--rose-gold);
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: var(--rose-gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(184, 151, 90, 0.3);
  z-index: 998;
  font-size: 1.1rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--rose-gold-dark);
  transform: translateY(-2px);
}

/* --- Mobile Language Switcher (Always Visible) --- */
.nav-lang-mobile {
  display: none;
  align-items: center;
  gap: 4px;
  margin-right: 12px;
}

.nav-lang-mobile a {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  color: var(--text-light);
  transition: all var(--transition);
  background: var(--blush-light);
}

.nav-lang-mobile a.active {
  background: var(--rose-gold);
  color: var(--white);
}

.nav-lang-mobile a:hover:not(.active) {
  color: var(--rose-gold);
  background: var(--blush);
}

/* --- Promo Banner --- */
.promo-banner {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 40px 8px 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.promo-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.promo-banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-banner-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: promoPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes promoPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    transform: scale(1.2);
  }
}

.promo-banner-content a {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.promo-banner-content a:hover {
  text-decoration: underline;
}

.promo-banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.8;
  padding: 4px 8px;
  line-height: 1;
}

.promo-banner-close:hover {
  opacity: 1;
}

/* Offset hero when banner is visible */
body.has-promo-banner .hero {
  padding-top: calc(76px + 36px);
}

/* --- Promotions Page --- */
.promos-page {
  padding-top: 76px;
}

.promos-page-header {
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
  padding: 60px 0 40px;
  text-align: center;
}

.promos-page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose-gold);
  margin-bottom: 24px;
}

.promos-page-back:hover {
  color: var(--rose-gold-dark);
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.promo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--white);
}

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

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-card-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose-gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: var(--rose-gold-dark);
  font-weight: 600;
}

.promos-cta {
  text-align: center;
  padding: 48px 0 0;
}

/* --- Catalog Page --- */
.catalog-page {
  padding-top: 76px;
}

.catalog-hero {
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
  padding: 60px 0 40px;
  text-align: center;
}

.catalog-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.catalog-nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--white);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-gold);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.catalog-nav-btn:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.catalog-section {
  padding: 64px 0;
  background: var(--white);
}

.catalog-section-alt {
  background: var(--cream);
}

.catalog-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.catalog-section-header h2 {
  font-size: 2rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.catalog-section-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.catalog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.catalog-section-alt .catalog-card {
  background: var(--white);
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 151, 90, 0.2);
}

.catalog-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--blush-light);
}

.catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.catalog-card-body {
  padding: 24px;
}

.catalog-card-body h3 {
  font-size: 1.1rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.catalog-card-body p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.catalog-card-body .btn {
  width: auto;
}

/* Icon-only card (no photo) */
.catalog-card-icon-area {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.catalog-card-icon-area::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(184, 151, 90, 0.08);
}

.catalog-section-alt .catalog-card-icon-area {
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 100%);
}

.catalog-cta {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 100%);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-grid {
    gap: 40px;
  }

  .services-categories {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .results-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .results-divider {
    margin: 0 auto 20px;
  }

  .results-title {
    font-size: 2.2rem;
  }

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

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

@media (max-width: 768px) {
  .facilities-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .facility-img.featured {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .nav-logo img {
    height: 42px;
  }

  .nav {
    height: 68px;
  }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--blush-light);
    width: 100%;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-lang {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 14px;
    width: 100%;
    justify-content: center;
  }

  .nav-lang a {
    width: auto;
    padding: 6px 16px;
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-lang-mobile {
    display: flex;
  }

  .nav-lang {
    display: none;
  }

  /* Hero */
  .hero {
    padding-top: 68px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-wrapper,
  .hero-image-placeholder {
    max-width: 320px;
    margin: 0 auto;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper,
  .about-image-placeholder {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Results */
  .results-photos {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Locations */
  .locations-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* Promo Banner */
  .promo-banner {
    top: 68px;
    padding: 7px 36px 7px 16px;
  }

  .promo-banner-content a {
    font-size: 0.78rem;
  }

  body.has-promo-banner .hero {
    padding-top: calc(68px + 34px);
  }

  .promos-page {
    padding-top: 68px;
  }

  .promos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-page {
    padding-top: 68px;
  }

  .catalog-hero {
    padding: 40px 0 32px;
  }

  .catalog-section {
    padding: 48px 0;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-section-header h2 {
    font-size: 1.6rem;
  }

  .catalog-nav-btn {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }
}
