:root {
  --navy: #1E2D3D;
  --teal: #4FA6A8;
  --teal-tint: #E4F2F2;
  --gray: #6B7280;
  --border: #E5E7EB;
  --bg-alt: #F3F4F6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--navy);
  background: #FFFFFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }
img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-shadow: 0 1px 0 rgba(30,45,61,0.08);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name span { font-weight: 800; font-size: 17px; letter-spacing: 0.02em; }
.brand-name .b1 { color: var(--navy); }
.brand-name .b2 { color: var(--teal); }

nav.main-nav { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
nav.main-nav a.nav-link { font-size: 15px; font-weight: 600; color: var(--navy); white-space: nowrap; }
nav.main-nav a.nav-link.active { color: var(--teal); }
.btn {
  display: inline-block;
  background: var(--teal);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { color: #FFFFFF; opacity: 0.92; }
.btn-outline {
  display: inline-block;
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
}
.btn-outline:hover { color: #FFFFFF; opacity: 0.85; }

.menu-toggle { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; background: none; border: none; }
.menu-toggle span { width: 22px; height: 2px; background: var(--navy); }
.mobile-menu { display: none; }

@media (max-width: 900px) {
  nav.main-nav .nav-link { display: none; }
  nav.main-nav .btn.desktop-only { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 84px;
    z-index: 99;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(30,45,61,0.12);
    padding: 8px 32px 20px;
  }
  .mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; font-weight: 600; color: var(--navy); }
  .mobile-menu a.active { color: var(--teal); }
}

/* Hero (home) */
.hero-home {
  position: relative;
  height: 620px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.hero-home::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,45,61,0.88) 20%, rgba(30,45,61,0.45) 100%);
}
.hero-home-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  max-width: 620px;
  padding: 0 64px;
}
.hero-home-content h1 { margin: 0; font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #FFFFFF; line-height: 1.12; }
.hero-home-content p { margin: 0; font-size: 19px; color: var(--teal-tint); line-height: 1.55; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero (service pages) */
.hero-service {
  position: relative;
  height: 320px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.hero-service::before { content: ""; position: absolute; inset: 0; background: rgba(30,45,61,0.72); }
.hero-service-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  align-items: center;
}
.hero-service-content .eyebrow { color: var(--teal-tint); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.hero-service-content h1 { margin: 0; font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #FFFFFF; }

/* Sections */
.section { max-width: 1200px; margin: 0 auto; padding: 96px 32px; }
.section-narrow { max-width: 900px; margin: 0 auto; padding: 72px 32px; }
.section h2 { margin: 0 0 48px; font-size: 32px; font-weight: 800; text-align: center; }
.section-tint { background: var(--teal-tint); }

.cards { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.card {
  flex: 1 1 300px; max-width: 360px;
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 32px; display: flex; flex-direction: column; gap: 16px;
}
.card img.icon { width: 56px; height: 56px; border-radius: 14px; }
.card h3 { margin: 0; font-size: 20px; font-weight: 700; }
.card p { margin: 0; color: var(--gray); font-size: 15px; line-height: 1.5; }
.card .more { color: var(--teal); font-weight: 700; font-size: 15px; margin-top: auto; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px 40px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-dot { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--teal); margin-top: 3px; }
.why-item p { margin: 0; font-size: 16px; line-height: 1.5; }

.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px 32px; }
.included-item { display: flex; gap: 12px; align-items: flex-start; }
.included-dot { width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--teal); margin-top: 8px; }
.included-item p { margin: 0; font-size: 16px; line-height: 1.5; }

.info-cards { display: flex; gap: 24px; flex-wrap: wrap; }
.info-card { flex: 1 1 320px; border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.info-card.price { background: var(--teal-tint); }
.info-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 700; }
.info-card p { margin: 0; font-size: 15px; color: var(--gray); line-height: 1.55; }
.info-card.price p { color: var(--navy); }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; }

.cta-band { background: var(--navy); padding: 72px 32px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta-band h2 { margin: 0; font-size: 30px; font-weight: 800; color: #FFFFFF; }

.cta-center { text-align: center; padding-bottom: 96px; }

.split { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.split > * { flex: 1 1 340px; }
.split img { border-radius: 20px; width: 100%; height: 360px; object-fit: cover; }

.note-box { border: 1px dashed var(--teal); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.note-box .label { margin: 0; font-size: 14px; font-weight: 700; color: var(--teal); }
.note-box p.body { margin: 0; font-size: 15px; color: var(--gray); line-height: 1.6; font-style: italic; }

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card { border: 1px solid var(--border); border-radius: 16px; padding: 24px; background: #FFFFFF; }
.review-card p.quote { margin: 0 0 12px; font-size: 15px; line-height: 1.6; }
.review-card p.meta { margin: 0; font-size: 13px; color: var(--gray); font-weight: 600; }

/* Contact */
.contact-grid { display: flex; gap: 56px; flex-wrap: wrap; }
.contact-form { flex: 1 1 420px; display: flex; flex-direction: column; gap: 18px; }
.contact-form input, .contact-form textarea {
  padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: inherit; width: 100%;
}
.contact-side { flex: 1 1 340px; display: flex; flex-direction: column; gap: 24px; }
.contact-side h3 { margin: 0 0 6px; font-size: 15px; color: var(--gray); }
.contact-side .value { font-size: 18px; font-weight: 700; }
.contact-side img { border-radius: 20px; width: 100%; height: 220px; object-fit: cover; }

/* Footer */
footer {
  margin-top: auto; background: var(--bg-alt); padding: 48px 32px 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.footer-top { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 36px; height: 36px; border-radius: 10px; }
.footer-brand span { font-weight: 800; font-size: 15px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; font-weight: 600; color: var(--gray); }
.footer-bottom { max-width: 1200px; margin: 0 auto; width: 100%; border-top: 1px solid var(--border); padding-top: 20px; font-size: 13px; color: var(--gray); }

.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: var(--teal); color: #FFFFFF; font-weight: 700; font-size: 14px;
  padding: 14px 22px; border-radius: 999px; box-shadow: 0 6px 18px rgba(30,45,61,0.25);
}
.whatsapp-float:hover { color: #FFFFFF; }

@media (max-width: 640px) {
  .section, .section-narrow { padding-left: 20px; padding-right: 20px; }
  .hero-home-content { padding: 0 24px; }
}
