/* ==========================================================
   FutureFit Energy — Main Stylesheet
   Colour palette derived from brand logo
   ========================================================== */

/* --- CSS Variables --- */
:root {
  --green-darkest:  #0E3D24;
  --green-primary:  #1A5C38;
  --green-teal:     #26806A;
  --green-bright:   #5CB85A;
  --green-light:    #EEF7F2;
  --green-pale:     #DFF0E8;

  --white:          #FFFFFF;
  --text-dark:      #1C2B22;
  --text-medium:    #3D5347;
  --text-light:     #6B8A77;
  --border:         #D4E6DC;

  --shadow-sm:      0 2px 8px rgba(26,92,56,0.08);
  --shadow-md:      0 4px 20px rgba(26,92,56,0.12);
  --shadow-lg:      0 8px 40px rgba(26,92,56,0.16);

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

  --font-heading:   'Marcellus', serif;
  --font-body:      'DM Sans', sans-serif;

  --transition:     0.25s ease;

  --max-width:      1200px;
  --nav-height:     72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--green-darkest);
}

h4, h5 {
  font-family: var(--font-body);
  line-height: 1.2;
  color: var(--green-darkest);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 400; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 400; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-body); }

p { color: var(--text-medium); line-height: 1.7; }

/* --- Layout Helpers --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--alt { background: var(--green-pale); }
.section--dark {
  background: var(--green-darkest);
  color: var(--white);
}
.section--dark h2,
.section--dark h3,
.section--dark p { color: var(--white); }

.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header p {
  margin-top: 14px;
  font-size: 1.05rem;
}

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

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: var(--green-darkest);
  border-color: var(--green-darkest);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}
.btn-secondary:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--green-primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1.1;
}
.nav__logo-text span { color: var(--green-teal); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--green-primary);
  background: var(--green-light);
}

.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav__dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-medium);
}
.nav__dropdown-menu a:hover {
  background: var(--green-light);
  color: var(--green-primary);
}
.nav__dropdown-menu a .menu-icon {
  width: 32px;
  height: 32px;
  background: var(--green-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-primary);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 16px 24px 24px;
  z-index: 999;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile-section { margin-top: 8px; }
.nav__mobile-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 16px 0 4px;
}

/* --- Page Offset for fixed nav --- */
.page-content { padding-top: var(--nav-height); }

/* --- Hero --- */
.hero {
  background:
    linear-gradient(135deg, rgba(14,61,36,0.93) 0%, rgba(26,92,56,0.87) 50%, rgba(38,128,106,0.82) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { color: var(--white); }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
}

.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__title span { color: var(--green-bright); }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero__stat-value {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.hero__card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}

.hero__card-icon {
  width: 52px; height: 52px;
  background: var(--green-bright);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.hero__card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.hero__card p  { color: rgba(255,255,255,0.75); font-size: 0.88rem; }

.hero__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(92,184,90,0.25);
  border: 1px solid rgba(92,184,90,0.4);
  color: #a8e6a6;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  margin-top: 12px;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-teal);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  border-color: var(--green-primary);
  border-top-color: var(--green-bright);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-light), #C8EDD8);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-darkest);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-top: auto;
}
.service-card__link svg { transition: transform var(--transition); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why__content { display: flex; flex-direction: column; gap: 28px; }

.why__item { display: flex; gap: 18px; }

.why__item-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--green-primary);
}

.why__item-text h4 { margin-bottom: 4px; }
.why__item-text p { font-size: 0.92rem; }

.why__visual {
  background: linear-gradient(135deg, var(--green-primary), var(--green-teal));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  text-align: center;
}

.why__visual h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.why__visual p  { color: rgba(255,255,255,0.85); margin-bottom: 32px; }

.why__visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why__visual-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 20px 16px;
}

.why__visual-stat-value {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.why__visual-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* --- Coverage --- */
.coverage {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  gap: 48px;
  align-items: center;
}

.coverage__text { flex: 1; }
.coverage__text h2 { margin-bottom: 12px; }
.coverage__text p  { margin-bottom: 24px; }

.coverage__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.coverage__area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--green-primary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.coverage__map {
  flex: 0 0 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-teal));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 24px;
}
.coverage__map-icon { font-size: 3rem; margin-bottom: 12px; }
.coverage__map h4  { color: var(--white); font-size: 1.1rem; }
.coverage__map p   { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-top: 8px; }

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-card__stars {
  color: #F5A623;
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.93rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px; height: 42px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--green-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-primary) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: var(--green-darkest);
  color: var(--white);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.footer__logo-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer__logo-text span { color: var(--green-bright); }

.footer__logo img { height: 40px; width: auto; }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.footer__contact-item svg { color: var(--green-bright); flex-shrink: 0; }

.footer__col h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--green-bright); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--green-bright); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  background-color: var(--green-darkest);
  background-size: cover;
  background-position: center;
  padding: 72px 0 64px;
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,61,36,0.92) 0%, rgba(26,92,56,0.85) 60%, rgba(38,128,106,0.80) 100%);
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.4); }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 580px; }

/* --- Service Detail Page --- */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.service-detail__content h2 { margin-bottom: 16px; }
.service-detail__content p  { margin-bottom: 16px; }

.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.service-detail__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-detail__feature-check {
  width: 22px; height: 22px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--white);
  font-size: 0.7rem;
}

.service-detail__feature p {
  font-size: 0.92rem;
  margin: 0;
}

.service-detail__aside {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.service-detail__cta-card {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.service-detail__cta-card h3 { margin-bottom: 12px; }
.service-detail__cta-card p  { font-size: 0.92rem; margin-bottom: 20px; }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.pricing-card.featured {
  border-color: var(--green-primary);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pricing-card__name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-darkest);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 4px;
}
.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-medium);
}

.pricing-card__feature svg {
  color: var(--green-primary);
  flex-shrink: 0;
}

/* --- Contact / Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-item__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-info-item__sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Form */
.form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-teal);
  box-shadow: 0 0 0 3px rgba(38,128,106,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__visual {
  background: linear-gradient(135deg, var(--green-primary), var(--green-teal));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  text-align: center;
}

.about__visual-logo {
  width: 100px;
  margin: 0 auto 24px;
}

/* --- Assessor Photo Card --- */
.assessor-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 1px solid var(--border);
}

.assessor-card__photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.assessor-card__info {
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--green-darkest), var(--green-primary));
  color: var(--white);
}

.assessor-card__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.assessor-card__role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.assessor-card__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

.assessor-card__stat svg {
  color: var(--green-bright);
  flex-shrink: 0;
}

.about__visual-logo img {
  filter: brightness(0) invert(1);
}

.about__visual h3 { color: var(--white); margin-bottom: 12px; }
.about__visual p  { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value-card {
  background: var(--green-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--border);
}

.value-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.value-card h4 { margin-bottom: 6px; }
.value-card p  { font-size: 0.87rem; }

/* --- Accreditations --- */
.accreditations {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.accreditation-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-primary);
}

.accreditation-badge svg { color: var(--green-teal); }

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 56px; height: 56px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.process-step h4 { margin-bottom: 8px; }
.process-step p  { font-size: 0.87rem; }

/* --- Feature Image Section --- */
.section--feature-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  overflow: hidden;
}
.section--feature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,61,36,0.82);
  z-index: 0;
}
.section--feature-image .container {
  position: relative;
  z-index: 1;
}
.section--feature-image h2,
.section--feature-image p { color: var(--white); }
.section--feature-image .section-label {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* --- Teal Section --- */
.section--teal {
  background: var(--green-teal);
}
.section--teal h2,
.section--teal h3,
.section--teal p { color: var(--white); }
.section--teal .section-label {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer__inner        { grid-template-columns: 1fr 1fr; }
  .hero__inner          { gap: 40px; }
  .coverage             { flex-direction: column; }
  .coverage__map        { flex: none; width: 100%; height: 200px; }
  .process-steps        { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before{ display: none; }
}

@media (max-width: 768px) {
  .section              { padding: 56px 0; }
  .services-grid        { grid-template-columns: 1fr; }
  .hero__inner          { grid-template-columns: 1fr; }
  .hero__visual         { display: none; }
  .why-grid             { grid-template-columns: 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .pricing-grid         { grid-template-columns: 1fr; }
  .contact-grid         { grid-template-columns: 1fr; }
  .about-grid           { grid-template-columns: 1fr; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .footer__inner        { grid-template-columns: 1fr; gap: 32px; }
  .form-row             { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: 1fr; }
  .hero__stats          { gap: 20px; }
  .process-steps        { grid-template-columns: 1fr; }
  .nav__links,
  .nav__cta .btn        { display: none; }
  .nav__hamburger       { display: flex; }
  .footer__bottom       { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container            { padding: 0 16px; }
  .hero                 { padding: 64px 0 56px; }
  .hero__actions        { flex-direction: column; }
  .hero__actions .btn   { width: 100%; justify-content: center; }
  .cta-banner__actions  { flex-direction: column; align-items: center; }
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-green  { color: var(--green-primary); }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px;  }
.mb-16 { margin-bottom: 16px; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

/* Success message */
.form-success {
  background: var(--green-light);
  border: 1px solid var(--green-teal);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--green-darkest);
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; }
