/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── TOKENS ── */
:root {
  --red:        #E90A46;
  --red-dk:     #c20839;
  --red-lt:     #fde8ee;
  --gray:       #6D7378;
  --text:       #111827;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --white:      #ffffff;
  --bg-alt:     #f9fafb;
  --dark:       #0f172a;

  /* Keep old var names so login/register pages stay intact */
  --pink-dark:  #E90A46;
  --pink-light: #fde8ee;
  --pink:       #f47295;
}

/* ── BASE ── */
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }

.nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--red); }

.btn-nav {
  background: var(--red);
  color: white;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-nav:hover { background: var(--red-dk); transform: translateY(-1px); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 5.5rem 2rem 5.5rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.hero-text { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red-lt);
  color: var(--red);
  border: 1px solid rgba(233,10,70,0.2);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-size: 3.7rem;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero-text h1 em {
  color: var(--red);
  font-style: italic;
}

.hero-text > p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.25rem;
}

.hero-btns {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.btn-primary {
  background: var(--red);
  color: white;
  padding: 0.9rem 2.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(233,10,70,0.3);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,10,70,0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 0.9rem 2.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-mt { margin-top: 2rem; }

.hero-chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.38rem 0.875rem;
  border-radius: 999px;
}

/* HERO VISUAL */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.hero-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active { background: white; transform: scale(1.45); }

.hero-float {
  position: absolute;
  bottom: 2.25rem;
  left: -1.75rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hero-float-icon { font-size: 1.75rem; line-height: 1; }

.hero-float-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-float-label { font-size: 0.7rem; color: var(--muted); max-width: 110px; }

/* ─────────────────────────────────────────────
   STATS
───────────────────────────────────────────── */

/* ─────────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────────── */
section {
  min-height: calc(100vh - 69px);
  scroll-margin-top: 69px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.no-snap { min-height: auto; }

.hero-inner,
.stats-inner,
.section-inner,
.about-inner,
.contact-inner { width: 100%; }

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

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.s-tag {
  display: inline-block;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.s-tag-light {
  display: inline-block;
  color: rgba(233,10,70,0.7);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-inner h2,
.about-text h2,
.contact-section h2 {
  font-size: 2.4rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-section h2 { color: white; }

.s-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2rem;
  flex: 1;
  min-width: 240px;
  max-width: 340px;
  border: 1.5px solid var(--border);
  text-align: left;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(233,10,70,0.1);
}

.card-highlight {
  border-color: var(--red);
  box-shadow: 0 4px 24px rgba(233,10,70,0.1);
}

.card-highlight::after {
  content: 'Featured';
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--red-lt);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.card-ico {
  width: 56px;
  height: 56px;
  background: var(--red-lt);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover { border-color: var(--red); transform: translateY(-4px); }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--border);
  align-self: center;
  flex-shrink: 0;
  margin-top: -1rem;
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  gap: 5rem;
  align-items: center;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 2rem;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  background: var(--red);
  color: white;
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(233,10,70,0.35);
}

.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-badge-lbl { font-size: 0.68rem; opacity: 0.85; line-height: 1.4; }

.about-text { flex: 1; text-align: left; }

.about-text h2 { margin-bottom: 1.25rem; }

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.about-list {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.chk {
  width: 22px;
  height: 22px;
  background: var(--red-lt);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.reviews {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.review {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  text-align: left;
  border: 1.5px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}

.rname { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.rloc  { font-size: 0.75rem; color: var(--muted); margin-top: 0.1rem; }

.stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-left: auto;
  align-self: flex-start;
}

.review > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact-section {
  background: var(--dark);
  color: white;
  padding: 6.5rem 2rem;
  text-align: center;
}

.contact-inner { max-width: 700px; margin: 0 auto; }

.contact-sub {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

.contact-methods {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cmethod {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 1.5rem 2.25rem;
  text-decoration: none;
  min-width: 240px;
  transition: background 0.2s, border-color 0.2s;
}

.cmethod:hover {
  background: rgba(233,10,70,0.12);
  border-color: rgba(233,10,70,0.35);
}

.cmethod-ico { font-size: 1.75rem; }
.cmethod-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 0.3rem; font-weight: 500; }
.cmethod-val { color: white; font-weight: 700; font-size: 0.97rem; }

.svc-area { color: rgba(255,255,255,0.22); font-size: 0.82rem; }

.quote-form { margin-top: 2rem; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.qf-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.qf-field label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.qf-field input,
.qf-field select,
.qf-field textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.qf-field input::placeholder,
.qf-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.qf-field select option { background: #1a1a2e; color: white; }
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus { border-color: var(--red); }
.qf-submit { width: 100%; padding: 1rem; font-size: 1rem; cursor: pointer; border: none; }
.qf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
@media (max-width: 600px) { .qf-row { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: #080d14;
  padding: 2.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-contact-link:hover { color: white; }

.footer-contact-ico { font-size: 1rem; }

.footer-dot { color: rgba(255,255,255,0.2); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-bottom .footer-copy { margin: 0; }

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.75); }

.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-copy { color: rgba(255,255,255,0.2); font-size: 0.8rem; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.social-btn:hover {
  background: #e1306c;
  color: white;
  border-color: #e1306c;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column;
    padding: 3.5rem 1.5rem 4.5rem;
    gap: 3rem;
    text-align: center;
  }

  .hero-text > p { max-width: 100%; }
  .hero-text h1  { font-size: 2.8rem; }
  .hero-btns     { justify-content: center; }
  .hero-chips    { justify-content: center; }
  .hero-carousel { max-width: 100%; }
  .hero-float    { left: auto; right: 1rem; bottom: 1rem; }

  .nav-links { display: none; }

  .about-inner {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 3rem;
  }

  .about-img img { aspect-ratio: 3/2; }
  .about-badge   { right: 0.5rem; bottom: -1.25rem; }
  .about-text    { text-align: center; }
  .about-list    { align-items: center; }

  .section-inner { padding: 4.5rem 1.5rem; }

  .step-arrow  { display: none; }
  .steps       { gap: 1rem; }


  .footer-top { flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }
  .footer-contact { align-items: center; }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-links { justify-content: center; }
}

/* ── LUCIDE ICONS ── */
.hero-badge svg,
.chip svg            { width: 14px; height: 14px; stroke-width: 2.25; }
.chip svg.lucide-star { color: #FFD700; fill: #FFD700; }
.card-ico svg        { width: 28px; height: 28px; color: var(--red); stroke-width: 2; }
.card-ico svg.lucide-sparkles { color: #FFD700; fill: #FFD700; }
.hero-float-icon svg { width: 28px; height: 28px; color: #FFD700; fill: #FFD700; stroke-width: 2; }
.chk svg             { width: 13px; height: 13px; stroke-width: 3; }
.footer-contact-ico svg { width: 16px; height: 16px; stroke-width: 2; display: block; }
.footer-contact-ico  { display: inline-flex; align-items: center; }
