/* ===================================================================
   Filipina Cleaning Services — Main Stylesheet
   Palette: Navy #1B3A5B / Teal #1AA0A0 / White
   Fonts: Fraunces (display) + Plus Jakarta Sans (body)
   =================================================================== */

:root {
  --navy: #1B3A5B;
  --navy-deep: #122a44;
  --navy-700: #234a72;
  --teal: #1AA0A0;
  --teal-bright: #24B7B7;
  --teal-soft: #e8f6f6;
  --silver: #9AA7B2;
  --ink: #16222e;
  --muted: #5a6b7a;
  --line: #e4e9ee;
  --bg: #ffffff;
  --bg-tint: #f6f9fb;
  --shadow-sm: 0 2px 10px rgba(27, 58, 91, .06);
  --shadow-md: 0 10px 30px rgba(27, 58, 91, .10);
  --shadow-lg: 0 24px 60px rgba(27, 58, 91, .16);
  --radius: 16px;
  --radius-lg: 26px;
  --maxw: 1180px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.01em;
}

a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }

.container-x { max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }

.section { padding: 5.5rem 0; }
.section-tint { background: var(--bg-tint); }
@media (max-width: 768px){ .section { padding: 3.5rem 0; } }

/* ---------- Eyebrow + headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--teal); display: inline-block;
}
.h-display { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-body); font-weight: 700; border-radius: 999px; padding: .8rem 1.7rem; transition: all .25s; border: 2px solid transparent; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-bright); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(26,160,160,.32); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-ghost-white { border-color: rgba(255,255,255,.5); color:#fff; background: transparent; }
.btn-ghost-white:hover { background:#fff; color: var(--navy); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; vertical-align: -3px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; }

/* ---------- Navbar ---------- */
.site-nav {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }
.navbar-brand img { height: 52px; width: auto; }
.site-nav .nav-link {
  color: var(--navy); font-weight: 600; font-size: .96rem;
  padding: .5rem .9rem !important; border-radius: 8px; position: relative;
}
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--teal); }
.site-nav .nav-link.active::after {
  content:""; position:absolute; left:.9rem; right:.9rem; bottom:.15rem; height:2px; background: var(--teal); border-radius: 2px;
}
.nav-phone { font-weight: 700; color: var(--navy); white-space: nowrap; }
.nav-phone:hover { color: var(--teal); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 78% -8%, rgba(26,160,160,.14), transparent 60%),
    radial-gradient(900px 500px at 4% 110%, rgba(27,58,91,.08), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 26px 26px; opacity:.5; mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.hero-inner { position: relative; padding: 4.5rem 0 5rem; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
.hero .lead { font-size: 1.2rem; max-width: 42ch; }
.hero-badge {
  display:inline-flex; align-items:center; gap:.55rem;
  background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-sm);
  border-radius:999px; padding:.5rem 1rem; font-size:.85rem; font-weight:600; color:var(--navy);
}
.hero-badge .dot { width:8px; height:8px; border-radius:50%; background:#27c07a; box-shadow:0 0 0 4px rgba(39,192,122,.2); }
.hero-art {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy), var(--navy-700));
  padding: 2.5rem; color:#fff; box-shadow: var(--shadow-lg); overflow:hidden;
}
.hero-art::after {
  content:""; position:absolute; right:-60px; top:-60px; width:240px; height:240px; border-radius:50%;
  background: radial-gradient(circle, rgba(36,183,183,.55), transparent 70%);
}
.hero-art h3 { color:#fff; }
.hero-stat { border-top:1px solid rgba(255,255,255,.16); padding-top:1rem; }
.hero-stat .num { font-family:var(--font-display); font-size:1.9rem; color: var(--teal-bright); line-height:1; }
.hero-stat .lbl { font-size:.82rem; color:rgba(255,255,255,.75); }

/* ---------- Cards ---------- */
.feature-card, .service-card, .review-card, .price-card, .step-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s, border-color .3s;
  height:100%;
}
.feature-card { padding: 1.8rem; }
.feature-card:hover, .service-card:hover, .price-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(26,160,160,.4);
}
.icon-chip {
  width:54px; height:54px; border-radius:14px; display:grid; place-items:center;
  background: var(--teal-soft); color: var(--teal); margin-bottom:1.1rem;
}
.icon-chip svg { width:26px; height:26px; }

/* ---------- Service cards ---------- */
.service-card { overflow:hidden; }
.service-card .sc-img {
  height:200px; background: linear-gradient(135deg, var(--navy), var(--teal));
  display:grid; place-items:center; color:rgba(255,255,255,.85); position:relative;
}
.service-card .sc-img .ph-label { font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; opacity:.9; }
.service-card .sc-img.has-photo { padding:0; }
.service-card .sc-img img, .photo-frame img { width:100%; height:100%; object-fit:cover; display:block; }
.photo-frame { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--line); }
.photo-frame.tall { height:380px; }
.photo-frame.med { height:360px; }
.service-card .sc-img { overflow:hidden; }
.service-card .sc-body { padding:1.6rem; }

/* image placeholder pattern */
.img-ph {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--navy), var(--teal));
}

/* ---------- Steps ---------- */
.step-card { padding:1.7rem; position:relative; }
.step-num {
  font-family:var(--font-display); font-size:2.4rem; color: var(--teal); opacity:.5; line-height:1;
}

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy); color:#fff; }
.stats-band .stat .num { font-family:var(--font-display); font-size:clamp(2rem,5vw,3rem); color: var(--teal-bright); }
.stats-band .stat .lbl { color: rgba(255,255,255,.78); font-size:.95rem; }

/* ---------- Pricing ---------- */
.price-card { padding:2rem; text-align:center; }
.price-card.featured { border:2px solid var(--teal); box-shadow: var(--shadow-md); position:relative; }
.price-card.featured::before {
  content:"Most Popular"; position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--teal); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; padding:.3rem .9rem; border-radius:999px;
}
.price-card .price { font-family:var(--font-display); font-size:1.4rem; color:var(--navy); }
.price-list { list-style:none; padding:0; margin:1.3rem 0; text-align:left; }
.price-list li { padding:.45rem 0; padding-left:1.7rem; position:relative; color:var(--muted); font-size:.95rem; }
.price-list li::before {
  content:"✓"; position:absolute; left:0; color:var(--teal); font-weight:800;
}

/* ---------- Calculator ---------- */
.calc-wrap { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow-md); padding:2.2rem; }
.calc-result { background: var(--navy); color:#fff; border-radius:var(--radius); padding:1.8rem; text-align:center; }
.calc-result .amt { font-family:var(--font-display); font-size:2.6rem; color:var(--teal-bright); line-height:1; }
.calc-note { font-size:.82rem; color:rgba(255,255,255,.7); }
.form-range::-webkit-slider-thumb { background: var(--teal); }
.form-range::-moz-range-thumb { background: var(--teal); }

/* ---------- Reviews ---------- */
.review-card { padding:1.7rem; }
.stars { color:#f5a623; letter-spacing:2px; font-size:1.05rem; }
.review-author { font-weight:700; color:var(--navy); }
.review-meta { font-size:.82rem; color:var(--muted); }
.grev-badge {
  display:inline-flex; align-items:center; gap:.6rem; background:#fff; border:1px solid var(--line);
  border-radius:14px; padding:.8rem 1.2rem; box-shadow:var(--shadow-sm);
}
.grev-badge .score { font-family:var(--font-display); font-size:1.8rem; color:var(--navy); }

/* ---------- FAQ ---------- */
.accordion-button { font-family:var(--font-display); font-weight:600; color:var(--navy); font-size:1.08rem; }
.accordion-button:not(.collapsed){ background:var(--teal-soft); color:var(--navy); box-shadow:none; }
.accordion-button:focus { box-shadow:none; border-color:var(--teal); }
.accordion-item { border:1px solid var(--line); border-radius:var(--radius)!important; margin-bottom:.8rem; overflow:hidden; }

/* ---------- Forms ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow-md); padding:2.2rem; }
.form-label { font-weight:600; color:var(--navy); font-size:.92rem; }
.form-control, .form-select {
  border:1.5px solid var(--line); border-radius:12px; padding:.7rem .9rem; font-size:.98rem;
}
.form-control:focus, .form-select:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(26,160,160,.15); }
.form-success { display:none; background:var(--teal-soft); border:1px solid var(--teal); color:var(--navy); border-radius:12px; padding:1rem 1.2rem; }

/* ---------- Map ---------- */
.map-frame { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--line); }
.map-frame iframe { width:100%; height:420px; border:0; display:block; }
.area-chip {
  display:inline-block; background:#fff; border:1px solid var(--line); border-radius:999px;
  padding:.4rem 1rem; margin:.25rem; font-weight:600; font-size:.9rem; color:var(--navy);
}
.area-chip:hover { border-color:var(--teal); color:var(--teal); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(800px 300px at 85% -20%, rgba(26,160,160,.16), transparent 60%),
    var(--bg-tint);
  border-bottom:1px solid var(--line); padding:3.2rem 0;
}
.breadcrumb a { color:var(--muted); }
.breadcrumb .active { color:var(--navy); font-weight:600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  border-radius: var(--radius-lg); color:#fff; padding:3rem; position:relative; overflow:hidden;
}
.cta-band::after {
  content:""; position:absolute; right:-40px; bottom:-60px; width:260px; height:260px; border-radius:50%;
  background:radial-gradient(circle, rgba(36,183,183,.45), transparent 70%);
}
.cta-band h2 { color:#fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.8); padding:3.5rem 0 1.5rem; }
.site-footer h5 { color:#fff; font-family:var(--font-body); font-weight:700; font-size:1rem; margin-bottom:1rem; }
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--teal-bright); }
.footer-logo { height:64px; filter: brightness(0) invert(1); opacity:.95; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:2.5rem; padding-top:1.2rem; font-size:.85rem; color:rgba(255,255,255,.6); }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform:none; }

/* ---------- Utility ---------- */
.text-teal { color: var(--teal)!important; }
.text-navy { color: var(--navy)!important; }
.bg-soft { background: var(--teal-soft); }
.lift:hover { transform: translateY(-4px); transition: transform .3s; }

@media (max-width: 991px){
  .navbar-brand img { height: 44px; }
  .cta-band { padding:2rem; }
}
