/* ===== Design tokens ===== */
:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-ink: #0f2c66;
  --ink: #0f172a;
  --body: #475569;
  --muted: #64748b;
  --amber: #f59e0b;
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --line: #e6eaf2;
  --card: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 4px 12px rgba(15, 23, 42, .05);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, .10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, .16);
  --maxw: 1160px;
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 700; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(37, 99, 235, .28); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 12px 26px rgba(37, 99, 235, .34); }
.btn-ghost { background: #fff; color: var(--blue-ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: #fff; color: var(--blue-ink); }
.btn-light:hover { background: #eef2ff; }
.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn-block { width: 100%; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .9rem;
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 800; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--blue);
  color: #fff; display: grid; place-items: center; font-size: 1.1rem; font-weight: 800;
  box-shadow: 0 6px 14px rgba(37, 99, 235, .35);
}
.brand-name { font-size: 1.2rem; color: var(--ink); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-weight: 500; color: var(--body); font-family: var(--font-head); font-size: .96rem; transition: color .15s; }
.nav a:hover { color: var(--blue); }
.nav .btn { color: #fff; }
.nav .btn-primary:hover { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 500px at 85% -10%, #e0ebff 0%, transparent 60%),
    radial-gradient(700px 400px at 0% 100%, #eef2ff 0%, transparent 55%),
    var(--bg);
  padding: 72px 0 84px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); font-weight: 800; letter-spacing: -.02em; }
.lead { font-size: 1.18rem; color: var(--body); margin: 1.3rem 0 2rem; max-width: 34rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 2.8rem; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--ink); font-weight: 800; }
.hero-stats span { font-size: .9rem; color: var(--muted); }

/* Hero media */
.hero-media img {
  width: 100%; border-radius: 22px; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}

/* WhatsApp button */
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .3); }
.btn-whatsapp:hover { background: #1fb855; box-shadow: 0 12px 26px rgba(37, 211, 102, .38); }
.wa-icon { font-size: 1.15rem; transform: rotate(0deg); }
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem; text-decoration: none;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* Info bar */
.infobar { background: var(--blue-ink); color: #fff; padding: 18px 0; }
.infobar-grid { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 16px; }
.info-item { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 600; font-size: .98rem; }
.info-item span { font-size: 1.2rem; }

/* Quote card */
.quote-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px;
  padding: 30px; box-shadow: var(--shadow-lg); position: relative;
}
.quote-card h2 { font-size: 1.45rem; }
.quote-sub { font-size: .95rem; margin: .4rem 0 1.4rem; }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: var(--ink); margin-bottom: .4rem; }
.field input, .field select {
  width: 100%; padding: .75rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .96rem; color: var(--ink); background: #fff; transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .8rem; }
.quote-card .btn-block { margin-top: .4rem; }

.form-success { text-align: center; padding: 24px 8px; }
.success-icon {
  width: 60px; height: 60px; border-radius: 50%; background: #dcfce7; color: #16a34a;
  display: grid; place-items: center; font-size: 1.8rem; margin: 0 auto 1rem; font-weight: 700;
}
.form-success h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.form-success p { margin-bottom: 1.4rem; }

/* ===== Trust bar ===== */
.trustbar { padding: 34px 0; border-bottom: 1px solid var(--line); background: #fff; }
.trust-label { text-align: center; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 1.1rem; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.6rem; }
.logos span { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #97a3b6; letter-spacing: -.01em; }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Benefits */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px; background: #eef4ff; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.card p { font-size: .97rem; }

/* Services */
.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-img { aspect-ratio: 16/10; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img--icon { display: grid; place-items: center; background: linear-gradient(135deg, #e0ebff, #eef2ff); font-size: 3rem; }
.service-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-body p { font-size: .96rem; flex: 1; }
.service-link { margin-top: 1rem; font-family: var(--font-head); font-weight: 600; color: var(--blue); }
.service-link:hover { color: var(--blue-dark); }
.incl-tag {
  align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: .72rem;
  letter-spacing: .04em; text-transform: uppercase; color: #16a34a; background: #dcfce7;
  padding: .28rem .65rem; border-radius: 999px; margin-bottom: .7rem;
}
.incl-tag--main { color: #fff; background: var(--blue); }

/* Why choose us */
.why-item { text-align: left; padding: 6px; }
.why-item .icon {
  width: 52px; height: 52px; border-radius: 14px; background: #eef4ff; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.why-item h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.why-item p { font-size: .92rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem; }
.contact-copy > p { font-size: 1.05rem; margin-bottom: 1.6rem; max-width: 30rem; }
.contact-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.contact-details li { margin-bottom: .8rem; font-size: .98rem; }
.contact-details a { color: var(--blue); font-weight: 600; }
.contact-section .quote-card { box-shadow: var(--shadow-md); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media img { border-radius: 20px; box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split-copy h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1.4rem; }
.check-list { margin-bottom: 1.8rem; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .9rem; font-size: 1.02rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%; background: #dcfce7; color: #16a34a;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
.check-list strong { color: var(--ink); }

/* Steps */
.steps .step { text-align: center; padding: 12px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  margin: 0 auto 1.1rem; box-shadow: 0 8px 18px rgba(37, 99, 235, .3);
}
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { font-size: .95rem; }

/* Pricing */
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow-md); transform: translateY(-8px); }
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: .8rem; }
.price { display: flex; align-items: baseline; gap: .35rem; margin-bottom: 1.4rem; }
.price .amount { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.price .per { color: var(--muted); font-size: 1rem; }
.price-card ul { margin-bottom: 1.6rem; flex: 1; }
.price-card li { position: relative; padding-left: 1.7rem; margin-bottom: .7rem; font-size: .96rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.pricing-single { max-width: 420px; margin: 0 auto; }
.price-foot { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.pricing-note { text-align: center; margin-top: 2.4rem; font-size: 1.02rem; }
.pricing-note a { color: var(--blue); font-weight: 600; }

/* Testimonials */
.quote-tile {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.quote-tile blockquote { font-size: 1.04rem; color: var(--ink); margin-bottom: 1.4rem; }
.quote-tile blockquote::before { content: "“"; font-family: var(--font-head); font-size: 2.4rem; color: var(--blue); line-height: 0; vertical-align: -.4rem; margin-right: .1rem; }
.quote-tile figcaption strong { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-tile figcaption span { font-size: .88rem; color: var(--muted); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.g-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item.g-tall { grid-row: span 2; }
.g-item.g-missing { background: linear-gradient(135deg, #dbe6ff, #eef2ff); }
.g-item.g-missing img { display: none; }
.g-item.g-missing figcaption {
  inset: 0; display: grid; place-items: center; padding: 12px; text-align: center;
  background: none; color: var(--blue-ink);
}
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  background: linear-gradient(to top, rgba(11, 18, 32, .8), transparent);
}

/* Nav phone */
.nav-phone { font-weight: 600 !important; color: var(--blue-ink) !important; white-space: nowrap; }
.nav-phone:hover { color: var(--blue) !important; }
.cta-phone { color: #fff; text-decoration: underline; font-weight: 600; }
.footer-contact a { line-height: 1.5; }
.footer-contact a[href^="tel"], .footer-contact a[href^="mailto"] { margin-top: .5rem; }

/* Locations */
.loc-city { margin-bottom: 44px; }
.loc-city > h3 { font-size: 1.4rem; margin-bottom: 18px; display: flex; align-items: center; gap: .6rem; }
.loc-city > h3::before { content: "📍"; font-size: 1.1rem; }
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.loc-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.loc-body { padding: 18px 20px 22px; }
.loc-body h4 { font-size: 1.1rem; margin-bottom: .3rem; }
.loc-body p { font-size: .9rem; color: var(--muted); }

/* Location panel */
.location-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.location-info { padding: 40px; }
.location-info h3 { font-size: 1.45rem; margin-bottom: .9rem; }
.location-addr { font-size: 1.05rem; color: var(--body); margin-bottom: 1.4rem; }
.location-facts { margin-bottom: 1.4rem; }
.location-facts li { font-size: .98rem; margin-bottom: .6rem; }
.location-facts a { color: var(--blue); font-weight: 600; }
.amenity-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.8rem; }
.amenity-tags li {
  font-family: var(--font-head); font-size: .82rem; font-weight: 600; color: var(--blue-ink);
  background: #eef4ff; border: 1px solid #d9e5ff; padding: .4rem .8rem; border-radius: 999px;
}
.location-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.location-map { min-height: 420px; }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--blue-ink), var(--blue)); color: #fff; padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; }
.cta-band p { color: #dbe6ff; margin-top: .5rem; font-size: 1.08rem; }

/* Footer */
.site-footer { background: #0b1220; color: #9fb0cc; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 1rem; max-width: 22rem; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col a { display: block; margin-bottom: .6rem; font-size: .94rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .88rem; flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a:hover { color: #fff; }

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

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-media { order: 2; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item.g-tall { grid-row: span 2; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 20px;
    transform: translateY(-120%); transition: transform .3s ease; box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: .8rem; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .infobar-grid { justify-content: flex-start; }
  .location-panel { grid-template-columns: 1fr; }
  .location-info { padding: 28px; }
  .location-map { min-height: 300px; order: -1; }
  .price-card.featured { transform: none; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-item.g-tall { grid-row: span 2; }
  .hero-stats { gap: 1.6rem; }
  .section { padding: 64px 0; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
