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

:root {
  --primary: #8B5E83;
  --primary-light: #C48FB5;
  --primary-lighter: #E8D0E0;
  --accent: #D4A8C8;
  --bg-light: #FDF6FA;
  --bg-cream: #FAF5F7;
  --bg-white: #ffffff;
  --text-dark: #2D2028;
  --text-medium: #5C4A55;
  --text-light: #8A7585;
  --text-body: #555;
  --footer-bg: #2D2028;
  --footer-text: #E8D0E0;
  --border-light: #F0E4EC;
  --shadow-sm: 0 2px 12px rgba(139, 94, 131, 0.08);
  --shadow-md: 0 8px 30px rgba(139, 94, 131, 0.12);
  --shadow-lg: 0 16px 50px rgba(139, 94, 131, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-white);
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul { list-style: none; }

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

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

/* ===== HEADER / NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  height: 70px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo img {
  height: 48px;
  width: auto;
}

.navbar-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.navbar-nav a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-medium);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.25s;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--primary);
  background: var(--bg-light);
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 16px;
  border: 1.5px solid var(--primary-light);
  border-radius: 50px;
  transition: all 0.25s;
}

.navbar-phone:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.navbar-phone svg {
  width: 15px;
  height: 15px;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: 0.3s;
  border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(255,255,255,0.45), rgba(220,180,210,0.55)), url('images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  background: var(--primary-light);
}

.hero-bg-shapes .shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, var(--primary-light), transparent 70%);
  opacity: 0.2;
}

.hero-bg-shapes .shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: 0.15;
}

.hero-bg-shapes .shape-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 10%;
  background: var(--primary-lighter);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 40px 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 76px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 14px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 44px;
  font-weight: 300;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 15px 42px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(139, 94, 131, 0.3);
}

.btn-primary:hover {
  background: #7A4F73;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(139, 94, 131, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== ABOUT / IMAGE + TEXT SECTION ===== */
.section {
  padding: 90px 0;
}

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

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

.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-text-section.reverse {
  direction: rtl;
}

.image-text-section.reverse > * {
  direction: ltr;
}

.image-text-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.image-text-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.image-text-img .img-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.image-text-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 20px;
  border-radius: 2px;
}

.section-divider-center {
  margin-left: auto;
  margin-right: auto;
}

.image-text-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ===== FEATURES / 3-COLUMN ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  text-align: center;
  padding: 0;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

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

.feature-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== PRICING PAGE ===== */
.page-header {
  background: linear-gradient(160deg, #FDF6FA 0%, #F3E4EE 50%, #E8D4E1 100%);
  padding: 110px 0 56px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

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

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

.pricing-category {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.pricing-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-category h2 svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}

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

.pricing-item:hover {
  background: var(--bg-light);
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 6px;
}

.pricing-item .name {
  color: var(--text-medium);
  font-size: 15px;
}

.pricing-item .price {
  font-weight: 700;
  color: var(--primary);
  font-size: 17px;
  white-space: nowrap;
}

/* ===== APPOINTMENT PAGE ===== */
.appointments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  padding: 60px 0;
}

.appointment-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.appointment-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.appointment-card:hover .appointment-card-img img {
  transform: scale(1.06);
}

.appointment-card-body {
  padding: 20px 22px 24px;
}

.appointment-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.appointment-card-body .location {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.appointment-card-body .location svg {
  flex-shrink: 0;
}

.appointment-card-body .staff {
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.staff-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.appointment-card .btn {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 12px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-info-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 32px;
  color: var(--text-dark);
}

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

.contact-item:last-of-type {
  margin-bottom: 32px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.contact-item-text h4 {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.contact-item-text a:hover {
  color: var(--primary);
}

.contact-map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  background: linear-gradient(160deg, var(--primary), #7A4F73);
  color: #fff;
  padding: 80px 0;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 16px;
  color: #fff;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.cta-section .btn:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 28px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 40px;
  justify-content: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .footer-logo img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(232, 208, 224, 0.65);
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(232, 208, 224, 0.65);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-info p {
  font-size: 13px;
  color: rgba(232, 208, 224, 0.65);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-info svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-contact-info a {
  color: rgba(232, 208, 224, 0.65);
}

.footer-contact-info a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 208, 224, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(232, 208, 224, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .image-text-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .image-text-section.reverse {
    direction: ltr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand p { max-width: 100%; }
  .footer-contact-info p { justify-content: center; }
  .footer-brand .footer-logo img { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-light);
  }

  .navbar-nav.open { display: flex; }
  .navbar-phone { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 75vh; }
  .hero-title {
    font-size: 44px;
    letter-spacing: 8px;
  }
  .hero-subtitle { font-size: 15px; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 28px; }
  .page-header { padding: 90px 0 40px; }
  .page-header h1 { font-size: 32px; }

  .appointments-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    padding: 40px 0;
  }

  .image-text-img img { height: 280px; }
}
