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

:root {
  --forest:   #1E2B22;
  --terra:    #E85C3A;
  --cream:    #FDF6EE;
  --sage:     #7A8C7E;
  --amber:    #F2C94C;
  --deepfor:  #2E4237;
  --white:    #FFFFFF;
  --border:   #E8E0D5;
  --lightbg:  #F5F0E8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--forest);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

p { color: #3D4D42; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--forest);
}

.nav-logo .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-logo .icon svg { width: 18px; height: 18px; }
.nav-logo .accent { color: var(--terra); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  color: var(--sage);
  transition: color .2s;
}

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

.nav-cta {
  background: var(--terra);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem !important;
  transition: background .2s, transform .15s !important;
}

.nav-cta:hover {
  background: #d44f2e !important;
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: .3s;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .2s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--terra); color: var(--white); }
.btn-primary:hover { background: #d44f2e; }

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-secondary:hover { background: var(--forest); color: var(--cream); }

.btn-white { background: var(--white); color: var(--forest); }
.btn-white:hover { background: var(--cream); }

.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover { background: #1fba59; }

/* ── SECTIONS ────────────────────────────────────────────── */
section { padding: 96px 5vw; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-intro { font-size: 1.1rem; color: var(--sage); max-width: 560px; margin-bottom: 48px; line-height: 1.7; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  background: var(--forest);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: .06em;
}

.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
}

.hero h1 .accent { color: var(--terra); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--sage);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--cream);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 400;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30,43,34,.1);
}

.step-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.95rem; color: var(--sage); }

/* ── SERVICES ─────────────────────────────────────────────── */
.services { background: var(--lightbg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30,43,34,.1);
}

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--lightbg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 24px; height: 24px; }

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--sage); flex: 1; margin-bottom: 20px; }

.service-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--terra);
  margin-bottom: 16px;
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform .2s;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  border: 2px solid var(--forest);
  background: var(--forest);
  color: var(--cream);
}

.featured-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.pricing-card.featured h3 { color: var(--sage); }

.pricing-rate {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--forest);
}

.pricing-card.featured .pricing-rate { color: var(--cream); }

.pricing-rate span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--sage);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--sage);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--sage);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card.featured .pricing-features li {
  color: #9EB0A2;
  border-bottom-color: rgba(255,255,255,.1);
}

.pricing-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews { background: var(--forest); }
.reviews .section-label { color: rgba(122,140,126,.8); }
.reviews .section-title { color: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 28px;
}

.review-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: #B8C5BB;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--cream);
}

.review-location {
  font-size: 0.8rem;
  color: var(--sage);
}

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: var(--terra);
  padding: 80px 5vw;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 36px; font-size: 1.05rem; }

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--deepfor);
  padding: 56px 5vw 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--sage); line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.88rem; color: var(--sage); transition: color .2s; }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--sage); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 99;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}

.wa-float svg { width: 30px; height: 30px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 140px 5vw 80px;
  background: var(--forest);
}

.page-hero h1 { color: var(--cream); margin-bottom: 16px; }
.page-hero p { color: var(--sage); font-size: 1.1rem; max-width: 560px; }

/* ── BOOKING PAGE ────────────────────────────────────────── */
.booking-section { background: var(--cream); }

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.simplybook-embed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  min-height: 600px;
}

.simplybook-embed p {
  text-align: center;
  color: var(--sage);
  padding: 40px 20px;
  font-size: 0.95rem;
}

.booking-sidebar { display: flex; flex-direction: column; gap: 16px; }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.sidebar-card h3 { margin-bottom: 10px; font-size: 1rem; }
.sidebar-card p { font-size: 0.88rem; color: var(--sage); line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin-top: 48px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  cursor: pointer;
}

.faq-q {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q .icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--lightbg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform .3s, background .2s;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
  background: var(--terra);
  color: white;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--sage);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 14px;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: 14px;
  outline: none;
  transition: border-color .2s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--terra); }
.contact-form textarea { height: 140px; resize: vertical; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    padding: 24px 5vw 32px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    z-index: 99;
  }

  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 64px 5vw; }
}
