/* === HOME PAGE STYLES (index.html) === */

body { overflow-x: hidden; }
nav { animation: slideDown 0.6s ease both; }
@keyframes slideDown { from { transform: translateY(-100%); opacity:0; } to { transform: translateY(0); opacity:1; } }

/* HERO */
#hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 6% 80px; position: relative; overflow: hidden; }
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.35; }
.blob-1 { width: 520px; height: 520px; background: var(--sage-light); top: -100px; right: -100px; animation: float1 8s ease-in-out infinite; }
.blob-2 { width: 380px; height: 380px; background: var(--terracotta-light); bottom: -80px; left: 10%; animation: float2 10s ease-in-out infinite; }
.blob-3 { width: 260px; height: 260px; background: var(--gold); top: 40%; right: 25%; animation: float3 7s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-25px)} }
@keyframes float3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-15px,15px)} }
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(122,158,126,0.15); border: 1px solid rgba(122,158,126,0.35); color: var(--sage-dark); padding: 7px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; animation: fadeUp 0.7s 0.2s ease both; }
.hero-badge .dot { width: 7px; height: 7px; background: var(--sage); border-radius: 50%; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5.5vw, 4.4rem); font-weight: 700; line-height: 1.1; color: var(--text); margin-bottom: 24px; animation: fadeUp 0.7s 0.35s ease both; }
.hero-title em { font-style: italic; color: var(--terracotta); }
.hero-sub { font-size: 1.15rem; line-height: 1.75; color: var(--text-light); max-width: 500px; margin-bottom: 40px; animation: fadeUp 0.7s 0.5s ease both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.7s 0.65s ease both; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; animation: fadeUp 0.7s 0.8s ease both; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--sage-dark); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--text-lighter); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.hero-image-wrap { position: absolute; right: 0; top: 0; bottom: 0; width: 46%; z-index: 1; overflow: hidden; animation: fadeIn 1.2s 0.3s ease both; }
.hero-image-wrap::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 120px; background: linear-gradient(to right, var(--cream), transparent); z-index: 2; }
.hero-illustration { width: 100%; height: 100%; background: linear-gradient(135deg, #d4e8d6 0%, #c5dfc8 40%, #a8c5ac 100%); display: flex; align-items: center; justify-content: center; }
.hero-illustration svg { width: 72%; height: 72%; opacity: 0.9; }

/* WHY */
#why { background: var(--warm-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px 80px; margin-top: 60px; align-items: start; }
.why-features { display: flex; flex-direction: column; gap: 28px; }
.feature-card { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border-radius: 18px; background: #fff; border: 1px solid rgba(122,158,126,0.12); box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.25s, box-shadow 0.25s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.feature-icon.green { background: rgba(122,158,126,0.15); }
.feature-icon.orange { background: rgba(201,123,90,0.12); }
.feature-icon.gold { background: rgba(212,168,71,0.15); }
.feature-icon.blue { background: rgba(100,149,190,0.12); }
.feature-text h3 { font-weight: 700; font-size: 1rem; margin-bottom: 5px; color: var(--text); }
.feature-text p { font-size: 0.92rem; color: var(--text-light); line-height: 1.65; }
.why-promise { margin-top: 40px; padding: 36px; border-radius: 24px; background: linear-gradient(135deg, var(--sage-dark), var(--sage)); color: #fff; }
.why-promise h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 12px; }
.why-promise p { font-size: 0.95rem; line-height: 1.7; opacity: 0.9; }

/* SERVICES */
#services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card { border-radius: 24px; overflow: hidden; background: #fff; border: 1px solid rgba(122,158,126,0.12); box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.service-card-header { padding: 36px 32px 24px; }
.service-card-header.res { background: linear-gradient(135deg, #e8f4ea, #d4e8d6); }
.service-card-header.com { background: linear-gradient(135deg, #f4ece8, #e8d4c8); }
.service-emoji { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.service-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text); }
.service-card-body { padding: 24px 32px 32px; }
.service-card-body p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-light); font-weight: 500; }
.service-list li::before { content: '✓'; width: 22px; height: 22px; border-radius: 50%; background: rgba(122,158,126,0.2); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; flex-shrink: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--terracotta); font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* PROCESS */
#process { background: var(--warm-white); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-sub { margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px; background: linear-gradient(to right, var(--sage-light), var(--terracotta-light)); }
.process-step { text-align: center; padding: 0 16px; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: #fff; border: 3px solid var(--sage); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--sage-dark); position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(122,158,126,0.25); }
.process-step:nth-child(2) .step-num { border-color: var(--terracotta-light); color: var(--terracotta); }
.process-step:nth-child(3) .step-num { border-color: var(--gold); color: var(--gold); }
.process-step:nth-child(4) .step-num { border-color: var(--sage-dark); color: var(--sage-dark); }
.process-step h3 { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* REVIEWS */
#reviews { background: var(--cream); }
.reviews-header { margin-bottom: 56px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: 22px; padding: 32px; border: 1px solid rgba(122,158,126,0.12); box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.25s; }
.review-card:hover { transform: translateY(-4px); }
.review-card.featured { background: linear-gradient(135deg, var(--sage-dark), var(--sage)); color: #fff; border: none; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; font-size: 1rem; color: var(--gold); }
.review-text { font-size: 0.97rem; line-height: 1.75; color: var(--text-light); font-style: italic; margin-bottom: 24px; }
.review-card.featured .review-text { color: rgba(255,255,255,0.9); }
.review-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.av1 { background: rgba(122,158,126,0.2); color: var(--sage-dark); }
.av2 { background: rgba(201,123,90,0.15); color: var(--terracotta); }
.review-card.featured .author-avatar { background: rgba(255,255,255,0.2); color: #fff; }
.author-info strong { font-weight: 700; font-size: 0.95rem; display: block; }
.author-info span { font-size: 0.82rem; color: var(--text-lighter); }
.review-card.featured .author-info span { color: rgba(255,255,255,0.7); }
.review-card.featured .author-info strong { color: #fff; }

/* BOOKING */
#booking { background: var(--warm-white); }
.trust-badges { margin-top: -4px; }
.form-success { text-align: center; padding: 48px 24px; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--sage-dark); margin-bottom: 10px; }
.form-success p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* CONTACT */
#contact { background: linear-gradient(135deg, #2d4a30 0%, #3d6040 50%, #4e7252 100%); color: #fff; text-align: center; padding: 100px 6%; }
#contact .section-label { color: var(--terracotta-light); }
#contact .section-title { color: #fff; margin: 0 auto 20px; max-width: 600px; }
#contact .section-sub { color: rgba(255,255,255,0.75); margin: 0 auto 48px; }
.contact-cards { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.contact-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 18px; padding: 24px 32px; text-align: left; min-width: 200px; transition: background 0.25s; }
.contact-card:hover { background: rgba(255,255,255,0.18); }
.contact-card .label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.contact-card .value { font-size: 1.05rem; font-weight: 600; color: #fff; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--sage-dark); padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.25s; box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }
.btn-ghost { background: transparent; color: #fff; padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid rgba(255,255,255,0.5); transition: all 0.25s; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

/* FAQ */
#faq { background: var(--cream); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-sub { margin: 0 auto; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border-radius: 18px; border: 1px solid rgba(122,158,126,0.15); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 22px 28px; font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-question:hover { color: var(--sage-dark); }
.faq-question .faq-icon { font-size: 1.1rem; color: var(--terracotta); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 28px; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 28px 22px; }
.faq-answer p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero-image-wrap { width: 38%; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  #hero { padding: 100px 5% 60px; }
  .hero-image-wrap { display: none; }
  .hero-content { max-width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING FUNNEL MODAL (Step 1 only — urgency question)
   ============================================================ */

/* Overlay */
.funnel-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.funnel-overlay.active { opacity: 1; pointer-events: all; }

/* Modal */
.funnel-modal {
  background: #fff; border-radius: 24px;
  max-width: 520px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.funnel-overlay.active .funnel-modal { transform: translateY(0) scale(1); }

/* Close button */
.funnel-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  background: rgba(0,0,0,0.06); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1.1rem; color: var(--text-light);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.funnel-close:hover { background: rgba(0,0,0,0.12); }

/* Content area */
.funnel-body { padding: 28px 28px 32px; }

/* Step question */
.funnel-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--text); line-height: 1.25;
  margin-bottom: 24px;
}

/* Option cards */
.funnel-options { display: flex; flex-direction: column; gap: 12px; }
.funnel-card {
  background: #fff; border: 2px solid var(--sage);
  border-radius: 16px; padding: 20px 24px;
  cursor: pointer; transition: all 0.2s;
  width: 100%;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--text);
}
.funnel-card:hover { border-color: var(--sage-dark); background: rgba(122,158,126,0.04); }

/* Responsive */
@media (max-width: 540px) {
  .funnel-body { padding: 22px 20px 28px; }
  .funnel-question { font-size: 1.3rem; }
  .funnel-card { padding: 16px 18px; }
}
