/* ===== Base & Variables ===== */
:root {
  --cream: #fff8f0;
  --cream-soft: #fef1e6;
  --coral: #ff8c69;
  --coral-dark: #ff6f4d;
  --mint: #6fcf97;
  --mint-dark: #4fbe83;
  --yellow: #ffd166;
  --ink: #33272a;
  --gray: #8a817a;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(51, 39, 42, 0.08);
  --shadow-hover: 0 16px 40px rgba(51, 39, 42, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Baloo 2', cursive; line-height: 1.2; }

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

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-coral { color: var(--coral-dark); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--coral); color: var(--white); box-shadow: 0 8px 20px rgba(255,111,77,.35); }
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline { background: transparent; border-color: var(--coral); color: var(--coral-dark); }
.btn-outline:hover { background: var(--coral); color: var(--white); }
.btn-white { background: var(--white); color: var(--coral-dark); }
.btn-white:hover { background: var(--cream-soft); }
.btn-large { padding: 16px 34px; font-size: 1.1rem; }
.btn-small { padding: 10px 20px; font-size: .9rem; }
.btn-full { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(51,39,42,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1.3rem; }
.logo-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: var(--coral); border-radius: 50%;
  font-size: 1.2rem;
}
.logo-text span { color: var(--coral-dark); }
.main-nav { display: flex; gap: 28px; }
.main-nav a { font-weight: 600; color: var(--ink); position: relative; padding: 4px 0; }
.main-nav a:hover { color: var(--coral-dark); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { font-weight: 600; display: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .3s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 70px 0 100px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-block;
  background: var(--white);
  border: 1px solid rgba(255,140,105,.35);
  color: var(--coral-dark);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  margin-bottom: 18px;
}
.hero-text h1 { font-size: 3.1rem; margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: var(--gray); margin-bottom: 30px; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--gray); }
.stars { color: var(--yellow); font-weight: 700; letter-spacing: 1px; }
.stars strong { color: var(--ink); }

.hero-media { display: flex; justify-content: center; }
.collage { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1/1; }
.collage-img {
  position: absolute;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.collage-main { width: 78%; height: 78%; top: 0; right: 0; object-position: center; }
.collage-top { width: 42%; height: 42%; top: 0; left: 0; border-color: var(--yellow); }
.collage-bottom { width: 46%; height: 46%; bottom: 0; left: 8%; border-color: var(--mint); }
.collage-card {
  position: absolute;
  bottom: 6%; right: 2%;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
  font-size: 1.4rem;
}
.collage-card strong { display: block; font-size: .85rem; font-family: 'Quicksand'; }
.collage-card small { color: var(--gray); font-size: .75rem; }

.blob { position: absolute; border-radius: 50%; filter: blur(0px); opacity: .5; z-index: 1; }
.blob-yellow { width: 420px; height: 420px; background: var(--yellow); top: -120px; right: -120px; opacity: .35; }
.blob-mint { width: 320px; height: 320px; background: var(--mint); bottom: -100px; left: -100px; opacity: .25; }
.paw { position: absolute; font-size: 2rem; opacity: .25; z-index: 1; }
.paw-1 { top: 15%; left: 46%; transform: rotate(-20deg); }
.paw-2 { bottom: 10%; right: 42%; transform: rotate(15deg); }
.paw-3 { top: 55%; left: 4%; transform: rotate(30deg); font-size: 1.5rem; }

/* ===== Stats Bar ===== */
.stats-bar { background: var(--ink); color: var(--white); padding: 34px 0; }
.stats-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; text-align: center; }
.stat { flex: 1; min-width: 140px; display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: 'Baloo 2', cursive; font-size: 2rem; color: var(--yellow); }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: 2.2rem; margin: 12px 0 14px; }
.section-head p { color: var(--gray); font-size: 1.05rem; }

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

/* Service cards */
.icon-circle {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px;
}
.bg-coral { background: rgba(255,140,105,.18); }
.bg-mint { background: rgba(111,207,151,.2); }
.bg-yellow { background: rgba(255,209,102,.28); }
.service-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.service-card p { color: var(--gray); margin-bottom: 16px; }
.card-link { color: var(--coral-dark); font-weight: 700; }
.card-link:hover { text-decoration: underline; }

/* Why Us */
.why-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.why-media { position: relative; }
.why-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 420px; object-fit: cover; }
.why-badge {
  position: absolute; bottom: -18px; left: 24px;
  background: var(--white); padding: 12px 20px; border-radius: 14px;
  font-weight: 700; box-shadow: var(--shadow); font-size: .9rem;
}
.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 20px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  box-shadow: var(--shadow); flex-shrink: 0;
}
.feature-list strong { display: block; margin-bottom: 3px; font-family: 'Baloo 2'; }
.feature-list p { color: var(--gray); font-size: .95rem; }

/* Gallery */
.filter-bar { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 22px; border-radius: 999px; border: 2px solid var(--coral);
  background: transparent; color: var(--coral-dark); font-weight: 700; cursor: pointer;
  font-family: 'Quicksand'; transition: .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--coral); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow); cursor: pointer; transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }
.gallery-item.hidden { display: none; }

/* Pricing */
.pricing-grid { align-items: stretch; }
.pricing-card { text-align: center; position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { border: 3px solid var(--coral); transform: scale(1.04); }
.ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: var(--white); padding: 6px 18px; border-radius: 999px;
  font-size: .8rem; font-weight: 700; white-space: nowrap;
}
.price { font-family: 'Baloo 2'; font-size: 2.6rem; color: var(--coral-dark); margin: 10px 0; }
.price span { font-size: 1rem; color: var(--gray); font-family: 'Quicksand'; }
.price-desc { color: var(--gray); margin-bottom: 18px; }
.price-list { text-align: left; margin-bottom: 26px; flex-grow: 1; }
.price-list li { padding: 8px 0; border-bottom: 1px dashed rgba(51,39,42,.1); }

/* Testimonials */
.testimonial-card p { margin: 16px 0 22px; font-style: italic; color: var(--ink); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Baloo 2';
}
.testimonial-author small { color: var(--gray); }

/* FAQ Accordion */
.faq-inner { max-width: 760px; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion-item { background: var(--white); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.accordion-head {
  width: 100%; text-align: left; padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: 'Baloo 2'; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
.accordion-head span { transition: transform .25s ease; color: var(--coral-dark); font-size: 1.3rem; }
.accordion-item.open .accordion-head span { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-body p { padding: 0 24px 20px; color: var(--gray); }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.contact-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.contact-list a { font-weight: 700; color: var(--coral-dark); }
.map-placeholder {
  background: linear-gradient(135deg, rgba(111,207,151,.25), rgba(255,209,102,.25));
  border: 2px dashed rgba(51,39,42,.15);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); font-size: 1.2rem;
}

.contact-form { background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .9rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 2px solid rgba(51,39,42,.12);
  font-family: 'Quicksand'; font-size: .95rem; background: var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--coral);
}
.form-note { margin-top: 14px; font-weight: 700; color: var(--mint-dark); text-align: center; min-height: 20px; }

/* CTA Banner */
.cta-banner { background: linear-gradient(120deg, var(--coral), var(--coral-dark)); padding: 70px 0; }
.cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta-inner h2 { color: var(--white); font-size: 2rem; max-width: 600px; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { margin: 14px 0 18px; font-size: .9rem; }
.site-footer .logo-text { color: var(--white); }
.footer-col h4 { color: var(--white); font-family: 'Baloo 2'; margin-bottom: 16px; font-size: 1.05rem; }
.footer-col a { display: block; margin-bottom: 10px; font-size: .92rem; }
.footer-col a:hover { color: var(--coral); }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1; padding: 10px 12px; border-radius: 10px; border: none; font-family: 'Quicksand';
}
#newsletter-note { margin-top: 10px; font-size: .85rem; color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); text-align: center; padding: 20px 0; font-size: .85rem;
}

/* Back to top */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--coral); color: var(--white); border: none; font-size: 1.3rem; cursor: pointer;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .3s, transform .2s;
  z-index: 90;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { transform: translateY(-3px); }

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

/* ===== Responsive ===== */
@media (min-width: 1024px) {
  .header-phone { display: inline-block; }
}

@media (max-width: 960px) {
  .hero-inner, .why-inner, .contact-inner { grid-template-columns: 1fr; }
  .why-media { order: 2; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); flex-direction: column;
    padding: 20px 24px; gap: 6px; box-shadow: var(--shadow); transform: translateY(-150%); transition: transform .3s ease; }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(51,39,42,.06); }
  .hamburger { display: flex; }
  .hero-text h1 { font-size: 2.2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}
