/* ============================================================
   ASU – Accounting & Business Solutions Upward
   Main Stylesheet  |  Brand: Be Vietnam Pro, Green #64BB56–#386630
   ============================================================ */

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

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --green-light:   #64BB56;
  --green-dark:    #386630;
  --green-mid:     #4A9641;
  --green-forest:  #1F3D1C;
  --green-pale:    #DEE8DD;
  --green-mint:    #DEE8DD;
  --green-grad:    linear-gradient(135deg, #64BB56 0%, #386630 100%);
  --green-grad-v:  linear-gradient(180deg,  #64BB56 0%, #386630 100%);

  --text-dark:     #1A2332;
  --text-body:     #374151;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;

  --bg-white:      #FFFFFF;
  --bg-off:        #F8FAF7;
  --bg-subtle:     #F3F4F6;
  --border:        #E5E7EB;

  --font:          'Be Vietnam Pro', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.12);
  --shadow-green:  0 8px 32px rgba(100,187,86,.28);

  --nav-h:         72px;
  --max-w:         1200px;
  --transition:    0.25s ease;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(100,187,86,.18);
}
textarea { resize: vertical; min-height: 130px; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 112px 0; }

.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.text-green  { color: var(--green-dark); }
.text-muted  { color: var(--text-muted); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.tag--white {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -.5px;
}
.section-heading span {
  background: var(--green-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.7;
}
.section-sub--left { margin-left: 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-grad);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(100,187,86,.4);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
.btn-lg { font-size: 16px; padding: 16px 36px; }
.btn-sm { font-size: 13px; padding: 9px 20px; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,.6);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  background: rgba(255,255,255,.98);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__logo { display: flex; align-items: center; margin-right: auto; }
.nav__logo img { height: 54px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--green-dark);
  background: var(--green-pale);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: 50px;
  padding: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.lang-switch button {
  border: none;
  background: transparent;
  padding: 6px 11px;
  border-radius: 50px;
  cursor: pointer;
  color: #6b7280;
  font-weight: 700;
  font-family: inherit;
  transition: all .2s ease;
}
.lang-switch button.active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.lang-switch button:hover:not(.active) { color: #111; }
.nav__mobile .lang-switch { margin-top: 10px; align-self: flex-start; }
/* Hide Google Translate UI (banner only — DO NOT hide .skiptranslate, that breaks the engine) */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; position: static !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
#google_translate_element {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.nav__portal {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-body);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  transition: all var(--transition);
}
.nav__portal:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 12px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  z-index: 999;
  animation: slideDown .2s ease;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--green-dark); }
.nav__mobile .nav-ctas {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero (Homepage) ─────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background: url('../assets/Hero%20Officce.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31,61,28,.45) 0%, rgba(56,102,48,.20) 50%, transparent 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 0;
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}
.hero__tag-dot {
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}
.hero__heading {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero__heading .highlight {
  background: var(--green-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
}
.hero__trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}
.hero__trust-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  letter-spacing: .5px;
  margin-top: 2px;
}
.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

.hero__visual {
  position: relative;
}
.hero__card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
}
.hero__card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}
.hero__services-list { display: flex; flex-direction: column; gap: 12px; }
.hero__service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  transition: background var(--transition);
}
.hero__service-item:hover { background: rgba(100,187,86,.15); }
.hero__service-icon {
  width: 32px; height: 32px;
  background: var(--green-grad);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.hero__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__badge-icon {
  width: 40px; height: 40px;
  background: var(--green-grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.hero__badge-text { display: flex; flex-direction: column; }
.hero__badge-num  { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.hero__badge-sub  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── Partners / Trust Bar ─────────────────────────────────── */
.trust-bar {
  padding: 28px 0;
  background: var(--bg-off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.trust-bar__badges {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}
.trust-badge-icon {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--green-dark);
}

/* ── Services Grid (card fallback kept for services.html) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--green-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-card__icon { background: var(--green-grad); }
.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card__text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-dark);
}
.service-card__link:hover { gap: 10px; }

/* ── Services Row List (editorial numbered) ───────────────── */
.services-rows {
  margin-top: 52px;
  border-top: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.service-row:hover { color: inherit; }
.service-row:hover {
  padding-left: 16px;
  background: var(--bg-off);
  border-radius: var(--radius);
}
.service-row__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-pale);
  transition: color var(--transition);
}
.service-row:hover .service-row__num {
  background: var(--green-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-row__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-row__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition);
}
.service-row:hover .service-row__title { color: var(--green-dark); }
.service-row__text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s ease, margin .3s ease;
}
.service-row:hover .service-row__text {
  max-height: 80px;
  opacity: 1;
  margin-top: 6px;
}
.service-row__arrow {
  font-size: 14px;
  color: var(--green-dark);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.service-row:hover .service-row__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Why Choose ASU ──────────────────────────────────────── */
.why-section {
  background: var(--green-forest);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 15% 80%, rgba(100,187,86,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 85% 20%, rgba(100,187,86,.08) 0%, transparent 60%);
  pointer-events: none;
}
.why-section .tag { color: var(--green-light); background: rgba(100,187,86,.15); }
.why-section .section-heading { color: #fff; }
.why-section .section-heading span {
  background: linear-gradient(135deg, #64BB56 0%, #8CD97E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-section .section-sub, .why-section .section-sub--left { color: rgba(255,255,255,.7); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.why-content {}
.why-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item__icon {
  width: 48px; height: 48px;
  background: rgba(100,187,86,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item__title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.why-item__text  { font-size: 14.5px; color: rgba(255,255,255,.65); line-height: 1.6; }

.why-visual {
  position: relative;
  padding: 20px;
}
.why-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  padding: 40px 32px;
  color: #fff;
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.why-stat {
  background: rgba(100,187,86,.12);
  border: 1px solid rgba(100,187,86,.2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.why-stat__num { font-size: 2rem; font-weight: 800; color: var(--green-light); line-height: 1; }
.why-stat__label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { background: var(--bg-off); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial-card__stars { color: #F59E0B; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card__quote-mark {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 60px;
  line-height: 1;
  color: var(--green-pale);
  font-family: Georgia, serif;
  font-weight: 700;
}
.testimonial-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-card__name  { font-size: 14.5px; font-weight: 700; color: var(--text-dark); }
.testimonial-card__role  { font-size: 12.5px; color: var(--text-muted); margin-top: 1px; }

/* ── Blog / Insights ──────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.blog-card__thumb {
  height: 200px;
  background: var(--green-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.blog-card__thumb-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px,
    transparent 1px, transparent 8px
  );
}
.blog-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
}
.blog-card__body { padding: 24px; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-card__meta-dot { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.blog-card:hover .blog-card__title { color: var(--green-dark); }
.blog-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
}
.blog-card__link:hover { gap: 10px; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--green-grad);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% 50%, rgba(255,255,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}
.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--green-forest);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(100,187,86,.15);
}
.footer__brand {}
.footer__logo { height: 44px; margin-bottom: 18px; }
.footer__tagline { font-size: 14.5px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px; height: 36px;
  background: rgba(100,187,86,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer__social:hover { background: var(--green-light); color: #fff; }
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14.5px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--green-light); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.footer__contact-item i { color: var(--green-light); margin-top: 2px; flex-shrink: 0; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--green-light); }

/* ── Page Hero (Inner Pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 72px;
  background: linear-gradient(135deg, var(--green-forest) 0%, #2A5424 60%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49.5%, var(--bg-white) 50%);
}
.page-hero__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin: 0 auto 24px;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
}
.page-hero__breadcrumb a { color: var(--green-light); }
.page-hero__breadcrumb a:hover { color: #fff; }

/* ── Services Page ────────────────────────────────────────── */
.services-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.services-detail:last-child { border-bottom: none; }
.services-detail--reverse .services-detail__visual { order: -1; }
.services-detail__tag { margin-bottom: 10px; }
.services-detail__heading {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.3px;
  margin-bottom: 16px;
}
.services-detail__text { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.services-detail__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.services-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
}
.services-detail__list li::before {
  content: '✓';
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}
.services-detail__visual {
  background: var(--green-grad);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.services-detail__visual::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.services-detail__icon-big {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

/* ── About Page ───────────────────────────────────────────── */

/* Profile layout */
.about-profile-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: flex-start;
}

/* Photo column */
.about-photo-col {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.about-photo-wrap {
  position: relative;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #2e5d27 0%, #386630 40%, #64BB56 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(255,255,255,.06) 0%, transparent 70%);
}
.about-photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.about-photo-icon {
  font-size: 96px;
  color: rgba(255,255,255,.35);
}
.about-photo-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.1);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.15);
}
.about-photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.about-photo-badge__icon {
  width: 40px; height: 40px;
  background: var(--green-grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.about-photo-badge__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.about-photo-badge__sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Stats row inside story */
.about-stats-row {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 8px;
}
.about-stat {
  display: flex;
  flex-direction: column;
}
.about-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.about-stat__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .about-profile-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-photo-col {
    position: static;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.team-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.team-card__avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--green-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  margin: 0 auto 18px;
}
.team-card__name  { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-card__role  { font-size: 12.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px; }
.team-card__bio   { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  padding: 28px 20px;
  background: var(--bg-off);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.value-card:hover { background: var(--green-pale); border-color: var(--green-light); }
.value-card__icon { font-size: 32px; margin-bottom: 14px; }
.value-card__title { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.value-card__text  { font-size: 13.5px; color: var(--text-muted); }

/* ── Resources / Calculators ─────────────────────────────── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.resource-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green-light); transform: translateY(-3px); }
.resource-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.resource-card__type {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.resource-card__title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.resource-card__text  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.resource-card__btn { width: 100%; text-align: center; justify-content: center; }

.calculator-box {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.calculator-box__header {
  background: var(--green-grad);
  padding: 24px 28px;
  color: #fff;
}
.calculator-box__title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.calculator-box__sub   { font-size: 13px; color: rgba(255,255,255,.75); }
.calculator-box__body  { padding: 28px; }
.calc-field { margin-bottom: 18px; }
.calc-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-body); margin-bottom: 7px; }
.calc-result {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}
.calc-result__label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--green-dark); }
.calc-result__value { font-size: 2rem; font-weight: 800; color: var(--green-dark); line-height: 1.2; margin-top: 6px; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 48px;
  margin-top: 52px;
}
.contact-form { background: var(--bg-white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-body); margin-bottom: 7px; }
.form-note  { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.contact-info {}
.contact-info-card {
  background: var(--bg-off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.contact-info-card__title { font-size: .9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14.5px;
}
.contact-detail__icon {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail__label { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--text-muted); }
.contact-detail__value { font-weight: 500; color: var(--text-dark); }
.contact-detail__value a { color: var(--text-dark); }
.contact-detail__value a:hover { color: var(--green-dark); }

.map-placeholder {
  width: 100%;
  height: 220px;
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  font-size: 14px;
  margin-top: 16px;
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1.5px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-dark); }
.faq-question__icon {
  width: 28px; height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--green-dark);
}
.faq-item.open .faq-question__icon { background: var(--green-dark); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* ── Chat Widget ─────────────────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}
.chat-btn {
  width: 58px; height: 58px;
  background: var(--green-grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: var(--shadow-green);
  transition: all var(--transition);
  position: relative;
}
.chat-btn:hover { transform: scale(1.08); }
.chat-btn-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-light);
  opacity: .5;
  animation: chatPulse 2.5s ease-in-out infinite;
}
@keyframes chatPulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50%       { transform: scale(1.15); opacity: 0; }
}
.chat-panel {
  display: none;
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: slideUp .2s ease;
}
.chat-panel.open { display: block; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-panel__header {
  background: var(--green-grad);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.chat-panel__avatar {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.chat-panel__name  { font-weight: 700; font-size: 14.5px; }
.chat-panel__status { font-size: 11.5px; color: rgba(255,255,255,.75); }
.chat-panel__body  { padding: 20px; }
.chat-panel__msg {
  background: var(--bg-off);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 16px;
}
.chat-options { display: flex; flex-direction: column; gap: 8px; }
.chat-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--transition);
  text-decoration: none;
}
.chat-option:hover { border-color: var(--green-light); background: var(--green-pale); color: var(--green-dark); }

/* ── Booking Section ─────────────────────────────────────── */
.booking-section {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
}
.booking-widget {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.booking-inline {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
  text-align: left;
}
.booking-types { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.booking-type {
  padding: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.booking-type.selected, .booking-type:hover {
  border-color: var(--green-light);
  background: var(--green-pale);
}
.booking-type__icon { font-size: 22px; margin-bottom: 6px; }
.booking-type__name { font-size: 13px; font-weight: 600; color: var(--text-dark); }

/* ── Scroll Animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ── Blog Page Full ───────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  margin-top: 52px;
}
.blog-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-bottom: 36px;
  transition: all var(--transition);
}
.blog-featured:hover { box-shadow: var(--shadow-lg); }
.blog-featured__thumb {
  height: 280px;
  background: var(--green-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  position: relative;
}
.blog-featured__body { padding: 32px; }
.blog-featured__title { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; line-height: 1.3; }
.blog-featured__title:hover { color: var(--green-dark); }

.sidebar {}
.sidebar-widget {
  background: var(--bg-off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget__title { font-size: .85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.sidebar-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  cursor: pointer;
  transition: color var(--transition);
}
.sidebar-cat:hover { color: var(--green-dark); }
.sidebar-cat:last-child { border-bottom: none; }
.sidebar-cat__count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2px 9px;
}
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input { padding: 11px 14px; font-size: 14px; }

/* ── Page content padding ─────────────────────────────────── */
.page-content { padding-top: 0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__content { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-detail { grid-template-columns: 1fr; }
  .services-detail--reverse .services-detail__visual { order: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  /* Hero mobile — show the photo */
  .hero {
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 48px;
    background-position: 65% center;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
  }
  .hero::before {
    background: linear-gradient(to top, rgba(31,61,28,.78) 0%, rgba(31,61,28,.40) 45%, rgba(31,61,28,.05) 100%);
  }
  .hero__inner { width: 100%; }
  .hero__heading { font-size: 2rem; }
  .hero__sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero__tag { font-size: 11px; letter-spacing: 1px; }
  .hero__ctas { flex-direction: column; gap: 10px; }
  .hero__ctas .btn { font-size: 14px; padding: 12px 24px; width: 100%; justify-content: center; }
  .hero__trust { gap: 20px; flex-wrap: wrap; margin-top: 28px; padding-top: 20px; }
  .hero__trust-num { font-size: 1.3rem; }

  /* Trust bar mobile */
  .trust-bar__badges { justify-content: center; gap: 16px; }
  .trust-badge { font-size: 12px; }

  /* Services rows mobile */
  .services-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 40px 1fr auto; gap: 14px; padding: 20px 0; }
  .service-row__num { font-size: 1.1rem; }
  .service-row__title { font-size: 1rem; }
  .service-row:hover .service-row__text { max-height: 120px; }

  /* Why section mobile */
  .why-grid { gap: 36px; }
  .why-visual { padding: 0; }
  .why-item { gap: 14px; }
  .why-item__icon { width: 40px; height: 40px; font-size: 18px; }

  /* Testimonials mobile */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card__text { font-size: 14px; }

  /* General mobile */
  .blog-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section--lg { padding: 64px 0; }
  .section-heading { font-size: 1.6rem; }
  .section-sub { font-size: 0.95rem; }
  .cta-banner { padding: 56px 0; }
  .cta-banner__heading { font-size: 1.5rem; }
  .cta-banner__btns { flex-direction: column; gap: 10px; }
  .cta-banner__btns .btn { width: 100%; justify-content: center; }
  .chat-widget { bottom: 20px; right: 20px; }

  /* Page hero mobile */
  .page-hero { padding: calc(var(--nav-h) + 36px) 0 48px; }
  .page-hero__heading { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .booking-types { grid-template-columns: 1fr; }
  .hero__heading { font-size: 1.7rem; }
  .chat-panel { width: 280px; right: -8px; }
}

/* ── Article Body ─────────────────────────────────────────── */
.article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}
.article-body p { margin-bottom: 20px; }
.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-pale);
}
.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}
.article-body ul, .article-body ol {
  margin-left: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body li { line-height: 1.7; }
.article-body strong { color: var(--text-dark); }
