/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; color: #1a1a1a; background: #fff; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ─── CSS Variables ─── */
:root {
  --green-dark:  #0d3d2e;
  --teal:        #00c896;
  --white:       #ffffff;
  --gray-bg:     #f7f9f8;
  --footer-bg:   #081f14;
  --section-pad: 90px;
  --max-w:       1200px;
}

/* ─── Container ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── Section Label ─── */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-primary     { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.btn-primary:hover { background: #0a3226; }
.btn-outline     { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: #fff; }
.btn-teal        { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover  { background: #00b084; }
.btn-teal-outline{ background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-teal-outline:hover { background: var(--teal); color: #fff; }
.btn-white       { background: #fff; color: var(--green-dark); border-color: #fff; }
.btn-white:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ─── Fade-up ─── */
.fade-up { opacity: 0; transform: translateY(36px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; } .delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff; padding: 18px 0;
  transition: padding .3s, box-shadow .3s;
}
#navbar.scrolled { padding: 12px 0; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo  { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--green-dark); }
.nav-links { display: flex; align-items: center; gap: 36px; padding: 0; }
.nav-links li { list-style: none; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: #333;
  position: relative; padding-bottom: 4px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--teal); transition: width .25s;
}
.nav-links a:hover, .nav-links a.current { color: var(--green-dark); }
.nav-links a:hover::after, .nav-links a.current::after { width: 100%; }

.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(--green-dark); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; padding: 20px 24px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  flex-direction: column; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: #333; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  min-height: 100vh; padding-top: 100px;
  background: var(--gray-bg); display: flex; align-items: center;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center; padding: var(--section-pad) 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,150,.12); color: var(--teal);
  font-size: 13px; font-weight: 600; padding: 6px 16px;
  border-radius: 50px; margin-bottom: 22px;
}
.hero-tag span { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px,5vw,62px); line-height: 1.12;
  color: var(--green-dark); margin-bottom: 22px;
}
.hero-h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 16px; color: #555; line-height: 1.75; max-width: 480px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }

.btn-demo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--green-dark); background: none; border: none; cursor: pointer; padding: 14px 0;
}
.btn-demo .play-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.btn-demo:hover .play-icon { background: var(--teal); transform: scale(1.08); }

.social-proof { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }
.proof-text { font-size: 13px; color: #555; }
.proof-text strong { color: var(--green-dark); font-size: 16px; }
.stars { color: #f59e0b; font-size: 15px; letter-spacing: 1px; }

.hero-right { position: relative; }
.hero-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 28px; }
.hero-card {
  position: absolute; bottom: 30px; left: -30px;
  background: #fff; border-radius: 16px; padding: 16px 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  display: flex; align-items: center; gap: 14px;
}
.hero-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(0,200,150,.12); display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width: 24px; height: 24px; color: var(--teal); }
.hero-card-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.hero-card-val { font-size: 20px; font-weight: 700; color: var(--green-dark); }

/* ─── Hero Form Card ─── */
.hero-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(13,61,46,.14);
  border: 1px solid rgba(0,200,150,.1);
}
.hero-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--green-dark); margin-bottom: 8px;
}
.hero-form-card > p {
  font-size: 14px; color: #777; line-height: 1.65; margin-bottom: 24px;
}
.hero-form-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,150,.1); color: var(--teal);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 50px; margin-bottom: 16px;
}
.hero-form-badge svg { flex-shrink: 0; }
.hero-quote-form .form-group { margin-bottom: 12px; }
.hero-quote-form .form-group input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #dde8e3; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: #333;
  background: #f9fcfa; transition: border-color .2s, background .2s;
}
.hero-quote-form .form-group input:focus {
  outline: none; border-color: var(--teal); background: #fff;
}
.hero-quote-form .form-group input::placeholder { color: #aaa; }
.hero-quote-form .btn-submit {
  width: 100%; justify-content: center; margin-top: 6px;
  padding: 15px; font-size: 15px;
}
.hero-form-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; color: #999; margin-top: 14px; text-align: center;
}
.hero-form-trust svg { color: var(--teal); flex-shrink: 0; }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
#trust { background: #fff; padding: 36px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.trust-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-label { font-size: 13px; color: #888; font-weight: 500; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.trust-logos span {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 700; color: #bbb; letter-spacing: 1px; transition: color .2s; cursor: default;
}
.trust-logos span:hover { color: #888; }

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
#features { padding: var(--section-pad) 0; background: var(--gray-bg); }
.features-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.photo-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-collage img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 18px; }
.photo-collage img:nth-child(2) { margin-top: 28px; }
.features-text h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,42px);
  line-height: 1.2; color: var(--green-dark); margin-bottom: 18px;
}
.features-text p { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 26px; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #444; }
.check-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
#why { padding: var(--section-pad) 0; background: #fff; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-text h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,42px);
  line-height: 1.2; color: var(--green-dark); margin-bottom: 18px;
}
.why-text p { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 26px; }
.why-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.why-mosaic img { width: 100%; object-fit: cover; border-radius: 18px; }
.why-mosaic img:nth-child(1) { aspect-ratio: 1; }
.why-mosaic img:nth-child(2) { aspect-ratio: 3/4; }
.why-mosaic img:nth-child(3) { aspect-ratio: 3/4; }
.why-mosaic img:nth-child(4) { aspect-ratio: 1; }

/* ══════════════════════════════════════════
   VIDEO BANNER
══════════════════════════════════════════ */
#video-banner { position: relative; height: 480px; overflow: hidden; }
.video-bg { width: 100%; height: 100%; object-fit: cover; }
.video-overlay {
  position: absolute; inset: 0; background: rgba(13,61,46,.45);
  display: flex; align-items: center; justify-content: center;
}
.play-btn-big {
  width: 88px; height: 88px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .3s, box-shadow .3s;
  box-shadow: 0 0 0 0 rgba(255,255,255,.4); animation: pulse 2.5s infinite;
}
.play-btn-big:hover { transform: scale(1.1); }
.play-btn-big svg { color: var(--green-dark); width: 32px; height: 32px; margin-left: 4px; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
  70%  { box-shadow: 0 0 0 28px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.video-banner-text {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  text-align: center; color: #fff;
}
.video-banner-text h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#services { padding: var(--section-pad) 0; background: var(--gray-bg); }
.services-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.services-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 28px; }
.services-text h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,42px);
  line-height: 1.2; color: var(--green-dark); margin-bottom: 18px;
}
.services-text p { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 26px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 34px; }
.services-grid li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #333; }
.services-grid li svg { color: var(--teal); flex-shrink: 0; }

/* ══════════════════════════════════════════
   ICON CARDS
══════════════════════════════════════════ */
#icon-cards { padding: var(--section-pad) 0; background: #fff; }
.cards-header { text-align: center; margin-bottom: 50px; }
.cards-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,42px); color: var(--green-dark); margin-bottom: 14px; }
.cards-header p { font-size: 15px; color: #666; max-width: 540px; margin: 0 auto; line-height: 1.75; }
.icon-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.icon-card {
  background: var(--gray-bg); border-radius: 22px; padding: 44px 36px;
  text-align: center; transition: transform .25s, box-shadow .25s;
}
.icon-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.icon-card.featured { background: var(--green-dark); color: #fff; }
.card-icon {
  width: 68px; height: 68px; border-radius: 50%; background: rgba(0,200,150,.12);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.icon-card.featured .card-icon { background: rgba(255,255,255,.15); }
.card-icon svg { width: 32px; height: 32px; color: var(--teal); }
.icon-card.featured .card-icon svg { color: #fff; }
.icon-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 12px; color: var(--green-dark); }
.icon-card.featured h3 { color: #fff; }
.icon-card p { font-size: 14px; color: #777; line-height: 1.75; }
.icon-card.featured p { color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════════
   SPECIALIST
══════════════════════════════════════════ */
#specialist { padding: var(--section-pad) 0; background: var(--gray-bg); }
.specialist-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.specialist-text h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,42px);
  line-height: 1.2; color: var(--green-dark); margin-bottom: 18px;
}
.specialist-text p { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 28px; }
.feat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 34px; }
.feat-card { background: #fff; border-radius: 16px; padding: 22px 20px; transition: box-shadow .2s; }
.feat-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.07); }
.feat-card-icon {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(0,200,150,.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.feat-card-icon svg { width: 20px; height: 20px; color: var(--teal); }
.feat-card h4 { font-size: 15px; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; }
.feat-card p { font-size: 13px; color: #888; line-height: 1.65; }
.specialist-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 28px; }

/* ══════════════════════════════════════════
   WELCOME OFFER
══════════════════════════════════════════ */
#welcome { background: var(--green-dark); padding: 0; overflow: hidden; }
.welcome-inner {
  display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.welcome-img { width: 340px; height: 360px; object-fit: cover; border-radius: 22px 22px 0 0; align-self: flex-end; }
.welcome-text { padding: var(--section-pad) 0; }
.welcome-text .section-label { color: var(--teal); }
.welcome-text h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(26px,3vw,40px);
  color: #fff; line-height: 1.25; margin-bottom: 16px;
}
.welcome-text p { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 30px; max-width: 480px; }

/* ══════════════════════════════════════════
   TESTIMONIAL
══════════════════════════════════════════ */
#testimonial { padding: var(--section-pad) 0; background: #fff; text-align: center; }
.testimonial-inner { max-width: 780px; margin: 0 auto; }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 120px; line-height: .5; color: var(--teal); opacity: .25; margin-bottom: 18px; }
.testimonial-quote {
  font-family: 'Playfair Display', serif; font-size: clamp(18px,2.5vw,24px);
  font-style: italic; color: var(--green-dark); line-height: 1.65; margin-bottom: 36px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-author img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 3px solid var(--teal); }
.author-info { text-align: left; }
.author-name  { font-size: 16px; font-weight: 600; color: var(--green-dark); }
.author-title { font-size: 13px; color: #999; }
.testimonial-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; margin-bottom: 28px; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
#faq { padding: var(--section-pad) 0; background: var(--gray-bg); }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,42px); color: var(--green-dark); margin-bottom: 12px; }
.faq-header p { font-size: 15px; color: #666; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; cursor: pointer; font-size: 16px; font-weight: 600;
  color: var(--green-dark); user-select: none;
}
.faq-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,200,150,.12); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300; transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 26px 22px; font-size: 15px; color: #666; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ══════════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════════ */
#blog { padding: var(--section-pad) 0; background: #fff; }
.blog-header { text-align: center; margin-bottom: 50px; }
.blog-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,42px); color: var(--green-dark); margin-bottom: 12px; }
.blog-header p { font-size: 15px; color: #666; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--gray-bg); border-radius: 20px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.09); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card .blog-thumb-placeholder {
  width: 100%; aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0d3d2e 0%, #00c896 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-card .blog-thumb-placeholder span { font-family: 'Playfair Display', serif; font-size: 40px; color: rgba(255,255,255,.3); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-tag {
  background: rgba(0,200,150,.12); color: var(--teal);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.blog-date { font-size: 12px; color: #aaa; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--green-dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p { font-size: 13px; color: #777; line-height: 1.7; }
.blog-card a.read-more { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--teal); }
.blog-card a.read-more:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
#newsletter { padding: 70px 0; background: var(--gray-bg); text-align: center; }
.newsletter-inner { max-width: 620px; margin: 0 auto; }
.newsletter-inner .section-label { display: block; margin-bottom: 12px; }
.newsletter-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px,3vw,36px); color: var(--green-dark); margin-bottom: 10px; }
.newsletter-inner p { font-size: 15px; color: #666; margin-bottom: 30px; }
.newsletter-form {
  display: flex; gap: 0; max-width: 500px; margin: 0 auto;
  background: #fff; border-radius: 50px; padding: 5px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.newsletter-form input {
  flex: 1; border: none; outline: none; padding: 12px 20px;
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  background: transparent; color: #333; min-width: 0;
}
.newsletter-form input::placeholder { color: #bbb; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer { background: var(--footer-bg); color: rgba(255,255,255,.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 22px; }
.footer-col address { font-size: 13px; font-style: normal; line-height: 1.9; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer-col address a { color: rgba(255,255,255,.55); }
.footer-col address a:hover { color: var(--teal); }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: background .2s, color .2s;
}
.social-icon:hover { background: var(--teal); color: #fff; }
.social-icon svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 22px; letter-spacing: .5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom span { color: var(--teal); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: var(--gray-bg); padding: 140px 0 80px; text-align: center;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px,4.5vw,54px); font-weight: 700;
  color: var(--green-dark); margin-bottom: 18px; line-height: 1.15;
}
.page-hero p { font-size: 16px; color: #666; max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* ══════════════════════════════════════════
   STATS ROW
══════════════════════════════════════════ */
.stats-section { background: var(--green-dark); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center; }
.stat-item .stat-num {
  font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700;
  color: var(--teal); line-height: 1;
}
.stat-item .stat-label { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ══════════════════════════════════════════
   TEAM GRID
══════════════════════════════════════════ */
#team-members { padding: var(--section-pad) 0; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.team-card { background: var(--gray-bg); border-radius: 20px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.09); }
.team-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.team-card .team-thumb-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(160deg, #0d3d2e 0%, #1a6b50 100%);
  display: flex; align-items: center; justify-content: center;
}
.team-card .team-thumb-placeholder svg { width: 80px; height: 80px; color: rgba(255,255,255,.3); }
.team-info { padding: 22px; }
.team-info h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--green-dark); margin-bottom: 6px; }
.team-info .specialty { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 10px; }
.team-info p { font-size: 13px; color: #777; line-height: 1.65; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
#contact-section { padding-top: 0; background: var(--gray-bg); display: flex; align-items: center; }
.contact-details h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--green-dark); margin-bottom: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
  display: flex; align-items: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--teal); }
.contact-item h4 { font-size: 15px; font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14px; color: #666; line-height: 1.7; }
.contact-item a:hover { color: var(--teal); }
.office-hours { margin-top: 10px; }
.office-hours table { font-size: 14px; color: #666; border-collapse: collapse; }
.office-hours td { padding: 3px 12px 3px 0; }
.office-hours td:first-child { font-weight: 500; color: #444; }

.contact-form-wrap {
  background: var(--gray-bg); border-radius: 24px; padding: 44px;
}
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--green-dark); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none;
  background: #fff; color: #333; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* Map placeholder */
.map-placeholder {
  width: 100%; height: 400px; background: #e8f0ee;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; text-align: center;
}
.map-placeholder svg { color: var(--teal); }
.map-placeholder h4 { font-size: 16px; font-weight: 600; color: var(--green-dark); }
.map-placeholder p  { font-size: 13px; color: #888; }

/* ══════════════════════════════════════════
   BLOG (index/archive)
══════════════════════════════════════════ */
.blog-archive { padding: var(--section-pad) 0; background: #fff; }
.blog-archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 50px; }
.pagination-wrap { display: flex; justify-content: center; gap: 10px; }
.pagination-wrap .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; font-size: 14px; font-weight: 600;
  border: 2px solid #eee; color: #333; transition: all .2s;
}
.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current { background: var(--teal); color: #fff; border-color: var(--teal); }
.pagination-wrap .prev, .pagination-wrap .next { width: auto; padding: 0 20px; border-radius: 50px; font-size: 14px; }

/* Single post */
.single-post { padding-top: 80px; }
.single-inner { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.entry-header { margin-bottom: 40px; }
.entry-meta { display: flex; align-items: center; gap: 20px; font-size: 13px; color: #888; margin-bottom: 30px; }
.entry-content { font-size: 16px; color: #444; line-height: 1.85; }
.entry-content h2, .entry-content h3, .entry-content h4 { font-family: 'Playfair Display', serif; color: var(--green-dark); margin: 28px 0 14px; }
.entry-content p { margin-bottom: 20px; }
.entry-content img { border-radius: 14px; margin: 24px 0; }
.entry-footer { margin-top: 40px; padding-top: 30px; border-top: 1px solid #eee; }
.post-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; }
.post-nav a { font-size: 14px; font-weight: 600; color: var(--teal); }
.post-nav a:hover { text-decoration: underline; }

/* Comments */
.comments-area { margin-top: 60px; }
.comments-area h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--green-dark); margin-bottom: 30px; }
.comment-list { padding: 0; }
.comment { padding: 20px 0; border-bottom: 1px solid #eee; list-style: none; }
.comment-author-name { font-weight: 600; color: var(--green-dark); margin-bottom: 4px; font-size: 15px; }
.comment-date  { font-size: 12px; color: #999; margin-bottom: 10px; }
.comment-body p { font-size: 15px; color: #555; line-height: 1.75; }
.comment-form-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--green-dark); margin: 40px 0 24px; }
.comment-form label { display: block; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 6px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none; margin-bottom: 16px;
  transition: border-color .2s;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--teal); }
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form #submit {
  padding: 14px 32px; background: var(--green-dark); color: #fff; border: none;
  border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 15px;
  font-weight: 600; cursor: pointer; transition: background .2s;
}
.comment-form #submit:hover { background: var(--teal); }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band { background: var(--green-dark); padding: 70px 0; text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.5vw,42px); color: #fff; margin-bottom: 14px; }
.cta-band p { font-size: 15px; color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto 30px; line-height: 1.8; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .features-inner, .why-inner, .services-inner, .specialist-inner { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .team-grid   { grid-template-columns: repeat(2,1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .hero-card  { left: 10px; bottom: 10px; }
  .hero-form-card { padding: 28px 22px; }
  .features-inner, .why-inner, .services-inner, .specialist-inner { grid-template-columns: 1fr; }
  .photo-collage img:nth-child(2) { margin-top: 0; }
  .icon-cards-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-archive-grid { grid-template-columns: 1fr; }
  .team-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .welcome-inner { grid-template-columns: 1fr; }
  .welcome-img { display: none; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .trust-logos { gap: 20px; }
  .hero-btns  { flex-direction: column; gap: 10px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .feat-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid  { grid-template-columns: 1fr; }
}
/* ════════════════════════════════════════
   LOCATION PAGES
════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb-nav { background: #f4f7f4; padding: 12px 0; border-bottom: 1px solid #e8ede8; }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; font-size: 13px; color: #888; flex-wrap: wrap; }
.breadcrumb-list a { color: var(--teal); text-decoration: none; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list .fa-chevron-right { font-size: 10px; color: #bbb; }
.breadcrumb-list [aria-current="page"] { color: var(--green-dark); font-weight: 600; }

/* Location Hero */
.loc-hero { padding: 80px 0 60px; background: linear-gradient(135deg, #f0faf6 0%, #fff 60%); }
.loc-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.loc-hero-img img { width: 100%; aspect-ratio: 6/5; object-fit: cover; border-radius: 28px; box-shadow: 0 20px 60px rgba(0,0,0,.1); }

/* Trust Bar */
.loc-trust { background: var(--green-dark); padding: 28px 0; }
.loc-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.loc-trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 14px; font-weight: 600; }
.loc-trust-item i { color: var(--teal); font-size: 18px; flex-shrink: 0; }

/* Location Services — reuses .services-inner from theme */
.loc-services { padding: 90px 0; }

/* Location Why — reuses .why-inner from theme */
.loc-why { padding: 90px 0; background: #f4f7f4; }

/* Social Proof Bar */
.loc-proof-bar { background: var(--teal); padding: 50px 0; text-align: center; }
.loc-proof-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; color: #fff; }
.loc-proof-inner p { font-size: 16px; max-width: 560px; opacity: .9; margin: 0; }
.loc-proof-stars { display: flex; align-items: center; gap: 12px; }
.loc-proof-stars .stars { font-size: 26px; color: #fff; letter-spacing: 2px; }
.loc-proof-stars strong { font-size: 28px; color: #fff; }

/* CTA Section */
.loc-cta { padding: 90px 0; background: var(--green-dark); }
.loc-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.loc-cta-icon { font-size: 48px; color: var(--teal); margin-bottom: 20px; display: block; }
.loc-cta-inner h2 { font-size: 32px; color: #fff; margin-bottom: 14px; }
.loc-cta-inner > p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 32px; }
.loc-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.loc-cta-trust { color: rgba(255,255,255,.6); font-size: 13px; display: flex; align-items: center; gap: 8px; justify-content: center; }
.loc-cta-trust i { color: var(--teal); }

/* Nearby Cities */
.loc-nearby { padding: 70px 0; }
.loc-nearby-title { font-size: 20px; color: var(--green-dark); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.loc-nearby-title i { color: var(--teal); }
.loc-nearby-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; }
.loc-nearby-card { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: #f4f7f4; border-radius: 12px; text-decoration: none; color: var(--green-dark); font-size: 14px; font-weight: 600; border: 1px solid #e4ede4; transition: all .2s; }
.loc-nearby-card:hover { background: var(--teal); color: #fff; border-color: var(--teal); transform: translateY(-2px); }
.loc-nearby-card .fa-map-pin { color: var(--teal); font-size: 16px; flex-shrink: 0; }
.loc-nearby-card:hover .fa-map-pin { color: #fff; }
.loc-nearby-card span { flex: 1; }
.loc-nearby-card .fa-arrow-right { font-size: 12px; opacity: .5; }
.loc-nearby-card:hover .fa-arrow-right { opacity: 1; }

/* Archive Hero */
.loc-archive-hero { padding: 80px 0 50px; text-align: center; background: linear-gradient(135deg, #f0faf6 0%, #fff 60%); }
.loc-archive-hero h1 { font-size: 42px; color: var(--green-dark); margin-bottom: 16px; }
.loc-archive-hero p { font-size: 17px; color: #555; max-width: 560px; margin: 0 auto; }

/* Archive Grid */
.loc-archive-grid-section { padding: 70px 0; }
.loc-archive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.loc-archive-card { display: flex; align-items: center; gap: 14px; padding: 20px; background: #fff; border: 1px solid #e4ede4; border-radius: 14px; text-decoration: none; transition: all .2s; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.loc-archive-card:hover { border-color: var(--teal); box-shadow: 0 8px 28px rgba(0,200,150,.12); transform: translateY(-2px); }
.loc-archive-card-icon { width: 42px; height: 42px; background: rgba(0,200,150,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-archive-card-icon i { color: var(--teal); font-size: 18px; }
.loc-archive-card-body { flex: 1; }
.loc-archive-card-body h3 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin: 0 0 2px; }
.loc-archive-card-body p { font-size: 12px; color: #888; margin: 0; }
.loc-archive-arrow { color: #ccc; font-size: 12px; }
.loc-archive-card:hover .loc-archive-arrow { color: var(--teal); }

/* ── Location Responsive ── */
@media (max-width: 1024px) {
  .loc-archive-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .loc-hero-inner { grid-template-columns: 1fr; }
  .loc-hero-img { display: none; }
  .loc-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-nearby-grid { grid-template-columns: 1fr; }
  .loc-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-archive-hero h1 { font-size: 30px; }
  .loc-cta-inner h2 { font-size: 26px; }
}
@media (max-width: 500px) {
  .loc-trust-grid { grid-template-columns: 1fr; }
  .loc-archive-grid { grid-template-columns: 1fr; }
  .loc-cta-btns { flex-direction: column; }
}

@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; border-radius: 20px; padding: 10px; gap: 10px; }
  .newsletter-form .btn { border-radius: 50px; width: 100%; justify-content: center; }
}
