/* ========================
   CSS Custom Properties — themed to Friends Indeed flyer
======================== */
:root {
  --bg:             #f7f3eb;        /* warm cream background */
  --bg-section:     #ffffff;
  --accent:         #4d7a58;        /* sage green (icon circles) */
  --accent-dark:    #2c5435;        /* deep forest green (headings, footer) */
  --accent-light:   #e8f0ea;        /* light sage */
  --accent-lighter: #f0f6f1;
  --coral:          #d4826a;        /* peach / coral (hearts, accents) */
  --coral-light:    #faece7;        /* light peach */
  --text:           #1e3828;        /* very dark green for body text */
  --text-muted:     #546858;
  --border:         #cdddd6;
  --shadow-sm:      0 2px 8px rgba(44,84,53,0.08);
  --shadow:         0 4px 20px rgba(44,84,53,0.13);
  --shadow-lg:      0 8px 40px rgba(44,84,53,0.18);
  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      20px;
  --font-body:      'Lato', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-script:    'Dancing Script', Georgia, serif;
  --font-serif:     Georgia, 'Times New Roman', serif;
}

/* ========================
   Reset & Base
======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

/* ========================
   Typography
======================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.3;
  color: var(--accent-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ========================
   Layout
======================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 80px 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.tag {
  display: inline-block;
  background: var(--coral-light);
  color: var(--coral);
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ========================
   Buttons
======================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s ease; border: 2px solid transparent;
  text-decoration: none; font-family: var(--font-body); line-height: 1;
}
.btn-primary {
  background: var(--accent-dark); color: #fff; border-color: var(--accent-dark);
}
.btn-primary:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
  transform: translateY(-1px); box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent; color: var(--accent-dark); border-color: var(--accent-dark);
}
.btn-outline:hover {
  background: var(--accent-dark); color: #fff; transform: translateY(-1px);
}
.btn-white {
  background: #fff; color: var(--accent-dark); border-color: #fff;
}
.btn-white:hover {
  background: var(--coral-light); transform: translateY(-1px);
}
.btn-coral {
  background: var(--coral); color: #fff; border-color: var(--coral);
}
.btn-coral:hover {
  background: #c0705a; border-color: #c0705a; transform: translateY(-1px);
}
.btn-lg { padding: 1.05rem 2.5rem; font-size: 1.05rem; }

/* ========================
   Navigation
======================== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-script);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1;
}
.logo-heart {
  color: var(--coral);
  font-size: 1rem;
  line-height: 1;
  margin-right: 2px;
}

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); font-weight: 600; font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-dark); }
.nav-cta { margin-left: 0.5rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* ========================
   Hero — split panel
======================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* ── Left green panel ── */
.hero-left {
  background: #2c5435;
  color: white;
  padding: 90px 7% 90px 6%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 20c-2-8-12-12-18-6s-6 16 0 22l18 18 18-18c6-6 6-16 0-22s-16-2-18 6z' fill='%23ffffff' fill-opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Right image panel ── */
.hero-right {
  background: url('images/hero.jpg') center / cover no-repeat;
  background-color: #c8dfc8; /* soft green fallback while image loads */
  position: relative;
}

.hero-content { position: relative; z-index: 1; width: 100%; }

.hero-tag {
  display: inline-block;
  background: rgba(212,130,106,0.25);
  color: #f0c4b0;
  border: 1px solid rgba(212,130,106,0.4);
  padding: 0.3rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero h1 { color: white; margin-bottom: 0.85rem; text-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #f0c4b0;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1;
}
.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 560px; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-stat { color: rgba(255,255,255,0.95); }
.hero-stat strong {
  display: block; font-size: 1.9rem;
  font-family: var(--font-serif); font-weight: 700;
  line-height: 1; margin-bottom: 0.2rem;
}
.hero-stat span { font-size: 0.88rem; opacity: 0.78; }

/* ========================
   Disclaimer banner
======================== */
.disclaimer-bar {
  background: var(--coral-light);
  border-bottom: 1px solid rgba(212,130,106,0.25);
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #8a4535;
}
.disclaimer-bar strong { color: #7a3828; }

/* ========================
   Services Section
======================== */
.services { background: var(--bg-section); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.5rem; }

.service-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.6rem; transition: all 0.25s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--coral); transform: scaleX(0); transition: transform 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow); transform: translateY(-3px);
  border-color: rgba(212,130,106,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem; box-shadow: 0 3px 10px rgba(44,84,53,0.2);
}
.service-card h3 { margin-bottom: 0.5rem; color: var(--accent-dark); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.03em; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 0; }

/* ── Welfare Checks row: card + standalone image ── */
.services-bottom-row {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) 3fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: start;
}
.welfare-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 312px;
}
.welfare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* ========================
   About Section
======================== */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #d4e8d8; /* fallback while image loads */
  aspect-ratio: 4/3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); }
.about-script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--coral);
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.values-list { list-style: none; margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; }
.values-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.97rem; }
.values-list li::before {
  content: '♡';
  color: var(--coral);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
  line-height: 1.5;
}

/* ========================
   Why Choose Us
======================== */
.why-us {
  background: var(--accent-lighter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; }
.why-card {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-card h4 { color: var(--accent-dark); margin-bottom: 0.4rem; font-size: 1rem; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ========================
   How It Works
======================== */
.how-it-works { background: var(--bg-section); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 32px;
  left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px; background: var(--border); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 64px; height: 64px; background: var(--accent-dark); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-family: var(--font-serif); font-weight: 700;
  margin: 0 auto 1.25rem; box-shadow: 0 4px 16px rgba(44,84,53,0.3);
}
.step h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step p { color: var(--text-muted); font-size: 0.93rem; }

/* ========================
   Testimonials
======================== */
.testimonials { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-section); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--border);
}
.stars { color: var(--coral); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-card blockquote {
  font-style: italic; color: var(--text-muted); margin-bottom: 1.25rem;
  line-height: 1.75; font-size: 0.97rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--accent-dark); flex-shrink: 0; font-size: 0.82rem;
}
.author-info strong { display: block; font-size: 0.95rem; color: var(--accent-dark); }
.author-info span { font-size: 0.85rem; color: var(--text-muted); }

/* ========================
   FAQ
======================== */
.faq { background: var(--bg-section); }
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg); border-radius: var(--radius-sm); border: 1px solid var(--border); overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; padding: 1.25rem 1.5rem;
  text-align: left; font-size: 1rem; font-weight: 600; color: var(--accent-dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; transition: color 0.2s; font-family: var(--font-body);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px; background: var(--coral-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--coral); font-size: 1.1rem; font-weight: 700;
  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 1.5rem; color: var(--text-muted); font-size: 0.97rem;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* ========================
   CTA Banner
======================== */
.cta-banner {
  background: linear-gradient(135deg, #1e3828, var(--accent-dark));
  color: white; text-align: center; padding: 80px 0;
}
.cta-banner h2 { color: white; margin-bottom: 0.75rem; }
.cta-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: #f0c4b0;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.cta-banner p { opacity: 0.88; font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ========================
   Footer
======================== */
footer { background: #1e3828; color: rgba(255,255,255,0.75); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.92rem; margin-top: 0.85rem; line-height: 1.75; opacity: 0.72; }
.footer-logo {
  font-family: var(--font-script); font-size: 1.9rem; font-weight: 700;
  color: white; line-height: 1;
}
.footer-logo .heart { color: var(--coral); font-family: var(--font-body); font-size: 1rem; }
.footer-tagline {
  font-style: italic; font-size: 0.88rem;
  color: rgba(212,130,106,0.85); margin-top: 0.3rem;
}
.footer-section h4 {
  color: white; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 1rem; font-family: var(--font-body);
}
.footer-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-section ul a { color: rgba(255,255,255,0.62); font-size: 0.9rem; transition: color 0.2s; }
.footer-section ul a:hover { color: white; }
.footer-section p { font-size: 0.9rem; opacity: 0.7; margin-bottom: 0.45rem; }
.footer-section a { color: rgba(255,255,255,0.7); }
.footer-section a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; opacity: 0.5;
}
.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ========================
   Page Hero (inner pages)
======================== */
.page-hero {
  background: linear-gradient(135deg, #1e3828, var(--accent-dark));
  color: white; padding: 60px 0; text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.85; font-size: 1.05rem; }
.page-hero-script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: #f0c4b0;
  display: block;
  margin-top: 0.5rem;
}

/* ========================
   Booking Form
======================== */
.booking-section { padding: 60px 0; }
.booking-wrapper { max-width: 800px; margin: 0 auto; }

.progress-bar { display: flex; align-items: flex-start; margin-bottom: 3rem; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; flex: 1; position: relative; }
.progress-step::after {
  content: ''; position: absolute; top: 20px; left: 50%; right: -50%;
  height: 2px; background: var(--border); z-index: 0;
}
.progress-step:last-child::after { display: none; }
.progress-step.done::after { background: var(--accent-dark); }
.step-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-section); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; position: relative; z-index: 1; transition: all 0.3s;
}
.progress-step.active .step-dot { background: var(--accent-dark); border-color: var(--accent-dark); color: white; }
.progress-step.done .step-dot { background: var(--accent); border-color: var(--accent); color: white; }
.step-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-align: center; }
.progress-step.active .step-label { color: var(--accent-dark); }

.booking-card {
  background: var(--bg-section); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.booking-card h2 { margin-bottom: 0.5rem; }
.booking-card > p { color: var(--text-muted); margin-bottom: 2rem; }

.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.service-option {
  border: 2px solid var(--border); border-radius: var(--radius); padding: 1.25rem;
  cursor: pointer; transition: all 0.2s; background: var(--bg);
}
.service-option:hover { border-color: var(--accent-dark); box-shadow: var(--shadow-sm); }
.service-option.selected { border-color: var(--accent-dark); background: var(--accent-light); }
.service-option h4 { margin-bottom: 0.35rem; font-size: 0.95rem; color: var(--accent-dark); font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.service-option p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.service-option .price { font-size: 1.2rem; font-weight: 700; color: var(--accent-dark); font-family: var(--font-serif); }

.calendar-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-month { font-weight: 700; font-size: 1.1rem; color: var(--accent-dark); }
.cal-arrow {
  background: var(--accent-light); border: none; border-radius: var(--radius-sm);
  width: 36px; height: 36px; cursor: pointer; font-size: 1.1rem; color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.cal-arrow:hover { background: var(--accent-dark); color: white; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-header-cell {
  text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
  padding: 0.45rem 0; text-transform: uppercase; letter-spacing: 0.04em;
}
.cal-day {
  aspect-ratio: 1; border-radius: var(--radius-sm); border: 1px solid transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer; transition: all 0.2s; background: none;
}
.cal-day:not(.disabled):not(.empty):hover {
  background: var(--accent-light); border-color: var(--accent-dark); color: var(--accent-dark);
}
.cal-day.selected { background: var(--accent-dark); color: white; font-weight: 700; border-color: var(--accent-dark); }
.cal-day.today:not(.selected) { font-weight: 700; border-color: var(--coral); color: var(--coral); }
.cal-day.disabled { opacity: 0.3; cursor: not-allowed; }
.cal-day.empty { cursor: default; }

.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(105px, 1fr)); gap: 0.6rem; margin-top: 1rem; }
.time-slot {
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.65rem; text-align: center; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; background: var(--bg); transition: all 0.2s; color: var(--text);
}
.time-slot:hover { border-color: var(--accent-dark); color: var(--accent-dark); }
.time-slot.selected { background: var(--accent-dark); border-color: var(--accent-dark); color: white; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--accent-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1rem; color: var(--text); background: var(--bg);
  transition: border-color 0.2s; font-family: var(--font-body); outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(44,84,53,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.order-summary {
  background: var(--accent-lighter); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 2rem; border: 1px solid var(--border);
}
.order-summary h4 { margin-bottom: 1rem; color: var(--accent-dark); }
.order-row { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--text-muted); }
.order-row.total {
  margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border);
  font-weight: 700; font-size: 1.1rem; color: var(--accent-dark); margin-bottom: 0;
}
.booking-nav { display: flex; gap: 1rem; margin-top: 2rem; justify-content: flex-end; }

/* ========================
   Contact Page
======================== */
.contact-section { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  background: var(--bg-section); border-radius: var(--radius); border: 1px solid var(--border);
}
.contact-card-icon {
  width: 44px; height: 44px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; box-shadow: 0 2px 8px rgba(44,84,53,0.2);
}
.contact-card-content strong {
  display: block; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.2rem;
}
.contact-card-content a { color: var(--accent-dark); font-weight: 600; }
.contact-card-content a:hover { color: var(--accent); }
.contact-form-wrap {
  background: var(--bg-section); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; color: var(--accent-dark); }

/* ========================
   Success / Cancel Pages
======================== */
.result-page {
  min-height: 70vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 60px 1.5rem;
}
.result-card {
  background: var(--bg-section); border-radius: var(--radius-lg);
  padding: 3rem; max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.result-icon { font-size: 4rem; margin-bottom: 1.25rem; }
.result-card h1 { font-size: 2rem; margin-bottom: 1rem; }
.result-card p { color: var(--text-muted); margin-bottom: 1rem; }
.result-script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--coral);
  display: block;
  margin: 0.5rem 0 1.5rem;
}

/* ========================
   Alerts
======================== */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.95rem; margin-top: 1rem; }
.alert-info { background: #e8f4fd; border: 1px solid #b3d9f0; color: #1a5276; }
.alert-success { background: var(--accent-light); border: 1px solid var(--border); color: var(--accent-dark); }
.alert-error { background: #fdecea; border: 1px solid #f5c6c6; color: #7b1a1a; }

/* ========================
   Responsive
======================== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  /* Stack hero on tablet */
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 320px; order: -1; }
  .hero-left { padding: 70px 2rem; justify-content: flex-start; }
}

@media (max-width: 700px) {
  section { padding: 56px 0; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: white; padding: 1.5rem; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow); flex-direction: column; gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .service-options { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .hero-right { min-height: 260px; }
  .hero-left { padding: 56px 1.5rem; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-nav { flex-direction: column-reverse; }
  .booking-nav .btn { width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  /* Bottom row stacks on mobile */
  .services-bottom-row { grid-template-columns: 1fr; }
  .welfare-image { min-height: 220px; }
}
