/* ============================================
   Eco Simply — Shared Stylesheet
   ============================================ */

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

:root {
  --green-900: #1a5c2e;
  --green-700: #2d7a3f;
  --green-600: #3a9e50;
  --green-500: #4cb963;
  --green-400: #6fcf7c;
  --green-100: #d6f0db;
  --green-50:  #eef8f0;
  --grey-900:  #111827;
  --grey-800:  #1f2937;
  --grey-700:  #374151;
  --grey-600:  #4b5563;
  --grey-500:  #6b7280;
  --grey-400:  #9ca3af;
  --grey-200:  #e5e7eb;
  --grey-100:  #f3f4f6;
  --grey-50:   #f9fafb;
  --white:     #ffffff;
  --yellow-500:#eab308;
  --yellow-400:#facc15;
  --yellow-100:#fef9c3;
  --blue-600:  #2563eb;
  --blue-500:  #3b82f6;
  --blue-100:  #dbeafe;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --radius:    12px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--grey-700);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { color: var(--grey-900); line-height: 1.2; font-family: 'Inter', system-ui, -apple-system, sans-serif; }
h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 14px; }
h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; transition: all var(--transition);
  font-family: inherit; line-height: 1.2; white-space: nowrap;
}
.btn-primary { background: var(--green-600); color: var(--white); border-color: var(--green-600); }
.btn-primary:hover { background: var(--green-700); border-color: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--green-700); border-color: var(--green-600); }
.btn-secondary:hover { background: var(--green-50); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200); transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px; max-width: 1200px; margin: 0 auto;
}
.header-logo img { height: 200px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 8px; }
.header-nav a {
  font-weight: 500; color: var(--grey-700); font-size: 0.92rem;
  padding: 8px 14px; border-radius: 6px; transition: all var(--transition);
}
.header-nav a:hover { color: var(--green-600); background: var(--green-50); }
.header-nav a.active { color: var(--green-600); font-weight: 600; }
.header-nav .btn { margin-left: 8px; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle::after {
  content: ''; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; transition: transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 14px; border-radius: 6px; font-size: 0.9rem; }
.nav-dropdown-menu a:hover { background: var(--green-50); color: var(--green-600); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--grey-700); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Mobile Nav --- */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 80px 24px 24px;
  flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 16px; font-size: 1.05rem;
  font-weight: 500; color: var(--grey-700); border-radius: 8px;
}
.mobile-nav a:hover { background: var(--green-50); color: var(--green-600); }
.mobile-nav .mobile-nav-section { font-size: 0.8rem; font-weight: 600; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.5px; padding: 16px 16px 4px; }
.mobile-nav .btn { margin-top: 12px; }

/* --- Section Utilities --- */
section { padding: 80px 0; }
.section-label {
  display: inline-block; background: var(--green-100); color: var(--green-700);
  padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--grey-500); max-width: 640px; margin-bottom: 48px; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }
.bg-grey { background: var(--grey-50); }
.bg-white { background: var(--white); }
.bg-green-dark {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
}
.bg-green-dark .section-label { background: rgba(255,255,255,0.15); color: var(--white); }
.bg-green-dark .section-title { color: var(--white); }
.bg-green-dark .section-subtitle { color: rgba(255,255,255,0.8); }
.bg-green-dark h3 { color: var(--white); }
.bg-green-dark p { color: rgba(255,255,255,0.85); }

/* --- Hero --- */
.hero {
  padding: 80px 0 100px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--green-50) 0%, var(--white) 40%, var(--blue-100) 100%);
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -15%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,185,99,0.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero h1 { font-size: 2.75rem; font-weight: 800; line-height: 1.12; margin-bottom: 20px; }
.hero .lead { font-size: 1.15rem; color: var(--grey-500); line-height: 1.7; margin-bottom: 36px; max-width: 560px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--grey-500); }
.hero-trust-item svg { width: 18px; height: 18px; fill: var(--green-600); flex-shrink: 0; }

/* Service page hero variant */
.hero-service { padding: 60px 0 70px; background: linear-gradient(160deg, var(--green-50) 0%, var(--white) 100%); }
.hero-service h1 { font-size: 2.4rem; margin-bottom: 16px; }
.hero-service .lead { margin-bottom: 28px; }
.hero-service .hero-breadcrumb { margin-bottom: 20px; font-size: 0.88rem; color: var(--grey-400); }
.hero-service .hero-breadcrumb a { color: var(--green-600); }
.hero-service .hero-breadcrumb span { margin: 0 8px; }

/* --- Cards --- */
.card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--grey-200); transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-400); }
.card-icon {
  width: 60px; height: 60px; background: var(--green-50); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; stroke: var(--green-600); fill: none; stroke-width: 1.5; }
.card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: var(--grey-500); line-height: 1.65; margin-bottom: 16px; }

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

/* --- Service Cards (Home) --- */
.service-card { text-align: center; padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-card .card-icon { margin: 0 auto 20px; }
.service-card .service-card-img {
  width: 100%; height: 180px; overflow: hidden;
}
.service-card .service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card .service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card .service-card-body p { flex: 1; }
.service-card .btn { margin-top: auto; }

/* --- Grant Cards --- */
.grant-card { background: var(--grey-50); }
.grant-card h3 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.grant-badge {
  display: inline-block; padding: 3px 10px; border-radius: 12px;
  font-size: 0.72rem; font-weight: 600;
}
.grant-badge-green { background: var(--green-100); color: var(--green-700); }
.grant-badge-blue  { background: var(--blue-100); color: var(--blue-600); }
.grant-badge-yellow { background: var(--yellow-100); color: #a16207; }
.disclaimer-box {
  background: var(--yellow-100); border: 1px solid #fde68a; border-radius: 8px;
  padding: 16px 20px; font-size: 0.9rem; color: #92400e;
  display: flex; align-items: flex-start; gap: 12px;
}
.disclaimer-box svg { flex-shrink: 0; width: 20px; height: 20px; stroke: #d97706; fill: none; }

/* --- Why Us Cards --- */
.why-card { display: flex; gap: 16px; }
.why-icon {
  flex-shrink: 0; width: 44px; height: 44px; background: var(--green-100);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--green-600); fill: none; stroke-width: 1.5; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-card p { font-size: 0.9rem; color: var(--grey-500); }

/* --- Area Tags --- */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tag {
  padding: 10px 20px; border-radius: 8px; font-weight: 500; font-size: 0.95rem;
  transition: background var(--transition);
}
.bg-green-dark .area-tag { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.15); color: var(--white); }
.bg-green-dark .area-tag:hover { background: rgba(255,255,255,0.2); }
.bg-white .area-tag, .bg-grey .area-tag { background: var(--green-50); border: 1px solid var(--green-100); color: var(--green-700); }

/* --- Process Steps --- */
.process-steps { display: flex; gap: 20px; position: relative; }
.process-steps .process-line {
  position: absolute; top: 24px; left: 12%; right: 12%;
  height: 2px; background: var(--green-100); z-index: 0;
}
.process-step { flex: 1; text-align: center; position: relative; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%; background: var(--green-600);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; margin: 0 auto 16px; position: relative; z-index: 1;
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 0.85rem; color: var(--grey-500); }

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.bg-grey .faq-item { background: var(--white); }
.bg-white .faq-item { background: var(--grey-50); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--grey-900); text-align: left;
  font-family: inherit; transition: color var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--green-600); }
.faq-chevron {
  width: 20px; height: 20px; stroke: var(--grey-400); fill: none;
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.95rem; color: var(--grey-500); line-height: 1.7; }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--grey-500); margin-bottom: 20px; line-height: 1.7; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; color: var(--grey-700); }
.contact-detail svg { width: 20px; height: 20px; stroke: var(--green-600); fill: none; flex-shrink: 0; }
.contact-form-box { background: var(--grey-50); padding: 36px; border-radius: var(--radius); border: 1px solid var(--grey-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--grey-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--grey-200); border-radius: 8px;
  font-size: 0.95rem; font-family: inherit; color: var(--grey-900); background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(74,185,99,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* --- Content Sections (Service Pages) --- */
.content-section h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; margin-top: 36px; }
.content-section h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 8px; margin-top: 24px; }
.content-section p { margin-bottom: 16px; line-height: 1.75; }
.content-section ul { margin-bottom: 16px; padding-left: 0; }
.content-section ul li {
  padding: 6px 0 6px 28px; position: relative; line-height: 1.65;
}
.content-section ul li::before {
  content: ''; position: absolute; left: 4px; top: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-500);
}
.content-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.sidebar-card p { font-size: 0.9rem; color: var(--grey-500); margin-bottom: 16px; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border-radius: var(--radius-lg); padding: 48px; text-align: center; color: var(--white);
}
.cta-banner h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.site-footer { background: #EDF5EE; color: #3a5240; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 180px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; color: #4a6350; }
.site-footer h4 { color: #1a3d22; font-size: 0.92rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.3px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a { font-size: 0.88rem; color: #3a5240; transition: color var(--transition); }
.site-footer ul li a:hover { color: var(--green-600); }
.footer-bottom {
  border-top: 1px solid #c8deca; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: #5a7a60; flex-wrap: wrap; gap: 12px;
}

/* --- About page --- */
.about-values { counter-reset: val; }
.about-value { counter-increment: val; position: relative; padding-left: 60px; margin-bottom: 32px; }
.about-value::before {
  content: counter(val); position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; background: var(--green-100); color: var(--green-700);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.about-value h3 { margin-bottom: 6px; font-size: 1.05rem; }
.about-value p { font-size: 0.95rem; color: var(--grey-500); }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-placeholder {
  aspect-ratio: 4/3; background: var(--grey-100); border: 2px dashed var(--grey-200);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; padding: 24px; text-align: center;
  transition: all var(--transition);
}
.gallery-placeholder:hover { border-color: var(--green-400); background: var(--green-50); }
.gallery-placeholder svg { width: 40px; height: 40px; stroke: var(--grey-400); fill: none; stroke-width: 1.2; }
.gallery-placeholder p { font-size: 0.88rem; color: var(--grey-400); font-weight: 500; }
.gallery-coming-soon {
  text-align: center; padding: 48px 24px; background: var(--green-50);
  border-radius: var(--radius-lg); border: 1px solid var(--green-100); margin-bottom: 48px;
}
.gallery-coming-soon h3 { font-size: 1.3rem; margin-bottom: 12px; }
.gallery-coming-soon p { color: var(--grey-500); max-width: 600px; margin: 0 auto; }

/* --- Service Hero Image --- */
.service-hero-img {
  width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius);
  margin-bottom: 32px;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--grey-900); color: rgba(255,255,255,0.9);
  padding: 20px 24px; box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-text { font-size: 0.9rem; line-height: 1.6; flex: 1; min-width: 280px; }
.cookie-text a { color: var(--green-400); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 24px; border-radius: 6px; font-size: 0.88rem;
  font-weight: 600; cursor: pointer; border: none; font-family: inherit;
  transition: all var(--transition);
}
.cookie-accept { background: var(--green-600); color: var(--white); }
.cookie-accept:hover { background: var(--green-700); }
.cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
.cookie-reject:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* --- Legal Pages --- */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.5rem; font-weight: 700; margin-top: 36px; margin-bottom: 14px; }
.legal-content h3 { font-size: 1.25rem; font-weight: 600; margin-top: 24px; margin-bottom: 10px; }
.legal-content p { margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { margin-bottom: 16px; padding-left: 0; }
.legal-content ul li { padding: 4px 0 4px 24px; position: relative; line-height: 1.65; }
.legal-content ul li::before {
  content: ''; position: absolute; left: 4px; top: 12px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-500);
}
.legal-content a { color: var(--green-600); text-decoration: underline; }
.legal-disclaimer {
  background: var(--yellow-100); border: 1px solid #fde68a; border-radius: 8px;
  padding: 16px 20px; font-size: 0.88rem; color: #92400e; margin-bottom: 32px;
  line-height: 1.6;
}

/* --- Trust Section --- */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--grey-200);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--grey-500);
  white-space: nowrap;
}
.trust-badge svg { width: 20px; height: 20px; flex-shrink: 0; }

/* --- Testimonial Cards --- */
.testimonial-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); padding: 28px;
}
.testimonial-card .stars { color: var(--yellow-400); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--grey-600); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-card cite { font-size: 0.85rem; font-weight: 600; color: var(--grey-900); font-style: normal; }

/* --- Benefits Bar --- */
.benefits-strip {
  background: var(--green-600); color: var(--white); padding: 24px 0;
}
.benefits-inner {
  display: flex; align-items: center; justify-content: space-around;
  gap: 16px; flex-wrap: wrap; text-align: center;
}
.benefit-item { font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.benefit-item svg { width: 20px; height: 20px; fill: var(--white); flex-shrink: 0; }

/* --- Accreditations --- */
.accreditations {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.accreditation-placeholder {
  width: 120px; height: 60px; background: var(--grey-100); border: 1px dashed var(--grey-200);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: var(--grey-400); font-weight: 500; text-align: center; padding: 8px;
}

/* --- Location Page --- */
.location-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.location-service-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); padding: 24px; display: flex; gap: 16px;
  transition: all 0.3s;
}
.location-service-card:hover { border-color: var(--green-400); box-shadow: var(--shadow-md); }
.location-service-card .card-icon { margin-bottom: 0; width: 48px; height: 48px; flex-shrink: 0; }
.location-service-card h3 { font-size: 1rem; margin-bottom: 6px; }
.location-service-card p { font-size: 0.88rem; color: var(--grey-500); margin-bottom: 10px; }

/* --- Footer Extras --- */
.footer-contact-details { margin-top: 16px; }
.footer-contact-details p { font-size: 0.85rem; margin-bottom: 6px; color: #3a5240; }
.footer-hours { margin-top: 16px; }
.footer-hours p { font-size: 0.85rem; margin-bottom: 4px; color: #4a6350; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(0,80,30,0.08); display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: rgba(0,80,30,0.15); }
.footer-social svg { width: 18px; height: 18px; fill: #3a5240; }

/* --- Blog Cards --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); overflow: hidden; transition: all 0.3s;
  position: relative; cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-400); }
.blog-card > a.blog-card-link {
  position: absolute; inset: 0; z-index: 1;
}
.blog-card-img {
  width: 100%; height: 200px; overflow: hidden; background: var(--grey-100);
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-body .blog-tag {
  display: inline-block; background: var(--green-100); color: var(--green-700);
  padding: 3px 10px; border-radius: 12px; font-size: 0.72rem; font-weight: 600;
  margin-bottom: 10px; text-transform: uppercase;
}
.blog-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.blog-card-body h3 a { color: var(--grey-900); position: relative; z-index: 2; }
.blog-card-body h3 a:hover { color: var(--green-600); }
.blog-card-body p { font-size: 0.9rem; color: var(--grey-500); line-height: 1.6; margin-bottom: 16px; }
.blog-card-body .read-more {
  font-size: 0.88rem; font-weight: 600; color: var(--green-600);
  position: relative; z-index: 2;
}
.blog-card-body .read-more:hover { color: var(--green-700); }

/* --- Eligibility Form --- */
.eligibility-form { background: var(--green-50); border: 2px solid var(--green-100); border-radius: var(--radius-lg); padding: 40px; }
.eligibility-form h2 { text-align: center; margin-bottom: 8px; }
.eligibility-form .form-lead { text-align: center; color: var(--grey-500); margin-bottom: 28px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-checkbox input[type="checkbox"] { width: auto; margin-top: 3px; }
.form-checkbox label { font-weight: 400; margin-bottom: 0; cursor: pointer; font-size: 0.92rem; }

/* --- Why Choose Cards --- */
.why-choose-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: all 0.3s;
}
.why-choose-card:hover { border-color: var(--green-400); box-shadow: var(--shadow-md); }
.why-choose-card .card-icon { margin: 0 auto 16px; }
.why-choose-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-choose-card p { font-size: 0.9rem; color: var(--grey-500); }

/* --- WhatsApp --- */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 24px; z-index: 9998;
}
.whatsapp-float a {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white); padding: 14px 22px;
  border-radius: 50px; font-weight: 600; font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  transition: all 0.25s;
}
.whatsapp-float a:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }
.btn-whatsapp {
  background: #25D366; color: var(--white); border-color: #25D366;
}
.btn-whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,211,102,0.35); }
.btn-whatsapp svg { width: 18px; height: 18px; fill: var(--white); }
.whatsapp-note {
  font-size: 0.82rem; color: var(--grey-400); margin-top: 8px; text-align: center;
}
.whatsapp-hours {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--grey-500); margin-top: 12px;
}
.whatsapp-hours svg { width: 16px; height: 16px; stroke: var(--green-600); fill: none; flex-shrink: 0; }

@media (max-width: 768px) {
  .whatsapp-float a span { display: none; }
  .whatsapp-float a { padding: 14px; border-radius: 50%; }
  .whatsapp-float { bottom: 72px; right: 16px; }
}

/* --- Footer Legal Links --- */
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 16px; }
.footer-legal a { font-size: 0.8rem; color: #7a9a80; transition: color var(--transition); }
.footer-legal a:hover { color: var(--green-700); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: 2rem; }
  .hero-service h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.7rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }
  .grid-4, .grid-3, .grid-2, .gallery-grid, .location-services, .blog-grid { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; }
  .benefits-inner { gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { flex-direction: column; gap: 20px; }
  .process-steps .process-line { display: none; }
  .process-step { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step-number { margin: 0; flex-shrink: 0; }
  .cta-banner { padding: 32px 24px; }
  .cta-banner h2 { font-size: 1.5rem; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-logo img { height: 130px; }
  .footer-brand img { height: 140px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .container { padding: 0 16px; }
}
