/* HARLO UNKLE v4.0 — Clean Design Hierarchy + SEO Foundation
   Single focal point. Clear hierarchy. Mobile-first. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand: #E91E63;
  --brand-hover: #C2185B;
  --brand-light: #FCE4EC;
  --brand-dark: #880E4F;
  --bg: #FFFFFF;
  --bg-subtle: #F8F9FA;
  --text-dark: #111827;
  --text-main: #374151;
  --text-sub: #6B7280;
  --text-light: #9CA3AF;
  --border: #F3F4F6;
  --border-dark: #111827;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ═══════════════════════════════
   TYPOGRAPHY — STRICT HIERARCHY
   H1 hero  >>  H2 section  >>  H3 card  >>  body
   Only 3 weight levels used: 700, 800, 900 for headings. 400 for body.
   ═══════════════════════════════ */
h1, h2, h3, h4 { color: var(--text-dark); line-height: 1.15; letter-spacing: -0.02em; }

h1 { font-size: 2.2rem; font-weight: 900; }
h2 { font-size: 1.6rem; font-weight: 800; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--text-sub); line-height: 1.7; max-width: 65ch; }
p strong { color: var(--text-dark); font-weight: 600; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }

/* ═══════════════════════════════
   HEADER — STICKY, MINIMAL
   ═══════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1080px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 900; font-size: 1.1rem; color: var(--text-dark); }
.logo-mark {
  width: 30px; height: 30px;
  background: var(--brand);
  border-radius: var(--radius-sm);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 900;
}
.header-cta {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.2s;
}
.header-cta:hover { background: var(--brand-hover); transform: translateY(-1px); }

/* ═══════════════════════════════
   BUTTONS — ONE PRIMARY, ONE SECONDARY
   ═══════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.85rem 2rem;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  border-radius: var(--radius-pill); border: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-2px); }
.btn-outline { background: var(--bg); color: var(--text-dark); border: 2px solid var(--border-dark); }
.btn-outline:hover { background: var(--bg-subtle); }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ═══════════════════════════════
   HERO — SINGLE FOCAL POINT
   h1 is the ONLY dominant thing here.
   ═══════════════════════════════ */
.hero {
  padding: 5rem 1.25rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse at 30% 20%, var(--brand-light) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, #FFF8F0 0%, transparent 50%);
}
.hero h1 { font-size: 2.8rem; margin-bottom: 0.75rem; }
.hero .subtitle { font-size: 1.1rem; max-width: 520px; margin: 0 auto 1.75rem; color: var(--text-sub); }
.hero-ctas { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.hero-phone {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: var(--text-sub);
}
.hero-phone a { color: var(--brand); font-weight: 600; border-bottom: 1.5px solid var(--brand-light); }
.hero-phone a:hover { border-color: var(--brand); }

/* ═══════════════════════════════
   SECTIONS — CONSISTENT PADDING
   ═══════════════════════════════ */
.section { padding: 3.5rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.4rem; }
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--brand); background: var(--brand-light);
  padding: 0.3rem 0.8rem; border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
}

/* ═══════════════════════════════
   SERVICE GRID — CARDS
   ═══════════════════════════════ */
.service-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all 0.2s;
}
.service-card:hover { border-color: var(--brand); box-shadow: 0 2px 8px rgba(233,30,99,0.08); transform: translateY(-1px); }
.service-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.service-card p { font-size: 0.85rem; margin: 0; }
.service-arrow { font-size: 0.75rem; font-weight: 600; color: var(--brand); display: block; margin-top: 0.4rem; }

/* ═══════════════════════════════
   STEPS — HOW IT WORKS
   ═══════════════════════════════ */
.steps { display: flex; flex-direction: column; gap: 1.25rem; }
.step {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
}
.step-num {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--brand); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.step h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.step p { font-size: 0.9rem; margin: 0; }

/* ═══════════════════════════════
   FAQ — ACCORDION
   ═══════════════════════════════ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}
.faq-summary {
  font-weight: 700; font-size: 0.95rem;
  padding: 1rem 0;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 300;
  color: var(--brand); flex-shrink: 0; transition: transform 0.2s;
}
.faq-item[open] .faq-summary::after { content: '−'; }
.faq-answer { padding: 0.5rem 0 1.1rem; font-size: 0.9rem; color: var(--text-sub); line-height: 1.7; }

/* ═══════════════════════════════
   CTA SECTION — BOTTOM
   ONLY ONE. Dark background. White text. Clear button.
   ═══════════════════════════════ */
.cta-section {
  background: var(--text-dark);
  text-align: center;
  padding: 3rem 1.25rem 2.5rem;
  margin: 3rem 0 0;
}
.cta-section h2 { color: #fff; font-size: 1.8rem; margin-bottom: 0.4rem; }
.cta-section p { color: rgba(255,255,255,0.6); margin: 0 auto 1.5rem; }
.cta-section .phone { font-size: 1.3rem; color: #fff; font-weight: 800; margin-top: 0.75rem; }
.cta-section .phone a { color: #fff; border-bottom: 1px dashed rgba(255,255,255,0.4); }
.cta-section .phone a:hover { border-color: #fff; }

/* ═══════════════════════════════
   SERVICE PAGE SPECIFIC
   ═══════════════════════════════ */
.service-hero { padding: 3rem 1.25rem 2rem; text-align: center; }
.service-hero h1 { font-size: 2rem; margin-bottom: 0.4rem; }
.service-hero p { max-width: 480px; margin: 0 auto; font-size: 1rem; }
.service-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem; font-weight: 600;
  margin-bottom: 0.6rem;
}

/* Sub-service list */
.sub-list { margin: 1.5rem 0; }
.sub-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
}
.sub-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.sub-item h3 { font-size: 0.95rem; margin-bottom: 0.1rem; }
.sub-item p { font-size: 0.8rem; margin: 0; }

/* Price box */
.price-box {
  padding: 1rem 1.25rem;
  background: #FEF3C7;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.price-box strong { font-weight: 700; }

/* Inline CTA for service pages */
.service-cta {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.25rem;
  background: var(--brand-light);
  border: 1.5px solid var(--brand);
  border-radius: var(--radius-md);
  text-align: center;
  margin: 1.5rem 0;
}
.service-cta h3 { font-size: 1rem; color: var(--brand-dark); margin-bottom: 0; }
.service-cta .phone-sm { font-size: 0.85rem; color: var(--text-sub); margin-top: 0.4rem; }
.service-cta .phone-sm a { color: var(--brand); font-weight: 600; }

/* ═══════════════════════════════
   REGION LINKS — BOTTOM OF PAGES
   ═══════════════════════════════ */
.region-links { margin: 2rem 0; }
.region-links h3 { font-size: 0.95rem; margin-bottom: 0.6rem; color: var(--text-dark); }
.region-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.region-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--text-sub);
  transition: all 0.15s;
}
.region-tag:hover { background: var(--brand-light); border-color: var(--brand); color: var(--brand); }

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.5); padding: 2.5rem 1.25rem; text-align: center; }
.footer-brand { font-size: 1rem; font-weight: 900; color: #fff; margin-bottom: 0.75rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem 1.2rem; margin-bottom: 1rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.footer-links a:hover { color: #fff; }
.footer-legal { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.75rem; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.7rem; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 0.65rem 1rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex; gap: 0.6rem;
  z-index: 300;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
}
.sticky-cta .btn { flex: 1; font-size: 0.85rem; padding: 0.75rem 0.8rem; }
.btn-call { background: var(--brand); color: #fff; }
.btn-wa { background: #25D366; color: #fff; }
body.sticky-cta-active { padding-bottom: 72px; }

/* ═══════════════════════════════
   REGION PAGE SPECIFIC (regional SEO)
   ═══════════════════════════════ */
.region-areas {
  background: var(--bg-subtle);
  padding: 2rem 1.25rem;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  text-align: center;
}
.region-areas h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--text-dark); }
.region-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.region-grid a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--text-sub);
  transition: all 0.15s;
}
.region-grid a:hover { background: var(--brand-light); border-color: var(--brand); color: var(--brand); }
.region-grid a.active { background: var(--brand); border-color: var(--brand); color: #fff; font-weight: 600; }

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  .hero h1 { font-size: 3.5rem; }
  .hero { padding: 6rem 1.25rem 5rem; }
  .hero-ctas { flex-direction: row; justify-content: center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .steps { flex-direction: row; }
  .step { flex: 1; text-align: center; flex-direction: column; align-items: center; }
  .sub-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .sub-item { margin-bottom: 0; }
  .service-cta { flex-direction: row; justify-content: center; gap: 1.5rem; padding: 1.5rem; }
}
@media (min-width: 900px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 4rem; }
  .sticky-cta { display: none; }
  body.sticky-cta-active { padding-bottom: 0; }
  .container { padding: 0 2rem; }
}
