﻿/* ============================================================
   DESIGN SYSTEM — Updated from Lailyn Hogan Logo
   Primary:   #2E8A1A  (Forest Green — L shape + leaf)
   Accent:    #B8AA4A  (Olive Gold — vertical bars)
   Brown:     #6B5320  (Warm Brown — logo text)
   Light bg:  #F4F7F1  (soft green-tinted off-white)
   Fonts:     Playfair Display (headings) / Inter (body)
   ============================================================ */

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

:root {
  --green:        #2E8A1A;
  --green-dark:   #1C5A0F;
  --olive:        #B8AA4A;
  --olive-dark:   #8C8030;
  --olive-light:  #EEE9CC;
  --brown:        #6B5320;
  --bg-light:     #F4F7F1;
  --bg-white:     #FFFFFF;
  --text:         #2C2C2C;
  --text-muted:   #6B7280;
  --border:       #DDE5D8;
  --success:      #2a7a4b;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(28,90,15,0.10);
  --shadow-lg:  0 12px 40px rgba(28,90,15,0.14);

  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 14px;
}
.section-header.light h2,
.section-header.light p { color: rgba(255,255,255,0.9); }
.section-header.light .section-eyebrow { color: var(--olive-light); }

/* ─── BUTTONS ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46,138,26,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-outline:hover {
  background: rgba(46,138,26,0.06);
  border-color: var(--green-dark);
}

.btn-nav {
  background: var(--olive);
  color: #fff;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.btn-nav:hover {
  background: var(--olive-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184,170,74,0.4);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─────────────────────────────────────────────────── */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-header.scrolled {
  background: var(--bg-white);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border);
}
.nav-header.scrolled .nav-links a { color: var(--green-dark); }
.nav-header.scrolled .nav-links a:hover { color: var(--green); }
.nav-header.scrolled .hamburger span { background: var(--green-dark); }
.nav-header.scrolled .btn-nav {
  background: var(--green);
  color: #fff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
.logo-img {
  height: 48px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-header.scrolled .hamburger span { background: var(--green-dark); }

/* ─── HERO ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&auto=format&fit=crop&q=80') center center / cover no-repeat;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.80) 50%, rgba(255,255,255,0.45) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(46,138,26,0.08);
  border: 1px solid rgba(46,138,26,0.22);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-left: 16px;
}
.hero h1 em {
  color: var(--olive-dark);
  font-style: italic;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
  padding-left: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-left: 16px;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-item strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: var(--font-heading);
  padding-left: 16px;
}
.proof-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-photo-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 92%;
  width: 42%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-photo-frame {
  height: 100%;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.photo-placeholder {
  background: linear-gradient(145deg, rgba(184,170,74,0.1) 0%, rgba(46,138,26,0.3) 100%);
  border-left: 2px solid rgba(184,170,74,0.2);
}

/* ─── TRUST STRIP ──────────────────────────────────────────── */

.trust-strip {
  background: var(--green-dark);
  padding: 32px 0;
  border-top: 3px solid var(--olive);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-label a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.trust-label a:hover {
  color: #fff;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}
.trust-logo-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  cursor: default;
}
.trust-logo-item:hover { color: var(--olive); }

/* ─── ABOUT ───────────────────────────────────────────────── */

.about { background: var(--bg-white); }

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: center;
}

.about-card-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
  box-shadow: var(--shadow-lg);
}
.about-card-img img {
  width: 100%;
  height: auto;
  display: block;
}
.about-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(184,170,74,0.3);
  pointer-events: none;
}

.about-credential-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.about-office {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 14px 18px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--olive);
  line-height: 1.5;
}
.about-office svg { flex-shrink: 0; margin-top: 2px; color: var(--olive-dark); }

.about-text-col h2 { margin-bottom: 20px; }
.about-text-col p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.01rem;
}
.about-text-col p strong { color: var(--green-dark); }

.about-perks {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.about-perks li strong { color: var(--green-dark); }
.perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--olive-light);
  color: var(--olive-dark);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* fade-in animation */
.service-card,
.trust-card,
.testimonial-card,
.about-grid {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.service-card.visible,
.trust-card.visible,
.testimonial-card.visible,
.about-grid.visible {
  opacity: 1;
  transform: none;
}

/* ─── SERVICES ────────────────────────────────────────────── */

.services { background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,138,26,0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.72); }
.service-card.featured .service-link { color: var(--olive); }
.service-card.featured .service-icon { background: rgba(184,170,74,0.15); }
.service-card.featured .service-icon svg { stroke: var(--olive); }
.service-card.featured::before { background: var(--olive); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--olive-light);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--olive-dark);
}

.service-card h3 { margin-bottom: 10px; }
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
}
.service-link:hover { color: var(--green-dark); }

.services-other {
  text-align: center;
  margin-top: 36px;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
}
.services-other strong { color: var(--green-dark); }

/* ─── TRUST SECTION ───────────────────────────────────────── */

.trust-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,170,74,0.10) 0%, transparent 60%);
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.trust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
}
.trust-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(184,170,74,0.4);
  transform: translateY(-4px);
}

.trust-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(184,170,74,0.35);
  line-height: 1;
  margin-bottom: 16px;
}
.trust-card h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
}
.trust-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */

.testimonials { background: var(--bg-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stars {
  color: var(--olive-dark);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--olive-light);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── CONTACT ─────────────────────────────────────────────── */

.contact { background: var(--bg-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-detail-item svg { flex-shrink: 0; margin-top: 1px; color: var(--green); }

.book-cta p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* FORM */
.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}
.required { color: var(--green); }

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,138,26,0.10);
}
.form-group input::placeholder { color: #aab0bc; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1.4;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
  padding: 0;
  border: none;
  box-shadow: none;
}
.checkbox-label.consent {
  font-size: 0.8rem;
  color: var(--text-muted);
  align-items: flex-start;
}
.consent-group { margin-top: 4px; }

.form-privacy {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  justify-content: center;
  margin-top: 14px;
}
.form-privacy svg { color: var(--success); flex-shrink: 0; }

/* ─── FOOTER ───────────────────────────────────────────────── */

.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  margin-top: 20px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-links h5,
.footer-contact h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--olive); }

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--olive); }

/* ─── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-card-img { max-width: 400px; margin: 0 auto; }
  .about-image-col { text-align: center; }
  .about-office { text-align: left; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .trust-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .hero-photo-wrap { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    border-top: 1px solid rgba(184,170,74,0.2);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-lg);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,0.85); font-size: 1rem; }
  .nav-links a:hover { color: var(--olive); }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .contact-form-wrap { padding: 28px 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }

  .trust-inner { flex-direction: column; gap: 20px; text-align: center; }
  .trust-label { white-space: normal; }
  .trust-logos { display: none; }

  .container { padding: 0 28px; }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 40px; }
  .hero-content { padding: 40px 0; max-width: 100%; text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }

  .about-credential-badge { font-size: 0.75rem; padding: 8px 14px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { font-size: 0.82rem; padding: 11px 20px; width: 100%; justify-content: center; }
  .hero-proof { gap: 16px; }
  .proof-divider { display: none; }

  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }

  .about-grid { gap: 40px; }
  .about-card-img { max-width: 100%; max-height: 350px; }
  .about-card-img img { object-fit: cover; object-position: top; height: 350px; }
}













