/* ===== GLOBAL RESET & VARIABLES ===== */
:root {
  --green-dark: #1b6b1b;
  --green-mid: #2e8b2e;
  --green-light: #4caf50;
  --green-accent: #7dc87d;
  --green-pale: #e8f5e9;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #777;
  --white: #ffffff;
  --off-white: #f9fdf9;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 10px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Open Sans', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { font-size: 1.05rem; color: var(--text-mid); }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--green-dark); transform: translateY(-2px); }
.btn-green-outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-green-outline:hover { background: var(--green-mid); color: var(--white); }

/* ===== NAVIGATION ===== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 54px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-mid);
  background: var(--green-pale);
}
.nav-links a.btn-nav-account {
  background: var(--green-mid);
  color: var(--white);
  border-radius: 8px;
  padding: 9px 20px;
  margin-left: 8px;
}
.nav-links a.btn-nav-account:hover { background: var(--green-dark); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  margin-top: 76px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,70,20,0.78) 0%, rgba(10,40,10,0.45) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 8% 0 8%;
  max-width: 780px;
}
.slide-content .section-label { background: rgba(255,255,255,0.18); color: #b6f0b6; }
.slide-content h1 { color: var(--white); margin-bottom: 18px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.slide-content p { color: rgba(255,255,255,0.88); font-size: 1.15rem; margin-bottom: 32px; max-width: 540px; }
.slide-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--white); width: 28px; border-radius: 5px; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--green-mid); border-color: var(--green-mid); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--green-dark);
  padding: 40px 24px;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 { font-size: 2.4rem; color: var(--white); }
.stat-item p { color: var(--green-accent); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== SECTIONS ===== */
section { padding: 90px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 600px; margin: 0 auto; }
.divider { width: 60px; height: 4px; background: var(--green-mid); border-radius: 2px; margin: 16px auto 0; }

/* ===== INTRO / WHY US ===== */
.intro-section { background: var(--off-white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-image { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.intro-image img { width: 100%; height: 420px; object-fit: cover; }
.intro-text .section-label { margin-bottom: 10px; }
.intro-text h2 { margin-bottom: 20px; }
.intro-text p { margin-bottom: 16px; }
.check-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.97rem; color: var(--text-mid);
}
.check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 2px;
}

/* ===== SERVICES GRID ===== */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid #eee;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.14); }
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 24px; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.service-card-body h3 { margin-bottom: 10px; color: var(--green-dark); }
.service-card-body p { font-size: 0.95rem; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.service-card-link:hover { gap: 12px; }

/* ===== SECTORS ===== */
.sectors-section { background: var(--green-dark); padding: 80px 24px; }
.sectors-section .section-header h2 { color: var(--white); }
.sectors-section .section-header p { color: var(--green-accent); }
.sectors-section .divider { background: var(--green-accent); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sector-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.sector-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.sector-icon { font-size: 2.8rem; margin-bottom: 16px; }
.sector-card h3 { color: var(--white); margin-bottom: 10px; }
.sector-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials-section { background: var(--off-white); }
.testimonial-slider-wrap { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 16px;
}
.testimonial-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 5px solid var(--green-mid);
}
.testimonial-card .quote-icon { font-size: 3rem; color: var(--green-light); line-height: 1; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 1.15rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.8;
}
.testimonial-author { font-weight: 700; color: var(--green-dark); }
.testimonial-role { font-size: 0.88rem; color: var(--text-light); }
.test-controls {
  display: flex; justify-content: center; gap: 10px; margin-top: 32px;
}
.test-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-accent);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.test-dot.active { background: var(--green-dark); width: 28px; border-radius: 5px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  padding: 80px 24px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== PARTNERS STRIP ===== */
.partners-section { padding: 60px 24px; background: var(--white); }
.partners-label { text-align: center; font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 28px; font-weight: 600; }
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 36px;
}
.partner-badge {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid var(--green-accent);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: 76px;
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-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='none' fill-rule='evenodd'%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/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-top: 12px; position: relative; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  position: relative;
}
.breadcrumb a { color: var(--green-accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== ABOUT PAGE ===== */
.about-mission {
  background: var(--off-white);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid var(--green-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.value-card h4 { color: var(--green-dark); margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; }

.team-section { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: var(--off-white);
  border: 1px solid #eee;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--green-pale);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  border: 4px solid var(--green-accent);
}
.team-card h3 { color: var(--green-dark); margin-bottom: 4px; }
.team-card .role { color: var(--green-mid); font-size: 0.88rem; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card p { font-size: 0.91rem; }

.compliance-section { background: var(--green-pale); }
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.compliance-item {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  display: flex; align-items: flex-start; gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.compliance-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.compliance-item h4 { color: var(--green-dark); margin-bottom: 6px; }
.compliance-item p { font-size: 0.92rem; }

/* ===== SERVICES PAGE ===== */
.full-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.full-service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
  display: flex;
  gap: 0;
  flex-direction: column;
}
.full-service-card .img-wrap { height: 240px; overflow: hidden; }
.full-service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.full-service-card:hover .img-wrap img { transform: scale(1.05); }
.full-service-body { padding: 28px; }
.full-service-body h3 { color: var(--green-dark); margin-bottom: 12px; font-size: 1.2rem; }
.full-service-body p { font-size: 0.95rem; margin-bottom: 16px; }
.full-service-body ul { padding-left: 0; }
.full-service-body ul li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.92rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.full-service-body ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 900;
}
.full-service-body ul li:last-child { border-bottom: none; }

.process-section { background: var(--green-pale); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--green-accent);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(46,139,46,0.4);
}
.process-step h4 { color: var(--green-dark); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

.zones-section { background: var(--white); }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.zone-card {
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zone-a { background: linear-gradient(135deg, #1b6b1b 0%, #2e8b2e 100%); }
.zone-b { background: linear-gradient(135deg, #2e8b2e 0%, #4caf50 100%); }
.zone-c { background: linear-gradient(135deg, #4caf50 0%, #7dc87d 100%); }
.zone-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.zone-card .zone-label { color: rgba(255,255,255,0.75); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.zone-card p { color: rgba(255,255,255,0.88); font-size: 0.95rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 { color: var(--green-dark); margin-bottom: 24px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.ci-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.ci-label { font-size: 0.8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.ci-value { font-size: 1rem; font-weight: 600; color: var(--text-dark); }

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { color: var(--green-dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text-mid); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  font-family: inherit;
  background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--green-dark);
}
.form-success .check { font-size: 3rem; }

.emergency-banner {
  background: var(--green-dark);
  padding: 50px 24px;
  text-align: center;
}
.emergency-banner h2 { color: var(--white); margin-bottom: 12px; }
.emergency-banner p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.response-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ===== FOOTER ===== */
footer {
  background: #0f2e0f;
  color: rgba(255,255,255,0.75);
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .footer-logo-row { display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; margin-bottom: 20px; }
.footer-brand .footer-logo-row img:first-child { height: 44px; flex-shrink: 0; filter: brightness(0) invert(1); }
.footer-brand .footer-logo-row img:last-child { height: 46px; flex-shrink: 0; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--green-mid); }

.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green-accent); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item span:first-child { font-size: 1rem; }
.footer-contact-item span:last-child { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-contact-item a { color: var(--green-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--green-accent); }

/* ===== NEWS FILTER BAR ===== */
.news-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.news-search-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 16px;
  gap: 10px;
  transition: border-color 0.2s;
  max-width: 480px;
}
.news-search-wrap:focus-within { border-color: var(--green-mid); }
.news-search-icon { font-size: 1.1rem; color: var(--text-light); flex-shrink: 0; }
.news-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: transparent;
}
.news-search-input::placeholder { color: var(--text-light); }
.news-search-clear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-light);
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.news-search-clear:hover { color: var(--text-dark); }
.news-filter-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-filter-btn {
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 24px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.news-filter-btn:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}
.news-filter-btn.active {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}
.news-results-count {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.news-empty {
  text-align: center;
  padding: 60px 20px;
}

/* ===== NEWS PAGE ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.news-card-img { height: 220px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.news-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-mid); background: var(--green-pale);
  padding: 3px 10px; border-radius: 20px;
}
.news-date { font-size: 0.82rem; color: var(--text-light); }
.news-card h3 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 10px; line-height: 1.45; }
.news-card p { font-size: 0.92rem; color: var(--text-mid); flex: 1; margin-bottom: 20px; }
.news-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 700; color: var(--green-mid);
  transition: gap 0.2s ease;
}
.news-card-link:hover { gap: 10px; color: var(--green-dark); }

/* ===== ARTICLE PAGE ===== */
.article-hero { height: 440px; position: relative; overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.65)); }
.article-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; color: white; max-width: 860px; }
.article-hero-content h1 { font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.25; margin-top: 12px; }
.article-body { max-width: 820px; margin: 0 auto; padding: 60px 24px 80px; }
.article-body h2 { font-size: 1.45rem; color: var(--green-dark); margin: 40px 0 14px; }
.article-body h3 { font-size: 1.15rem; color: var(--green-dark); margin: 28px 0 10px; }
.article-body p { margin-bottom: 18px; line-height: 1.8; }
.article-body ul { padding-left: 22px; margin-bottom: 20px; }
.article-body ul li { list-style: disc; margin-bottom: 9px; font-size: 1.02rem; color: var(--text-mid); line-height: 1.65; }
.article-body blockquote {
  border-left: 4px solid var(--green-mid);
  background: var(--green-pale);
  padding: 18px 24px;
  border-radius: 0 10px 10px 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--green-dark);
}
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 700; color: var(--green-mid); margin-bottom: 36px;
}
.article-back:hover { color: var(--green-dark); }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.article-related { background: var(--green-pale); border-radius: 14px; padding: 28px; margin-top: 48px; }
.article-related h4 { color: var(--green-dark); margin-bottom: 16px; }
.article-related a { display: block; padding: 8px 0; color: var(--green-mid); font-weight: 600; font-size: 0.94rem; border-bottom: 1px solid rgba(0,0,0,0.07); }
.article-related a:last-child { border-bottom: none; }
.article-related a:hover { color: var(--green-dark); padding-left: 6px; transition: padding-left 0.2s; }

/* ===== RESPONSIVE GRID UTILITIES ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-2-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-3-sm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-dark); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid, .mission-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .full-services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .zones-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  /* Utility grids */
  .grid-2 { gap: 24px; }
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 20px; }
  .grid-3-sm { grid-template-columns: 1fr 1fr; gap: 16px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }
  section { padding: 64px 20px; }
  .page-hero { padding: 60px 20px 50px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 76px; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 0; }
  .footer-brand { grid-column: 1 / -1; padding-bottom: 28px; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-col:last-child { grid-column: 1 / -1; padding-top: 24px; margin-top: 4px; border-top: 1px solid rgba(255,255,255,0.08); }
  .footer-col { padding: 20px 0; }
  .footer-col h4 { margin-bottom: 16px; }
  .footer-brand .footer-logo-row { gap: 14px; }
  .footer-brand .footer-logo-row img:first-child { height: 36px; }
  .footer-brand .footer-logo-row img:last-child { height: 38px; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .slide-content { padding: 0 20px; }
  .slide-content h1 { font-size: 1.8rem; }
  .slide-content p { font-size: 1rem; }
  .slide-buttons { flex-direction: column; gap: 10px; }
  .slide-buttons .btn { text-align: center; }
  .testimonial-card { padding: 28px 20px; }
  .contact-form-card { padding: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-item h3 { font-size: 1.8rem; }
  .stat-item p { font-size: 0.8rem; }
  /* Utility grids */
  .grid-2, .grid-2-sm, .grid-3, .grid-3-sm, .grid-4 { grid-template-columns: 1fr; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .cta-banner .btn { width: 100%; max-width: 320px; text-align: center; }
  section { padding: 52px 16px; }
  .page-hero { padding: 50px 16px 42px; }
  .hero-slider { height: 100svh; min-height: 560px; }
  .stats-strip { padding: 28px 16px; }
  .stats-grid { gap: 12px; }
  .footer-main { padding: 44px 16px 28px; gap: 28px; }
  .container { padding: 0; }
  /* Contact page mobile */
  .contact-section { padding: 40px 0; }
  .contact-grid { gap: 20px; padding: 0 16px; }
  .contact-info { padding: 0; }
  .contact-info-items { gap: 16px; }
  .contact-info-item { gap: 10px; align-items: flex-start; }
  .ci-icon { width: 40px; height: 40px; min-width: 40px; font-size: 1.1rem; }
  .ci-value { font-size: 0.92rem; word-break: break-word; }
  .ci-label { font-size: 0.75rem; }
  /* News page mobile */
  .news-grid { grid-template-columns: 1fr; gap: 20px; }
  .news-card-img { height: 190px; }
  /* Article page mobile */
  .article-hero { height: 260px; }
  .article-hero-content { padding: 20px; }
  .article-body { padding: 32px 16px 56px; }
  .article-body h2 { font-size: 1.2rem; }
}
