:root {
  /* === GREENS === */
  --green-900: #1b4332;
  --green-700: #2d6a4f;
  --green-600: #40916c;
  --green-400: #74c69d;
  --green-100: #d8f3dc;
  --green-50:  #f0faf4;

  /* === ACCENT === */
  --gold:       #c9a84c;
  --gold-light: #f5e6b2;

  /* === NEUTRALS === */
  --white:    #ffffff;
  --gray-50:  #f8fafb;
  --gray-100: #f1f5f2;
  --gray-200: #e2e8e4;
  --gray-600: #4a5e52;
  --gray-800: #1e2d26;
  --text:      #1e2d26;
  --text-muted: #5a7060;

  /* === SHAPE === */
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 24px;

  /* === SHADOWS (green-tinted) === */
  --shadow-sm: 0 2px 8px rgba(45, 106, 79, 0.10);
  --shadow:    0 6px 28px rgba(45, 106, 79, 0.14);
  --shadow-lg: 0 16px 56px rgba(45, 106, 79, 0.18);

  /* === TRANSITIONS === */
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* === FONTS === */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .testimonial-quote, .stat-number, .step-num {
  font-family: var(--font-display);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === TYPOGRAPHY === */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Section label (eyebrow) */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }

.text-center { text-align: center; }

/* === COMPONENTS === */
/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  transition: var(--transition); cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--green-700); color: white; }
.btn-primary:hover { background: var(--green-900); transform: translateY(-2px); box-shadow: var(--shadow); color: white;}

.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: #b8903e; transform: translateY(-2px); box-shadow: var(--shadow); color: white;}

.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; color: white; }

.btn-ghost { background: transparent; color: var(--green-700); border: 1.5px solid var(--green-700); }
.btn-ghost:hover { background: var(--green-50); }

/* Badges */
.badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--green-700); color: white;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 10px;
  border-radius: 4px; z-index: 10;
}

/* === GLOBAL UX === */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green-700), var(--gold));
  transition: width 0.1s linear;
}

#scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-700); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); cursor: pointer; border: none;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--green-900); }

.whatsapp-btn {
  position: fixed; bottom: 90px; right: 28px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; color: white;
  transition: transform var(--transition);
}
.whatsapp-btn::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2.5s ease-out infinite;
}
.whatsapp-tooltip {
  position: absolute; right: 66px; top: 50%;
  transform: translateY(-50%);
  background: #1b4332; color: white;
  font-size: 0.78rem; font-weight: 500; white-space: nowrap;
  padding: 6px 12px; border-radius: var(--radius-sm);
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  transform: translateY(100%);
  animation: slideUpBar 0.4s ease 2s forwards;
}
.mobile-cta-call {
  background: var(--green-900); color: white;
  padding: 16px; text-align: center;
  font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mobile-cta-book {
  background: var(--gold); color: white;
  padding: 16px; text-align: center;
  font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-grid .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-grid .reveal:nth-child(5) { transition-delay: 320ms; }
.reveal-grid .reveal:nth-child(6) { transition-delay: 400ms; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100vh) scale(1.3); opacity: 0; }
}
@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes slideUpBar {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* === SECTIONS === */

/* Topbar */
.topbar { background: var(--green-900); color: var(--green-100); font-size: 0.95rem; padding: 10px 0; }
.topbar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;}
.topbar-group { display: flex; align-items: center; gap: 16px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--gold); }
.topbar-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.header-content {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
  max-width: 1200px; margin: 0 auto;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: none;
}
.logo { display: flex; align-items: center; gap: 12px; transition: var(--transition); }
.logo:hover { opacity: 0.8; }
.logo-img { height: 50px; width: auto; object-fit: contain; }
.logo-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--green-700); color: white;
  display: flex; align-items: center; justify-content: center;
}
.logo-text strong { display: block; font-size: 1.3rem; color: var(--green-900); line-height: 1.1; }
.logo-text span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.87rem; font-weight: 500; color: var(--gray-800);
  padding: 10px 16px; border-radius: var(--radius-sm);
  position: relative; transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-700); background: var(--green-50);
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 6px; left: 16px; right: 16px; height: 2px;
  background: var(--green-700);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-links .btn-primary { margin-left: 8px; padding: 10px 20px; font-size: 0.85rem; }

/* Dropdown Navigation */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
}
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; background: white; border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); min-width: 220px; display: none; z-index: 100;
  border: 1px solid var(--gray-200); overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; }
.nav-dropdown-menu a {
  padding: 14px 18px; color: var(--text); text-decoration: none; transition: all 0.2s;
  font-size: 0.9rem; font-weight: 500; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--green-50); color: var(--green-700); padding-left: 22px; }
.nav-dropdown-toggle:hover { color: var(--green-600); }

.mobile-nav-dropdown { position: relative; margin: 8px 0; }
.mobile-nav-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
  padding: 12px 0; color: var(--text); text-decoration: none; font-size: 0.95rem;
  width: 100%;
}
.mobile-nav-dropdown-menu {
  display: none; flex-direction: column; background: var(--green-50); border-left: 3px solid var(--green-600);
  padding-left: 16px;
}
.mobile-nav-dropdown.open .mobile-nav-dropdown-menu { display: flex; }
.mobile-nav-dropdown.open .mobile-nav-dropdown-toggle svg {
  transform: rotate(180deg); transition: transform 0.2s;
}
.mobile-nav-dropdown-menu a {
  padding: 10px 0; color: var(--text); text-decoration: none; font-size: 0.9rem; font-weight: 500;
}
.mobile-nav-dropdown-menu a:hover { color: var(--green-700); }

.hamburger {
  display: none; flex-direction: column; gap: 6px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--green-900); transition: 0.3s; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--white); z-index: 1001;
  display: flex; flex-direction: column; padding: 24px;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close { align-self: flex-end; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; font-size: 1.2rem; }

/* Hero Slider */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--green-900); text-align: center; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; justify-content: center; }
.slide.active { opacity: 1; z-index: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.particle-container { position: absolute; inset: 0; overflow: hidden; z-index: 1; pointer-events: none;}
.particle {
  position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.08);
  animation: floatUp linear infinite; bottom: -100px;
}
.hero .container { position: relative; z-index: 2; width: 100%; display: flex; justify-content: center; }
.hero-content { max-width: 800px; color: white; display: flex; flex-direction: column; align-items: center; }
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
}
.slide-tag-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1.15; margin-bottom: 24px; text-shadow: 0 4px 12px rgba(0,0,0,0.4); text-transform: uppercase; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.02em;}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,0.95); max-width: 640px; margin-bottom: 32px; text-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;}

.slide.active .slide-tag  { animation: slideUp 0.6s ease 0.0s both; }
.slide.active h1          { animation: slideUp 0.6s ease 0.12s both; }
.slide.active p           { animation: slideUp 0.6s ease 0.24s both; }
.slide.active .hero-btns  { animation: slideUp 0.6s ease 0.36s both; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px); border: none; color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.hero-arrow:hover { background: var(--gold); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-dots {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 3;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition); border: none; padding:0;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* Stats Bar */
.stats-wrapper { position: relative; z-index: 10; margin-top: -40px; padding: 0 24px;}
.stats-bar {
  max-width: 1100px; margin: 0 auto;
  background: white; border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid var(--gray-200); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 2.4rem; color: var(--green-700); line-height: 1.1; margin-bottom: 8px;}
.stat-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em;}

/* Trust Badges */
.trust-badges { background: white; padding: 24px 0; border-bottom: 0.5px solid var(--gray-200); overflow: hidden;}
.marquee-wrap { overflow: hidden; width: 100%;}
.marquee-track {
  display: flex; gap: 48px; animation: marquee 22s linear infinite; white-space: nowrap; width: max-content;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--gray-600);
  filter: grayscale(100%); transition: filter 0.3s; opacity: 0.8;
}
.trust-badge:hover { filter: grayscale(0%); color: var(--green-700); opacity: 1;}

/* About */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.img-wrapper { border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.img-tall { grid-row: span 2; height: 100%; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--green-700); color: var(--white);
  border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow-lg); text-align: center; z-index: 2;
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge span   { font-size: 0.75rem; opacity: 0.85; }

.about-text h2 em { font-style: normal; color: var(--green-600); }
.about-text p { color: var(--text-muted); margin-bottom: 20px; }
.about-checklist { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px;}
.about-checklist li { display: flex; align-items: flex-start; gap: 12px; color: var(--gray-800); font-weight: 500;}
.check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-100); display: flex; align-items: center;
  justify-content: center; margin-top: 1px; color: var(--green-700);
}

/* How It Works */
.how-it-works { background: var(--green-900); color: white; position: relative; overflow: hidden; }
.how-it-works::before {
  content: ''; position: absolute; top: -50%; left: -10%; width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(64, 145, 108, 0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none;
}
.how-it-works .section-subtitle { color: rgba(255,255,255,0.7); }
.steps-wrapper { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; gap: 24px; padding-top: 20px;}
.steps-wrapper::before {
  content: ''; position: absolute;
  top: 60px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
  z-index: 0;
}
.step-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; z-index: 1;
  padding: 40px 24px 32px; text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.step-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.06); border-color: rgba(201, 168, 76, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.step-card:hover .step-num { color: var(--gold); transform: scale(1.1); text-shadow: 0 0 20px rgba(201,168,76,0.4); }
.step-num { 
  font-size: 4rem; color: rgba(255, 255, 255, 0.06); line-height: 1; 
  transition: var(--transition); position: absolute; top: 10px; right: 20px;
  font-weight: 700; font-family: var(--font-body); pointer-events: none;
}
.step-icon {
  width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  margin: 0 auto 24px; transition: var(--transition);
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}
.step-card:hover .step-icon {
  background: var(--gold); color: white; box-shadow: 0 0 24px rgba(201,168,76,0.4); transform: scale(1.1); border-color: var(--gold);
}
.step-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; color: white; }
.step-desc { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6;}

/* Mission / Vision / Goal */
.mvg { background: var(--gray-50); }
.mvg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.accent-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); padding: 36px 30px; position: relative; overflow: hidden;
  transition: var(--transition);
}
.accent-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--green-700);
  transition: var(--transition);
}
.accent-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-400); }
.accent-card:hover::before { background: var(--green-400); }
.mvg-icon {
  width: 54px; height: 54px; border-radius: var(--radius-sm); background: var(--green-50);
  display: flex; align-items: center; justify-content: center; color: var(--green-700);
  margin-bottom: 20px;
}
.accent-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--green-900); margin-bottom: 12px; }
.accent-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

/* Services */
.services { background: var(--white); }
.filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 48px; }
.filter-tab {
  padding: 7px 18px; border-radius: 100px; font-size: 0.85rem; font-weight: 500;
  border: 1.5px solid var(--gray-200); background: white; color: var(--gray-600);
  cursor: pointer; transition: var(--transition);
}
.filter-tab.active, .filter-tab:hover {
  background: var(--green-700); color: white; border-color: var(--green-700);
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 28px;
  min-height: 400px; /* prevent layout shift on filter */
}
.feature-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column; position: relative;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img-wrap { height: 210px; position: relative; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feature-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-body { 
  display: grid; grid-template-areas: "content"; padding: 24px; flex-grow: 1; align-items: start;
}
.card-content-front, .card-content-back {
  grid-area: content; display: flex; flex-direction: column; height: 100%;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.card-content-back {
  opacity: 0; pointer-events: none; transform: translateX(20px);
}
.feature-card:hover .card-content-front {
  opacity: 0; pointer-events: none; transform: translateX(-20px);
}
.feature-card:hover .card-content-back {
  opacity: 1; pointer-events: auto; transform: translateX(0);
}

.service-list {
  list-style: none; padding: 0; margin: 0 0 16px 0;
}
.service-list li {
  margin-bottom: 6px; position: relative; padding-left: 18px; font-size: 0.9rem; color: var(--text-muted);
}
.service-list li::before {
  content: '•'; position: absolute; left: 0; color: var(--gold); font-size: 1.2rem; line-height: 1; top: 1px;
}

.card-body h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--green-900); }
.card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
.card-link { font-size: 0.9rem; font-weight: 600; color: var(--green-700); display: inline-flex; align-items: center; gap: 4px; margin-top: auto; }
.card-link:hover { color: var(--gold); }

/* Service Tiles */
.service-tiles { background: var(--green-700); color: white;}
.service-tiles .section-title { color: white; }
.service-tiles .section-subtitle { color: rgba(255,255,255,0.8); }
/* Hexagon Honeycomb — 4-3-4 layout (11 services) */
.hex-honeycomb {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 56px; margin-bottom: 90px;
  position: relative; left: 50%; transform: translateX(-50%);
  width: min(1340px, 94vw);
}
.hex-row {
  display: flex; justify-content: center; align-items: center;
  gap: 0;                          /* hexes touch on their left/right points */
}
.hex-row + .hex-row { margin-top: 0; }   /* rows touch corner-to-corner */
.hex-cell { position: relative; width: 208px; flex: 0 0 auto; z-index: 1; }
.hex-cell:hover { z-index: 50; }   /* lift hovered cell above neighbours so the reveal sits on top */

.hex {
  display: block; width: 208px; height: 182px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: var(--hex-line);
  padding: 5px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}
.hex-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 100%; padding: 0 14px; text-align: center; color: #fff;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: var(--hex-fill);
  transition: background 0.4s ease, filter 0.4s ease;
}
.hex-icon {
  width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center; margin-bottom: 11px;
  backdrop-filter: blur(2px); transition: transform 0.4s ease, background 0.4s ease;
}
.hex-icon svg { width: 25px; height: 25px; }
.hex-label { font-size: 1.16rem; font-weight: 800; line-height: 1.2; letter-spacing: 0.3px; text-shadow: 0 2px 6px rgba(0,0,0,0.35); }

.hex-cell:hover .hex { transform: translateY(-12px) scale(1.07); filter: drop-shadow(0 22px 34px var(--hex-glow)); }
.hex-cell:hover .hex-inner { background: var(--hex-fill-hover); filter: saturate(1.25) brightness(1.08); }
.hex-cell:hover .hex-icon { transform: scale(1.12); background: rgba(255,255,255,0.34); }

.hex-reveal {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 248px; padding: 18px 22px; z-index: 6;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-top: 4px solid var(--hex-line);
  border-radius: 18px; box-shadow: 0 20px 44px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.6);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, transform 0.3s ease;
}
.hex-cell:hover .hex-reveal { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hex-reveal ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.hex-reveal li {
  font-size: 0.86rem; line-height: 1.4; font-weight: 500; color: #1f2937;
  display: flex; align-items: flex-start; gap: 10px;
}
.hex-reveal li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--hex-glow); margin-top: 6px; flex-shrink: 0;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hex-glow) 25%, transparent);
}

/* Hexagon color themes */
.hex-care  { --hex-fill: linear-gradient(145deg, #34d399, #059669 55%, #065f46); --hex-fill-hover: linear-gradient(145deg, #6ee7b7, #10b981 55%, #047857); --hex-line: #a7f3d0; --hex-glow: rgba(16,185,129,0.65); }
.hex-high  { --hex-fill: linear-gradient(145deg, #fb7185, #e11d48 55%, #9f1239); --hex-fill-hover: linear-gradient(145deg, #fda4af, #f43f5e 55%, #be123c); --hex-line: #fecdd3; --hex-glow: rgba(244,63,94,0.65); }
.hex-comm  { --hex-fill: linear-gradient(145deg, #38bdf8, #0891b2 55%, #155e75); --hex-fill-hover: linear-gradient(145deg, #7dd3fc, #06b6d4 55%, #0e7490); --hex-line: #bae6fd; --hex-glow: rgba(6,182,212,0.65); }
.hex-skill { --hex-fill: linear-gradient(145deg, #a78bfa, #7c3aed 55%, #5b21b6); --hex-fill-hover: linear-gradient(145deg, #c4b5fd, #8b5cf6 55%, #6d28d9); --hex-line: #e9d5ff; --hex-glow: rgba(139,92,246,0.65); }
.hex-cap   { --hex-fill: linear-gradient(145deg, #fbbf24, #d97706 55%, #92400e); --hex-fill-hover: linear-gradient(145deg, #fcd34d, #f59e0b 55%, #b45309); --hex-line: #fde68a; --hex-glow: rgba(245,158,11,0.65); }
.hex-house { --hex-fill: linear-gradient(145deg, #2dd4bf, #0d9488 55%, #115e59); --hex-fill-hover: linear-gradient(145deg, #5eead4, #14b8a6 55%, #0f766e); --hex-line: #99f6e4; --hex-glow: rgba(20,184,166,0.65); }

/* Testimonials */
.testimonials { background: #f9f7f2; position: relative;}
.testimonial-slider { max-width: 760px; margin: 0 auto; position: relative; }
.testi-slide { opacity: 0; position: absolute; inset: 0; transition: opacity 0.6s ease; pointer-events: none;}
.testi-slide.active { opacity: 1; position: relative; pointer-events: auto;}
.quote-icon { font-family: var(--font-display); font-size: 8rem; color: var(--green-100); position: absolute; top: -40px; left: -20px; line-height: 1; z-index: 0; }
.testi-content { position: relative; z-index: 1; text-align: center; }
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px;}
.testimonial-quote { font-size: 1.15rem; font-style: italic; color: var(--gray-800); line-height: 1.8; margin-bottom: 32px; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green-700); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 600;
}
.author-info { text-align: left; }
.author-name { font-weight: 600; font-size: 0.95rem; }
.author-service { font-size: 0.8rem; color: var(--text-muted); }

.testi-controls { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }

/* Team */
.team { background: var(--green-50); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.team-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); padding: 32px 24px; text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar-initials {
  width: 100px; height: 100px; border-radius: 50%; background: var(--green-100);
  color: var(--green-700); font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  border: 3px solid var(--green-400);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--green-700); letter-spacing: 0.05em; font-weight: 600; margin-bottom: 12px;}
.team-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5;}
.team-socials {
  display: flex; gap: 8px; justify-content: center; margin-top: 16px;
  transform: translateY(10px); opacity: 0; transition: var(--transition);
}
.team-card:hover .team-socials { transform: translateY(0); opacity: 1; }
.social-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--gray-100); color: var(--gray-600);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.social-icon:hover { background: var(--green-700); color: white; }

/* FAQ */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;}
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; background: white;}
.faq-header {
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 0.95rem; user-select: none;
}
.faq-chevron { transition: transform 0.38s ease; color: var(--green-700); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.38s ease;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* Contact Section */
.contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-list { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--green-50);
  color: var(--green-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-text h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--gray-800); }
.contact-text p, .contact-text a { font-size: 0.9rem; color: var(--text-muted); }
.contact-text a:hover { color: var(--green-700); }

.map-placeholder {
  margin-top: 40px; aspect-ratio: 4/3; border-radius: var(--radius);
  background: var(--green-100); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.map-overlay { text-align: center; color: var(--green-900); }
.map-overlay svg { width: 32px; height: 32px; margin-bottom: 8px; color: var(--green-700);}
.map-overlay span { display: block; font-weight: 600; margin-bottom: 12px; }

/* Form Card */
.form-card {
  background: var(--white); box-shadow: var(--shadow-lg); border-radius: var(--radius-lg);
  padding: 44px;
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.floating-group { position: relative; margin-bottom: 20px; }
.floating-group input,
.floating-group textarea,
.floating-group select {
  width: 100%; padding: 18px 16px 6px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 0.95rem; background: var(--gray-50);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none; font-family: inherit; color: var(--text);
}
.floating-group textarea { resize: vertical; min-height: 120px; }
.floating-group label {
  position: absolute; left: 16px; top: 14px;
  font-size: 0.88rem; color: var(--text-muted);
  pointer-events: none; transition: all 0.2s ease;
}
.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label,
.floating-group textarea:focus ~ label,
.floating-group textarea:not(:placeholder-shown) ~ label,
.floating-group select:focus ~ label,
.floating-group select:not([value=""]) ~ label {
  top: 6px; font-size: 0.72rem; color: var(--green-600); font-weight: 600;
}
.floating-group input:focus,
.floating-group textarea:focus,
.floating-group select:focus {
  border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.12);
  background: var(--white);
}

/* Footer */
.footer { background: var(--green-900); color: white; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-col-desc { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 16px 0 24px; }
.footer h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); position: relative; padding-left: 0;}
.footer-links a::before {
  content: '→'; position: absolute; left: -16px; opacity: 0; transition: var(--transition); color: var(--gold);
}
.footer-links a:hover { color: white; padding-left: 16px; }
.footer-links a:hover::before { opacity: 1; left: 0; }

.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px;}
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.footer-legal a { margin-left: 16px; transition: color 0.2s;}
.footer-legal a:hover { color: white; }

/* Responsive */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-content .topbar-group:last-child { display: none; }
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .stats-wrapper { margin-top: -20px; }
  .stats-bar { grid-template-columns: 1fr 1fr; margin: 0; border-radius: var(--radius); }
  .stat-item { padding: 20px 16px; border-bottom: 1px solid var(--gray-200); }
  .stat-item:nth-child(even) { border-right: none; }
  .mvg-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-wrapper { grid-template-columns: 1fr 1fr; gap: 32px;}
  .steps-wrapper::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; gap: 16px;}
  .form-row { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: grid; }
}

@media (max-width: 1100px) {
  /* Tablet — slightly tighter spacing, slimmer hexes so 4-row still fits */
  .hex-cell, .hex { width: 168px; }
  .hex { height: 146px; }
  .hex-label { font-size: 1rem; }
  .hex-row + .hex-row { margin-top: 0; }   /* still corner-touch on tablet */
}

@media (max-width: 760px) {
  /* Mobile — break honeycomb into a simple 2-column grid */
  .hex-honeycomb { gap: 18px; }
  .hex-row { display: contents; }                 /* flatten rows so all 11 hexes are direct children */
  .hex-row + .hex-row { margin-top: 0; }
  .hex-honeycomb {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    width: min(560px, 92vw);
  }
  .hex-cell { width: 100%; max-width: 200px; }
  .hex { width: 100%; height: auto; aspect-ratio: 208 / 182; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .hex-honeycomb { gap: 14px; margin-bottom: 30px; }
  .hex-cell { transform: none !important; }
  .hex-reveal {
    position: static; transform: none; width: 100%; max-width: 240px; margin: 12px auto 0;
    opacity: 1; visibility: visible; box-shadow: none;
  }
  .hex-cell:hover .hex-reveal { transform: none; }
  .team-grid { grid-template-columns: 1fr; }
  .steps-wrapper { grid-template-columns: 1fr; gap: 40px;}
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
}

/* About Page — Values & We Are */
.about-values { background: var(--green-50); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.value-card {
  background: #fff; border: 1px solid var(--green-100); border-radius: 20px;
  padding: 40px 32px; text-align: center;
  box-shadow: 0 10px 30px rgba(27, 67, 50, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(27, 67, 50, 0.14);
  border-color: var(--green-400);
}
.value-icon {
  width: 92px; height: 92px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700); border: 2.5px solid var(--green-700);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.value-card:hover .value-icon {
  background: var(--green-700); color: #fff; transform: scale(1.06);
}
.value-card h3 {
  font-size: 1.5rem; font-weight: 700; color: var(--green-900); margin-bottom: 16px;
}
.value-card p {
  font-size: 0.98rem; line-height: 1.7; color: var(--text-muted); margin: 0;
}

.we-are-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center;
  margin-top: 70px;
}
.we-are-title {
  font-size: 2.4rem; font-weight: 800; color: var(--green-900);
  letter-spacing: 1px; margin-bottom: 26px;
}
.we-are-list { list-style: none; margin: 0; padding: 0; }
.we-are-list li {
  position: relative; padding-left: 30px; margin-bottom: 18px;
  font-size: 1.08rem; line-height: 1.5; color: var(--green-900);
}
.we-are-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px var(--gold-light);
}
.we-are-badge { display: flex; justify-content: center; }
.we-are-badge img {
  max-width: 320px; width: 100%; height: auto;
  border: 1px solid var(--green-100); border-radius: 14px;
  padding: 16px; background: #fff; box-shadow: 0 10px 30px rgba(27, 67, 50, 0.08);
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; }
  .we-are-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 50px; }
  .we-are-badge { justify-content: flex-start; }
}

/* Services Page */
.svc-quicknav-wrap { padding-top: 40px; padding-bottom: 0; }
.svc-quicknav { margin-bottom: 0; }
.svc-quicknav .filter-tab { text-decoration: none; }

.svc-category { --svc-accent: var(--green-700); --svc-soft: var(--green-50); }
.svc-category.svc-alt { background: var(--gray-50); }
.svc-care   { --svc-accent: #059669; --svc-soft: #ecfdf5; }
.svc-high   { --svc-accent: #e11d48; --svc-soft: #fff1f3; }
.svc-comm   { --svc-accent: #0891b2; --svc-soft: #ecfeff; }
.svc-skill  { --svc-accent: #7c3aed; --svc-soft: #f5f3ff; }
.svc-cap    { --svc-accent: #c9871f; --svc-soft: #fdf6e9; }
.svc-house  { --svc-accent: #0f766e; --svc-soft: #effbf8; }

.svc-cat-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.svc-cat-head .label { justify-content: center; }
.svc-cat-head .label::before { background: var(--svc-accent); }

/* Service cards */
.svc-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); padding: 32px 28px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; transition: var(--transition);
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--svc-accent); transition: var(--transition);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--svc-accent); }
.svc-card-wide { grid-column: 1 / -1; }
.svc-icon {
  width: 58px; height: 58px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--svc-soft); color: var(--svc-accent); margin-bottom: 20px;
  transition: var(--transition);
}
.svc-card:hover .svc-icon { background: var(--svc-accent); color: var(--white); }
.svc-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--green-900); margin-bottom: 10px; }
.svc-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.svc-for { display: block; margin-top: 14px; font-size: 0.82rem; color: var(--green-900); }
.svc-for strong { color: var(--svc-accent); }

/* Clinical procedures sub-grid */
.svc-sub-title { text-align: center; font-size: 1.4rem; color: var(--green-900); margin: 56px 0 28px; }
.svc-proc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.svc-proc {
  background: var(--white); border: 1px solid var(--gray-200); border-left: 4px solid var(--svc-accent);
  border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.svc-proc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-proc h4 { font-size: 1rem; font-weight: 700; color: var(--green-900); margin-bottom: 6px; }
.svc-proc p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Photo banner rows */
.svc-banner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  margin-bottom: 48px;
}
.svc-banner-rev .svc-banner-img { order: 2; }
.svc-banner-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/10; }
.svc-banner-img img { width: 100%; height: 100%; object-fit: cover; }
/* Icon-based banner placeholder (used for new sections without a photo yet) */
.svc-banner-img.svc-banner-icon {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-900) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.svc-banner-img.svc-banner-icon::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.10), transparent 60%);
  pointer-events: none;
}
.svc-banner-img.svc-banner-icon svg {
  color: var(--gold-light);
  opacity: 0.95;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
  width: 96px; height: 96px;
  position: relative; z-index: 1;
}
.svc-banner-text h3 { font-size: 1.6rem; color: var(--green-900); margin-bottom: 14px; font-family: var(--font-display); }
.svc-banner-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.svc-banner-text .svc-for { margin-top: 16px; font-size: 0.9rem; }

/* Conditions */
.svc-conditions { background: var(--green-50); }
.svc-cond-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.svc-cond {
  background: var(--white); border: 1px solid var(--green-100); border-radius: var(--radius-sm);
  padding: 18px 22px; font-size: 0.95rem; font-weight: 500; color: var(--green-900);
  position: relative; padding-left: 42px; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.svc-cond::before {
  content: ''; position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-light);
}
.svc-cond:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-400); }

.svc-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 48px; }

/* Category banner copy spacing */
.svc-banner-text p + p { margin-top: 14px; }

/* Services include — chip/tag row */
.svc-include {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.svc-include-label {
  display: block;
  width: 100%;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--svc-accent);
  margin-bottom: 2px;
}
.svc-tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--svc-soft);
  border: 1px solid var(--svc-accent);
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 900px) {
  .svc-banner { grid-template-columns: 1fr; gap: 24px; }
  .svc-banner-rev .svc-banner-img { order: 0; }
}

/* =====================================================
   Blossom AI Chat Assistant (replaces the WhatsApp FAB)
   ===================================================== */
.blossom-chat-fab {
  position: fixed; bottom: 90px; right: 28px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-700); color: white;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, background 0.2s, opacity 0.25s;
}
.blossom-chat-fab::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--green-600);
  animation: blossomPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes blossomPulse {
  0%   { opacity: 0.7; transform: scale(0.9); }
  100% { opacity: 0;   transform: scale(1.4); }
}
.blossom-chat-fab:hover { background: var(--green-900); transform: translateY(-2px); }
.blossom-chat-fab.hidden { opacity: 0; pointer-events: none; transform: scale(0.6); }

.blossom-chat-tip {
  position: absolute; right: 66px; top: 50%;
  transform: translateY(-50%);
  background: var(--green-900); color: white;
  white-space: nowrap; font-size: 0.85rem;
  padding: 6px 12px; border-radius: var(--radius-sm);
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
  font-family: var(--font-body);
}
.blossom-chat-fab:hover .blossom-chat-tip { opacity: 1; }

.blossom-chat-panel {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 380px; max-width: calc(100vw - 24px);
  height: 580px; max-height: calc(100vh - 60px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  font-family: var(--font-body);
  opacity: 0; transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.blossom-chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.bc-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--green-700);
  color: white;
  flex-shrink: 0;
}
.bc-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.bc-title { flex: 1; min-width: 0; }
.bc-name { font-weight: 700; font-size: 1rem; line-height: 1.2; font-family: var(--font-display); }
.bc-status { font-size: 0.72rem; opacity: 0.82; margin-top: 2px; }
.bc-close {
  background: rgba(255,255,255,0.1); border: none; color: white;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
}
.bc-close:hover { background: rgba(255,255,255,0.25); }

.bc-body {
  flex: 1; min-height: 0;
  overflow-y: auto;
  padding: 16px 14px;
  background: var(--gray-50);
  display: flex; flex-direction: column; gap: 9px;
  scrollbar-width: thin;
  scrollbar-color: var(--green-100) transparent;
}
.bc-body::-webkit-scrollbar { width: 7px; }
.bc-body::-webkit-scrollbar-thumb { background: var(--green-100); border-radius: 4px; }

.bc-msg {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.bc-msg-user {
  align-self: flex-end;
  background: var(--green-700);
  color: white;
  border-bottom-right-radius: 4px;
}
.bc-msg-assistant {
  align-self: flex-start;
  background: var(--white);
  color: var(--gray-800);
  border: 1px solid var(--green-100);
  border-bottom-left-radius: 4px;
}
.bc-msg a { color: var(--green-700); text-decoration: underline; }
.bc-msg-user a { color: var(--gold-light); }
.bc-msg strong { font-weight: 700; }

.bc-typing { display: flex; gap: 4px; align-items: center; padding: 12px 14px; }
.bc-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-400);
  animation: bcDot 1.2s infinite ease-in-out;
}
.bc-typing span:nth-child(2) { animation-delay: 0.15s; }
.bc-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bcDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40%           { opacity: 1;   transform: scale(1); }
}

.bc-quick {
  display: flex; flex-wrap: wrap; gap: 6px;
  align-self: flex-start; max-width: 100%;
  margin-top: 4px;
}
.bc-chip {
  background: var(--white);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  padding: 7px 12px; border-radius: 999px;
  font-size: 0.82rem; cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}
.bc-chip:hover { background: var(--green-50); border-color: var(--green-600); }

.bc-form {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 12px 4px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.bc-input {
  flex: 1; min-width: 0;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--gray-50);
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.bc-input:focus { border-color: var(--green-600); background: var(--white); }
.bc-send {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-700); color: white;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}
.bc-send:hover { background: var(--green-900); transform: scale(1.05); }
.bc-send:disabled { background: var(--gray-200); cursor: not-allowed; transform: none; }
.bc-disclaimer {
  text-align: center; font-size: 0.7rem;
  color: var(--text-muted);
  padding: 4px 14px 10px;
  background: var(--white);
}
.bc-disclaimer a { color: var(--green-700); text-decoration: none; font-weight: 600; }

@media (max-width: 520px) {
  .blossom-chat-panel {
    bottom: 0; right: 0; left: 0; top: 0;
    width: 100%; height: 100%;
    max-width: 100%; max-height: 100%;
    border-radius: 0;
    transform: translateY(100%);
  }
  .blossom-chat-panel.open { transform: translateY(0); }
  .blossom-chat-fab { bottom: 84px; right: 18px; }
}
@media (max-height: 640px) and (min-width: 521px) {
  .blossom-chat-panel { height: calc(100vh - 80px); }
}
