:root {
  /* Premium Dark Forest Tones */
  --green-900: #0a2514;
  --green-800: #123d24;
  --green-700: #16522c;
  --green-600: #1b6636;
  --green-500: #278547;
  --green-300: #a7c957;
  
  /* High-Contrast Backgrounds & Neutrals */
  --bg-cream: #fffbf5;         /* Soft warm base */
  --bg-card-light: #ffffff;    /* Pure white for crisp cards */
  --bg-green-soft: #f2f9f3;    /* Very faint mint tint for sections */
  
  /* Typography Colors (Ensuring high readability) */
  --text-dark: #0f1a14;        /* Near black for headers/body */
  --text-muted: #4e5c52;       /* Slate grey-green for subtexts */
  --text-light: #ffffff;       /* Pure white for dark sections */
  
  --shadow: 0 20px 48px rgba(10, 37, 20, 0.06);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  transition: all 0.2s ease;
}

/* Header & Navigation Updates */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 5%;
  background: rgba(255, 251, 245, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(18, 61, 36, 0.06);
}

.brand img {
  width: 150px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}

.nav a {
  text-decoration: none;
  color: var(--text-dark);
}

.nav a:hover {
  color: var(--green-600);
}

/* Button & CTA Improvements */
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta, .btn.primary {
  background: var(--green-700);
  color: var(--text-light);
  box-shadow: 0 10px 20px rgba(22, 82, 44, 0.15);
}

.nav-cta:hover, .btn.primary:hover {
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(22, 82, 44, 0.25);
}

/* Specific Navigation WhatsApp Contrast Fix Override */
.nav .nav-cta, 
.site-header .nav-cta {
  background-color: var(--green-700) !important;
  color: #ffffff !important;
}

.nav .nav-cta:hover, 
.site-header .nav-cta:hover {
  background-color: var(--green-800) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid rgba(18, 61, 36, 0.15);
  background: var(--bg-card-light);
  color: var(--green-800);
}

.btn.ghost:hover {
  background: var(--bg-cream);
  border-color: var(--green-700);
  transform: translateY(-2px);
}

/* Layout Sections */
.section-pad {
  padding: 100px 5%;
}

.compact {
  padding-top: 60px;
  padding-bottom: 60px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 800;
  color: var(--green-600);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--green-900);
  margin: 0 0 20px;
}

h1 {
  font-size: clamp(40px, 6vw, 76px);
  max-width: 850px;
  font-weight: 800;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
}

h3 {
  font-size: 26px;
  font-weight: 700;
}

p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 0 28px;
}

/* Hero Section Enhancement */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 85vh;
  background: radial-gradient(circle at top left, #edf7e7, transparent 50%);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 200px;
  gap: 16px;
}

.hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-main {
  grid-column: span 2;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

/* Cards & Structural Branches Layout */
.cards.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card {
  background: var(--bg-card-light);
  border: 1px solid rgba(18, 61, 36, 0.05);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.branch-card img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.branch-card a {
  font-weight: 700;
  color: var(--green-700);
  text-decoration: none;
}

.branch-card a:hover {
  color: var(--green-500);
}

/* Split Column Structure */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1fr 1fr;
}

.split > img, .dist-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* Stats Section Layout */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.stats span {
  background: var(--bg-card-light);
  border-radius: 16px;
  padding: 20px;
  color: var(--text-muted);
  box-shadow: 0 10px 24px rgba(18, 61, 36, 0.04);
  border: 1px solid rgba(18, 61, 36, 0.03);
}

.stats b {
  display: block;
  color: var(--green-700);
  font-size: 26px;
  margin-bottom: 4px;
}

/* Clear background fixes */
.green-soft {
  background: var(--bg-green-soft);
}

/* Modernized Lists with crisp readability */
.check-list, .brand-list {
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li, .brand-list li {
  background: var(--bg-card-light);
  border-left: 4px solid var(--green-500);
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.dist-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dist-images img {
  height: 480px;
}

.logo-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.logo-strip img {
  height: 120px;
  width: 100%;
  object-fit: contain;
  background: var(--bg-card-light);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(18, 61, 36, 0.05);
}

/* Gallery Adjustment */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-grid img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.02);
}

/* Contact Footer Section Fixes */
.contact {
  background: var(--green-900);
  color: var(--text-light);
}

.contact-card {
  max-width: 860px;
  margin: auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 60px 40px;
}

.contact h2 { color: var(--text-light); }
.contact p { color: rgba(255, 255, 255, 0.8); }
.contact-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact .btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.contact .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.small {
  font-size: 14px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6) !important;
}

.small a {
  color: var(--text-light);
}

footer {
  padding: 40px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card-light);
  border-top: 1px solid rgba(18, 61, 36, 0.05);
}

footer img {
  width: 130px;
}

footer p {
  font-size: 14px;
  margin: 0;
  color: var(--text-muted);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  color: var(--green-900);
}

/* Responsive Structural Improvements */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  
  .nav {
    position: absolute;
    top: 74px;
    left: 5%;
    right: 5%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-card-light);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .nav.open { display: flex; }
  
  .hero, .split, .cards.two, .split.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero { padding-top: 40px; }
  .hero-grid { grid-template-rows: 240px 180px; }
  .section-pad { padding: 60px 5%; }
  
  .dist-images, .photo-grid, .logo-strip {
    grid-template-columns: 1fr 1fr;
  }
  
  .split > img, .dist-images img { height: 360px; }
  .contact-links { flex-direction: column; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 560px) {
  .brand img { width: 120px; }
  .hero-grid, .dist-images, .photo-grid, .logo-strip, .stats { grid-template-columns: 1fr; }
  .hero-main { grid-column: span 1; }
  .hero-grid { grid-template-rows: auto; }
  .hero-grid img, .photo-grid img { height: 260px; }
  .contact-card { padding: 40px 20px; }
}
