/* ============================================
   GRØNBO ANLÆG — STYLESHEET  |  gronbo.dk
   ============================================ */

:root {
  --green-dark:   #1b5e20;
  --green-main:   #2e7d32;
  --green-mid:    #388e3c;
  --green-light:  #66bb6a;
  --green-pale:   #e8f5e9;
  --green-pale2:  #f1f8f1;
  --orange:       #c43e00;
  --orange-hover: #a33200;
  --text-dark:    #1a1a1a;
  --text-mid:     #424242;
  --text-light:   #757575;
  --white:        #ffffff;
  --border:       #e0e0e0;
  --shadow:    0 2px 8px rgba(0,0,0,.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,.13);
  --radius:    6px;
  --radius-lg: 12px;
  --max-width: 1140px;
  --ease:      0.25s ease;
}

/* ── Font-swap fallbacks (eliminates CLS) ──── */
@font-face {
  font-family: 'Open Sans Fallback';
  src: local('Arial');
  size-adjust: 105.2%;
  ascent-override: 103.2%;
  descent-override: 28.3%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Montserrat Fallback';
  src: local('Arial');
  size-adjust: 112.6%;
  ascent-override: 85%;
  descent-override: 22.1%;
  line-gap-override: 0%;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Open Sans', 'Open Sans Fallback', system-ui, -apple-system, sans-serif;
        color: var(--text-dark); background: var(--white); line-height: 1.65;
        min-height: 100vh; display: flex; flex-direction: column; }
.site-footer { margin-top: auto; }
img     { max-width: 100%; height: auto; display: block; }
.about-img-placeholder picture,
.service-card-img picture {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Montserrat Fallback', system-ui, sans-serif;
  font-weight: 700; line-height: 1.2; color: var(--text-dark);
}
h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; color: var(--text-mid); }

/* ── Layout helpers ─────────────────────────── */

/* Real logo image */
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  max-width: 200px;
}
.logo-img-footer {
  height: 36px;
  /* Invertér til hvid på den mørke footer-baggrund */
  filter: brightness(0) invert(1);
  opacity: .85;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green-main);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  max-width: var(--max-width); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--green-main); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Montserrat', 'Montserrat Fallback', sans-serif; font-weight: 800;
  font-size: 1.22rem; color: var(--green-main); line-height: 1;
}
.logo-sub {
  font-size: .7rem; color: var(--text-light);
  letter-spacing: .06em; text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  font-size: .93rem; font-weight: 600; color: var(--text-dark);
  padding: .25rem 0; border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-main); border-bottom-color: var(--green-main);
}
.header-cta {
  background: var(--orange); color: #fff;
  padding: .6rem 1.35rem; border-radius: var(--radius);
  font-weight: 700; font-size: .88rem; white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
}
.header-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px); color: #fff; border-bottom: none;
}

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .75rem 0; border-bottom: 1px solid var(--border);
  font-weight: 600; color: var(--text-dark);
  transition: color var(--ease);
}
.mobile-nav a:hover { color: var(--green-main); }
.mobile-nav .mobile-cta {
  margin-top: 1rem; background: var(--orange); color: #fff;
  text-align: center; padding: .75rem; border-radius: var(--radius);
  font-weight: 700; border-bottom: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 45%, #388e3c 100%);
  color: #fff; padding: 5rem 1.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; 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='%23ffffff' fill-opacity='0.04'%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/svg%3E");
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  padding: .4rem 1rem; border-radius: 50px;
  font-size: .84rem; margin-bottom: 1.4rem;
}
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 span { color: #a5d6a7; }
.hero-desc {
  font-size: 1.08rem; color: rgba(255,255,255,.88);
  margin-bottom: 2rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--orange); color: #fff;
  padding: .9rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; border: 2px solid var(--orange);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all var(--ease);
}
.btn-primary:hover {
  background: var(--orange-hover); border-color: var(--orange-hover);
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(230,81,0,.3);
  color: #fff;
}
.btn-secondary {
  background: transparent; color: #fff;
  padding: .9rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.55);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all var(--ease);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1); border-color: #fff;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Montserrat', 'Montserrat Fallback', sans-serif;
  font-size: 2rem; font-weight: 800; color: #fff; line-height: 1;
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.74); }

/* Hero right cards */
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.hero-card {
  background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg); padding: 1.25rem;
  transition: background var(--ease);
}
.hero-card:hover { background: rgba(255,255,255,.18); }
.hero-card-icon { font-size: 2rem; margin-bottom: .5rem; }
.hero-card h4 { color: #fff; font-size: .93rem; margin-bottom: .25rem; }
.hero-card p  { color: rgba(255,255,255,.74); font-size: .8rem; margin: 0; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--green-main); padding: .9rem 1.5rem; }
.trust-bar-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .45rem;
  color: #fff; font-size: .88rem;
}
.trust-item span { font-size: 1.05rem; }

/* ============================================
   GENERIC SECTIONS
   ============================================ */
.section     { padding: 5rem 1.5rem; }
.section-alt { background: var(--green-pale2); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .tag {
  display: inline-block;
  background: var(--green-pale); color: var(--green-main);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .33rem .9rem; border-radius: 50px;
  margin-bottom: .9rem; border: 1px solid #c8e6c9;
}
.section-header h2  { margin-bottom: .9rem; }
.section-header > p { font-size: 1.03rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.divider { width: 50px; height: 4px; background: var(--green-main); margin: .9rem auto 0; border-radius: 2px; }

/* ============================================
   SERVICE CARDS  (homepage grid)
   ============================================ */
.services-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.75rem;
}
.service-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.service-card-img {
  height: 195px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem; color: var(--green-main);
  font-size: 3.5rem;
}
.img-placeholder span { font-size: .78rem; font-weight: 700; letter-spacing: .04em; }

.service-card-tag {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--green-main); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: .28rem .72rem; border-radius: 50px;
}
.service-card-body { padding: 1.4rem; }
.service-card-body h3   { margin-bottom: .65rem; color: var(--green-dark); }
.service-card-body p    { font-size: .91rem; margin-bottom: 1.1rem; }
.service-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--green-main); font-weight: 700; font-size: .88rem;
  transition: gap var(--ease);
}
.service-link:hover { gap: .7rem; }

/* ============================================
   ABOUT  (homepage)
   ============================================ */
.about-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-img-placeholder {
  width: 100%; height: 400px;
  background: linear-gradient(135deg, var(--green-pale) 0%, #c8e6c9 100%);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 5rem; gap: 1rem; color: var(--green-main);
  position: relative;
}
.about-img-placeholder .img-label { font-size: .9rem; font-weight: 600; }
.about-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--green-main); color: #fff;
  padding: 1.2rem 1.4rem; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: 'Montserrat', 'Montserrat Fallback', sans-serif;
  font-size: 2.4rem; font-weight: 800; line-height: 1;
}
.about-badge-text { font-size: .75rem; }
.about-content h2 { margin-bottom: 1.2rem; }
.about-list { margin: 1.4rem 0; display: flex; flex-direction: column; gap: .7rem; }
.about-list li {
  display: flex; align-items: flex-start;
  gap: .7rem; font-size: .93rem; color: var(--text-mid);
}
.about-list li::before {
  content: '✓'; background: var(--green-main); color: #fff;
  width: 21px; height: 21px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ============================================
   SERVICE AREAS BAND
   ============================================ */
.areas-section { background: var(--green-dark); padding: 4rem 1.5rem; }
.areas-inner   { max-width: var(--max-width); margin: 0 auto; text-align: center; }
.areas-inner .section-header .tag {
  background: rgba(255,255,255,.22); color: #fff;
  border-color: rgba(255,255,255,.4);
}
.areas-inner h2, .areas-inner p { color: #fff; }
.areas-inner .divider { background: rgba(255,255,255,.35); }
.areas-grid {
  display: flex; flex-wrap: wrap; gap: .7rem;
  justify-content: center; margin-top: 1.8rem;
}
.area-chip {
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  color: #fff; padding: .48rem 1.2rem; border-radius: 50px;
  font-size: .88rem; font-weight: 600; transition: background var(--ease);
}
.area-chip:hover { background: rgba(255,255,255,.28); }
.area-chip.main {
  background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.45);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-inner { max-width: var(--max-width); margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 2rem;
}
.step { text-align: center; padding: 1.4rem; }
.step-num {
  width: 54px; height: 54px; background: var(--green-main); color: #fff;
  border-radius: 50%; font-family: 'Montserrat', 'Montserrat Fallback', sans-serif;
  font-weight: 800; font-size: 1.45rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.step h3 { margin-bottom: .45rem; font-size: 1.03rem; }
.step p  { font-size: .88rem; margin: 0; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #e65100, #bf360c);
  padding: 4rem 1.5rem; text-align: center;
}
.cta-inner  { max-width: 700px; margin: 0 auto; }
.cta-section h2 { color: #fff; margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.88); font-size: 1.08rem; max-width: 580px; margin: 0 auto 2rem; }
.btn-white {
  background: #fff; color: var(--orange);
  padding: 1rem 2.4rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1.03rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all var(--ease);
}
.btn-white:hover {
  background: #f5f5f5; transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.2); color: var(--orange-hover);
}
.cta-phone { display: block; font-size: 1.45rem; font-weight: 800; color: #fff; margin-top: 1.4rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #1a1a1a; color: #ccc; padding: 3.5rem 1.5rem 1.5rem; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-name { color: #66bb6a; }
.footer-brand .logo-sub  { color: #888; }
.footer-desc { margin-top: .9rem; font-size: .88rem; color: #aaa; line-height: 1.7; }
.footer-col h3 {
  color: #fff; font-size: .97rem; margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--green-main);
  padding-bottom: .45rem; display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a  { font-size: .88rem; color: #aaa; transition: color var(--ease); }
.footer-col a:hover { color: #66bb6a; }
.contact-item {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .88rem; color: #aaa; margin-bottom: .7rem;
}
.contact-item .ci-icon { font-size: 1rem; color: #66bb6a; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  border-top: 1px solid #333; padding-top: 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem; font-size: .81rem; color: #999;
}

/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 55%, #388e3c 100%);
  padding: 3.5rem 1.5rem 3rem; color: #fff;
}
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.breadcrumbs {
  display: flex; align-items: center; gap: .45rem;
  font-size: .83rem; margin-bottom: 1.4rem; color: rgba(255,255,255,.74);
}
.breadcrumbs a { color: rgba(255,255,255,.74); transition: color var(--ease); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { color: rgba(255,255,255,.4); }
.page-hero h1    { color: #fff; margin-bottom: .9rem; }
.page-hero-desc  { font-size: 1.08rem; color: rgba(255,255,255,.88); max-width: 680px; line-height: 1.75; }

/* ============================================
   INNER PAGE CONTENT  (service pages)
   ============================================ */
.content-section { padding: 4rem 1.5rem; }
.content-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr; gap: 3.5rem; align-items: start;
}
.content-main h2       { margin-bottom: .9rem; }
.content-main h3       { margin: 2rem 0 .7rem; color: var(--green-dark); }
.content-main ul       { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.4rem; }
.content-main ul li    { margin-bottom: .45rem; color: var(--text-mid); }

/* Sidebar */
.sidebar-card {
  background: var(--green-pale2); border: 1px solid #c8e6c9;
  border-radius: var(--radius-lg); padding: 1.6rem; margin-bottom: 1.4rem;
}
.sidebar-card h4    { color: var(--green-dark); margin-bottom: .9rem; font-size: 1.02rem; }
.sidebar-card .contact-item { color: var(--text-mid); }
.sidebar-cta {
  background: var(--orange); color: #fff; display: block;
  text-align: center; padding: .95rem; border-radius: var(--radius);
  font-weight: 700; transition: background var(--ease); margin-bottom: .9rem;
}
.sidebar-cta:hover { background: var(--orange-hover); color: #fff; }
.sidebar-cta-secondary {
  display: block; text-align: center;
  padding: .85rem; border-radius: var(--radius);
  font-weight: 700; font-size: .92rem;
  border: 2px solid var(--green-main); color: var(--green-main);
  transition: all var(--ease);
}
.sidebar-cta-secondary:hover {
  background: var(--green-main); color: #fff;
}

/* Feature grid (service pages) */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem; margin: 2.2rem 0;
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--green-pale2); border-radius: var(--radius-lg);
  padding: 1.4rem; border-left: 4px solid var(--green-main);
}
.feature-icon { font-size: 2rem; margin-bottom: .65rem; }
.feature-card h4 { margin-bottom: .45rem; color: var(--green-dark); }
.feature-card p  { font-size: .88rem; margin: 0; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: .75rem; overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.3rem; font-weight: 600; font-size: .97rem;
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  color: var(--text); background: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--green-main);
  transition: transform .25s; flex-shrink: 0; margin-left: .75rem;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--green-dark); }
.faq-answer { padding: .2rem 1.3rem 1.2rem; }
.faq-answer p { margin: 0; font-size: .92rem; color: var(--text-light); }

/* Local areas block (service pages) */
.local-areas {
  background: var(--green-pale); border-radius: var(--radius-lg);
  padding: 1.8rem; margin: 2.2rem 0; border: 1px solid #c8e6c9;
}
.local-areas h3 { margin: 0 0 1rem; font-size: 1.1rem; }
.local-chips    { display: flex; flex-wrap: wrap; gap: .45rem; }
.local-chip {
  background: var(--green-main); color: #fff;
  padding: .33rem .85rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600;
}

/* Related services */
.related-services { margin-top: 3rem; }
.related-services h3 { margin-bottom: 1.25rem; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem;
}
.related-card {
  background: var(--green-pale2); border: 1px solid #c8e6c9;
  border-radius: var(--radius-lg); padding: 1.25rem;
  transition: all var(--ease);
}
.related-card:hover { background: var(--green-pale); transform: translateY(-2px); }
.related-card .rc-icon { font-size: 1.6rem; margin-bottom: .5rem; }
.related-card h4 { font-size: .95rem; color: var(--green-dark); margin-bottom: .25rem; }
.related-card p  { font-size: .82rem; color: var(--text-light); margin: 0; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group   { display: flex; flex-direction: column; gap: .38rem; }
.form-group label { font-weight: 600; font-size: .88rem; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .72rem 1rem;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: .93rem; font-family: inherit;
  transition: border-color var(--ease);
  background: #fff; color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus  { outline: none; border-color: var(--green-main); }
.form-group textarea        { resize: vertical; min-height: 115px; }
.form-submit {
  background: var(--green-main); color: #fff;
  padding: .9rem 2rem; border: none; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: all var(--ease);
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-note { font-size: .8rem; color: var(--text-light); margin-top: -.3rem; }
.honeypot  { display: none !important; visibility: hidden; }

/* Alert messages */
.alert {
  padding: 1rem 1.25rem; border-radius: var(--radius);
  font-size: .93rem; margin-bottom: 1rem;
}
.alert-success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.alert-error   { background: #fce4ec; color: #880e4f; border: 1px solid #f48fb1; }

/* Contact info side */
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-card {
  background: var(--green-pale2); border-radius: var(--radius-lg);
  padding: 1.4rem; display: flex; gap: .9rem; border-left: 4px solid var(--green-main);
}
.contact-card-icon { font-size: 1.7rem; flex-shrink: 0; }
.contact-card h4   { margin-bottom: .28rem; color: var(--green-dark); }
.contact-card p,
.contact-card a    { font-size: .93rem; color: var(--text-mid); margin: 0; }
.contact-card a:hover { color: var(--green-main); }
.map-placeholder {
  width: 100%; height: 240px; background: var(--green-pale);
  border-radius: var(--radius-lg); display: flex;
  align-items: center; justify-content: center;
  font-size: 3rem; flex-direction: column; gap: .5rem;
  color: var(--green-main); font-size: .9rem; font-weight: 600;
  text-align: center;
}
.map-placeholder .map-icon { font-size: 3rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-section { padding: 4rem 1.5rem; background: var(--green-pale2); }
.team-inner   { max-width: var(--max-width); margin: 0 auto; }
.values-grid  {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem;
}
.value-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 1.75rem; text-align: center; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: transform var(--ease);
}
.value-card:hover { transform: translateY(-3px); }
.value-icon  { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.value-card p  { font-size: .9rem; margin: 0; }

/* ============================================
   UTILITY
   ============================================ */
.text-green { color: var(--green-main); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .hero       { padding: 3.5rem 1.5rem 3rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-placeholder { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-inner { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section, .content-section { padding: 3rem 1rem; }
  .hero        { padding: 2.5rem 1rem 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats   { gap: 1.2rem; }
  .hero-actions { flex-direction: column; }
  .trust-bar-inner { gap: .75rem; }
  .process-steps   { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
}
