@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --green-mid: #95d5b2;
  --accent: #f4a261;
  --dark: #1a1a1a;
  --text: #2c2c2c;
  --muted: #6b7280;
  --bg: #fafaf8;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(45,106,79,0.10);
  --shadow-lg: 0 12px 48px rgba(45,106,79,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 2px solid var(--green-pale);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(45,106,79,0.07);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--accent); }

nav {
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a.active {
  background: var(--green-pale);
  color: var(--green);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,26,26,0.72) 40%, rgba(45,106,79,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  color: var(--white);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.2rem;
  max-width: 650px;
}

.hero-content p {
  font-size: 1.15rem;
  max-width: 520px;
  opacity: 0.92;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--green-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: #e07d3a; }

/* ── SECTIONS ── */
section { padding: 5rem 0; }
section:nth-child(even) { background: var(--green-pale); }

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

.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 560px;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body { padding: 1.5rem; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.card-body p { color: var(--muted); font-size: 0.95rem; }

.price-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.95rem;
  margin: 0.75rem 0 0.5rem;
}

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

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.step h3 { font-weight: 600; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ── REVIEWS ── */
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 0.6rem; }
.review-card blockquote { font-style: italic; color: var(--text); margin-bottom: 1rem; line-height: 1.6; }
.reviewer { font-weight: 600; font-size: 0.9rem; color: var(--muted); }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s;
}
.team-card:hover { transform: translateY(-5px); }

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}

.team-info { padding: 1.5rem; }
.team-info h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; }
.team-role { color: var(--green); font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 0.3rem 0 0.6rem; }
.team-info p { color: var(--muted); font-size: 0.9rem; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-grid img:first-child { grid-column: span 2; height: 340px; }

/* ── TABLE ── */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}
thead { background: var(--green); }
th {
  color: #fff;
  font-weight: 600;
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text);
}
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--green-pale); }

/* ── FORM ── */
.form-group { margin-bottom: 1.4rem; }
label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: var(--dark);
}
input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { resize: vertical; min-height: 130px; }

/* ── BADGES ── */
.badge-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 2px solid var(--green-pale);
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
}
.badge-icon { font-size: 1.1rem; }

/* ── STAT BOX ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.stat-box {
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.stat-box .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.stat-box p { font-size: 0.88rem; opacity: 0.85; margin-top: 0.4rem; }

/* ── BLOG ── */
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.blog-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.5rem; }
.blog-body p { color: var(--muted); font-size: 0.92rem; }

/* ── FAQ ── */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-mid);
}
.faq-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--dark); }
.faq-item p { color: var(--muted); font-size: 0.93rem; }

/* ── CONTACT INFO ── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-weight: 600; font-size: 0.9rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item p { font-size: 1rem; color: var(--dark); font-weight: 500; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: #fff; display: block; margin-bottom: 1rem; font-size: 1.6rem; }
.footer-brand p { font-size: 0.92rem; opacity: 0.7; line-height: 1.7; }
.footer-col h4 { color: #fff; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.65); font-size: 0.9rem; text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-mid); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── HERO MINI (pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.page-hero p { font-size: 1.1rem; opacity: 0.88; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img:first-child { grid-column: span 2; }
}

@media (max-width: 640px) {
  .header-inner { flex-direction: column; height: auto; padding: 1rem; gap: 0.75rem; }
  nav { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img:first-child { grid-column: span 1; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ── MAP EMBED ── */
.map-embed {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--green);
  color: #fff;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}
.highlight-box h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1rem; }
.highlight-box p { opacity: 0.88; margin-bottom: 2rem; }
