/* ================================================================
   DR. ATEF BEAUTY CENTER — Home Page Styles
   ================================================================ */

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--off-white) 0%, var(--cream) 60%, var(--rose-gold-pale) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 80% 50%, rgba(201,149,106,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 10% 80%, rgba(201,149,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--rose-gold);
}

.hero-eyebrow-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

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

.hero-desc {
  font-size: 1rem;
  color: var(--light-brown);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

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

.stat-item {}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--light-brown);
  margin-top: 0.25rem;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 420px;
  height: 520px;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px var(--shadow-rose);
}

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

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px var(--shadow-dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-icon svg { color: var(--rose-gold); }

.hero-badge-text { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); }
.hero-badge-sub  { font-size: 0.72rem; color: var(--light-brown); }

.hero-decor {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rose-gold-pale);
  border: 3px solid var(--rose-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rose-gold-dark);
  text-align: center;
  line-height: 1.4;
}

/* ── Feature Ribbon ───────────────────────────────────────────────── */
.features-ribbon {
  background: var(--charcoal);
  padding: 2.5rem 0;
}

.features-ribbon-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.ribbon-item svg { color: var(--rose-gold-light); }

/* ── Services Overview ────────────────────────────────────────────── */
.services-overview {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--rose-gold-pale), transparent 70%);
  pointer-events: none;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow-rose);
  border-color: var(--rose-gold-light);
}

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose-gold-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--light-brown);
  line-height: 1.8;
}

/* ── About Teaser ─────────────────────────────────────────────────── */
.about-teaser {
  background: var(--off-white);
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 60px var(--shadow-rose);
}

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

.about-image-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--rose-gold-pale), var(--cream));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  z-index: -1;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--mid-brown);
}

.credential-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-gold);
  flex-shrink: 0;
}

/* ── Appointment CTA ─────────────────────────────────────────────── */
.appointment-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3D2E26 100%);
  position: relative;
  overflow: hidden;
}

.appointment-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,149,106,0.15) 0%, transparent 70%);
}

.appointment-cta::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,149,106,0.1) 0%, transparent 70%);
}

.appointment-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.cta-phone {
  color: var(--rose-gold-light);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.5rem;
  display: block;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 130px 0 60px; text-align: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-image-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .appointment-inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
}
