/* =============================================================
   ESTECENTER — MEDICAL AESTHETICS MICRO SITES
   Visual reference: Cosmedica + Dr. Terziler + Vera Clinic
   Palette: warm rose gold / soft ivory — premium, feminine, clean
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --brand:       #1C1C2E;   /* deep charcoal – navbar / footer */
  --brand2:      #2D2D44;
  --accent:      #C9956C;   /* rose gold – Cosmedica CTA */
  --accent2:     #A8745A;
  --accent-lt:   #F5EBE2;   /* blush ivory – section bg */
  --gold:        #C9956C;
  --white:       #FFFFFF;
  --off-white:   #FAF8F6;   /* warm ivory */
  --text:        #1C1C2E;
  --text-muted:  #6B6B7B;
  --border:      #EDE9E4;
  --success:     #5CA87B;
  --radius:      6px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(28,28,46,0.08);
  --shadow-lg:   0 12px 48px rgba(28,28,46,0.14);
  --max-w:       1180px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); }
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }

/* ── TOPBAR ── */
.topbar { background: var(--brand); padding: 10px 0; }
.topbar__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .82rem; }
.topbar__stars { display: flex; align-items: center; gap: 3px; }
.topbar__stars svg { width: 13px; height: 13px; fill: var(--gold); }
.topbar__rating { color: var(--white); font-weight: 700; margin-left: 4px; }
.topbar__sep { color: rgba(255,255,255,.25); }
.topbar__link { color: rgba(255,255,255,.8); text-decoration: none; transition: color .2s; }
.topbar__link:hover { color: var(--accent); }

/* ── NAVBAR ── */
.navbar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(28,28,46,.06); }
.navbar__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; height: 70px; display: flex; align-items: center; gap: 28px; }
.navbar__logo { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 700; color: var(--brand); text-decoration: none; letter-spacing: .5px; }
.navbar__logo span { color: var(--accent); }
.navbar__links { display: flex; gap: 26px; margin-left: auto; }
.navbar__links a { font-size: .88rem; font-weight: 500; color: var(--text-muted); text-decoration: none; padding: 4px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.navbar__links a:hover, .navbar__links a.on { color: var(--accent); border-bottom-color: var(--accent); }
.navbar__phone { font-size: .84rem; color: var(--text-muted); text-decoration: none; display: none; }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.navbar__toggle span { display: block; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; }
@media(min-width:900px) { .navbar__phone { display: block; } }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border-radius: var(--radius); font-weight: 600; font-size: .9rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all .2s; padding: 11px 24px; }
.btn-gold { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-gold:hover { background: var(--accent2); border-color: var(--accent2); }
.btn-outline-dark { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline-dark:hover { background: var(--brand); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 14px 32px; font-size: .95rem; }
.btn-sm { padding: 8px 18px; font-size: .82rem; }
.btn-navy { background: var(--brand); color: var(--white); border-color: var(--brand); }
.btn-navy:hover { background: var(--brand2); border-color: var(--brand2); }

/* ── WRAP ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--brand) 0%, #2D2D44 55%, #3D2A3A 100%); color: var(--white); padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,149,108,.18) 0%, transparent 60%); pointer-events: none; }
.hero__wrap { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,149,108,.2); border: 1px solid rgba(201,149,108,.4); color: #F5C9A0; font-size: .78rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 22px; }
.hero__badge svg { width: 14px; height: 14px; stroke: #F5C9A0; fill: none; stroke-width: 2; }
h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -.5px; }
h1 em { color: var(--accent); font-style: italic; }
.hero__lead { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 28px; max-width: 560px; line-height: 1.7; }
.hero__checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero__check { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.88); }
.hero__check svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; stroke: var(--accent); fill: none; stroke-width: 2; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── HERO FORM ── */
.hero__form { background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.hero__form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.hero__form-sub { font-size: .84rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.fld { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fld label { font-size: .8rem; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: .3px; }
.fld input, .fld select { padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: .9rem; font-family: inherit; color: var(--text); background: var(--white); transition: border-color .2s; }
.fld input:focus, .fld select:focus { outline: none; border-color: var(--accent); }
.form-btn { width: 100%; padding: 14px; background: var(--accent); color: var(--white); border: none; border-radius: var(--radius); font-size: .95rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.form-btn:hover { background: var(--accent2); }
.form-note { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ── STATS ROW ── */
.stats-row { background: var(--accent); padding: 26px 20px; }
.stats-row__inner { display: flex; gap: 0; justify-content: space-around; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 10px 20px; }
.stat-item__num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-item__label { font-size: .78rem; color: rgba(255,255,255,.85); margin-top: 4px; text-transform: uppercase; letter-spacing: .4px; }

/* ── MEDIA BAND ── */
.media-band { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; }
.media-band__label { font-size: .72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; text-align: center; }
.media-logos { display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; }
.media-logo { display: flex; align-items: center; justify-content: center; opacity: .45; transition: opacity .2s; }
.media-logo:hover { opacity: .75; }
.media-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--brand); letter-spacing: 1px; white-space: nowrap; }

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section--ivory { background: var(--off-white); }
.section--blush { background: var(--accent-lt); }
.text-c { text-align: center; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--brand); margin-bottom: 16px; }
h3 { font-size: 1.2rem; font-weight: 600; color: var(--brand); margin-bottom: 10px; }
p { color: var(--text-muted); line-height: 1.75; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow .2s, transform .2s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-icon { width: 48px; height: 48px; background: var(--accent-lt); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; }

/* ── RESULTS GRID (before/after) ── */
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.result-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.result-card__imgs { display: grid; grid-template-columns: 1fr 1fr; }
.result-card__img { height: 160px; background: var(--accent-lt); display: flex; align-items: center; justify-content: center; }
.result-card__label { font-size: .7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; padding: 4px 10px; background: rgba(0,0,0,.04); }
.result-card__info { padding: 14px 16px; }
.result-card__name { font-weight: 600; font-size: .9rem; color: var(--brand); }
.result-card__meta { font-size: .8rem; color: var(--text-muted); }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.why-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.why-icon { width: 46px; height: 46px; background: var(--accent-lt); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 2; }

/* ── PACKAGE BOX ── */
.pkg-box { background: var(--brand); border-radius: var(--radius-lg); padding: 36px; color: var(--white); }
.pkg-head { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.15); }
.pkg-head h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.pkg-head p { color: rgba(255,255,255,.65); font-size: .9rem; }
.pkg-price { text-align: right; flex-shrink: 0; }
.pkg-price .from { font-size: .75rem; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.55); }
.pkg-price .amount { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--accent); line-height: 1; }
.pkg-price .note { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.pkg-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; margin-bottom: 28px; }
.pkg-item { font-size: .87rem; color: rgba(255,255,255,.85); padding-left: 18px; position: relative; }
.pkg-item::before { content: '✓'; color: var(--accent); position: absolute; left: 0; font-weight: 700; }
.pkg-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── REVIEWS ── */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; margin-top: 40px; }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); border-top: 3px solid var(--accent); }
.rv-platform { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--accent); }
.rv-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin: 6px 0 12px; }
.rv-text { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-avatar { width: 38px; height: 38px; background: var(--accent-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.rv-name { font-weight: 600; font-size: .88rem; color: var(--brand); }
.rv-meta { font-size: .78rem; color: var(--text-muted); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--accent) 0%, #A8745A 100%); color: var(--white); padding: 60px 20px; text-align: center; }
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 28px; }

/* ── FOOTER ── */
.footer { background: var(--brand); color: rgba(255,255,255,.7); padding: 50px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer__logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer__logo span { color: var(--accent); }
.footer__desc { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 32px; height: 32px; background: rgba(255,255,255,.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.7); text-decoration: none; transition: background .2s; }
.footer__social a:hover { background: var(--accent); color: var(--white); }
.footer h5 { font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: .85rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer ul a:hover { color: var(--accent); }
.footer__contact-row { font-size: .85rem; margin-bottom: 8px; }
.footer__contact-row a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer__contact-row a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 20px; text-align: center; font-size: .8rem; color: rgba(255,255,255,.35); }
.footer__bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer__bottom a:hover { color: var(--accent); }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .82rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 0; font-size: 1rem; font-weight: 600; color: var(--brand); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--accent); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 0 18px; font-size: .92rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── WA BUTTON ── */
.wa-btn { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 999; transition: transform .2s; }
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 30px; height: 30px; }

/* ── ABOUT GRID ── */
.about-grid { grid-template-columns: 1fr 1fr; }
@media(max-width:720px) { .about-grid { grid-template-columns: 1fr; } }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero__wrap { grid-template-columns: 1fr; }
  .hero__form { margin-top: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
}
@media(max-width:600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .pkg-head { flex-direction: column; }
  .pkg-price { text-align: left; }
  .stats-row__inner { gap: 10px; justify-content: center; }
}
