/* ============================================
   Easy Fast Foodstuff Co. - Main Stylesheet
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0b5ed7;
  --blue-mid: #1468d8;
  --blue-light: #eaf3ff;
  --green: #22c55e;
  --green-dark: #16a34a;
  --white: #ffffff;
  --off-white: #f6f9ff;
  --text: #0f172a;
  --text-muted: #475569;
  --border: rgba(11,94,215,0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(2, 32, 71, 0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: Calibri, 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #000;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 127px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1a3c1a 0%, #2d5a2d 30%, #6b2e2e 70%, #4a1f1f 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 72px; height: 80px;
  flex-shrink: 0;
  margin-top: 5px;
  filter: drop-shadow(-4px 6px 12px rgba(0,0,0,0.4)) drop-shadow(2px -2px 6px rgba(255,255,255,0.08));
  transition: filter 0.4s ease;
  border-radius: 0;
  position: relative;
  z-index: 10;
  object-fit: contain;
}

.nav-logo:hover .logo-mark {
  filter: drop-shadow(-6px 10px 20px rgba(0,0,0,0.55)) drop-shadow(3px -3px 8px rgba(255,255,255,0.12));
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: Calibri, 'DM Sans', sans-serif; font-weight: 700; font-size: 26px; color: var(--white); }
.logo-sub { font-family: Calibri, 'DM Sans', sans-serif; font-size: 18px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  padding: 8px 20px;
  border-radius: 100px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 10px 24px rgba(11,94,215,0.18);
  position: relative;
  text-align: center;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(11,94,215,0.25);
}

.nav-cta {
  /* Inherits all styles from .nav-links a */
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-nav-item {
  display: flex;
  align-items: center;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, var(--blue), #3b82f6);
  border: none;
  border-radius: 100px;
  padding: 8px 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  box-shadow: 0 10px 24px rgba(11,94,215,0.18);
  white-space: nowrap;
}

.lang-btn:hover {
  background: linear-gradient(180deg, #3b82f6, var(--blue));
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(11,94,215,0.25);
}

.lang-icon { font-size: 16px; line-height: 1; }
.lang-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.lang-arrow { font-size: 10px; opacity: 0.7; transition: transform 0.2s; }

.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #1a3c1a;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 6px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  transition: background 0.15s;
  white-space: nowrap;
  font-weight: 400;
}

.lang-dropdown a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.lang-dropdown a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 960px) {
  .lang-switcher {
    margin-left: auto;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: white;
  color: #000;
  padding: 150px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.hero,
.hero * {
  color: #000 !important;
}

.hero a {
  color: #000 !important;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 28%),
              radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 22%);
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, rgba(30,95,168,0.6) 0%, rgba(26,58,107,0) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content, .hero-visual, .hero-tag, .hero-stats, .hero-btns {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content { animation-delay: 0.12s; }
.hero-tag { animation-delay: 0.20s; }
.hero-btns { animation-delay: 0.28s; }
.hero-stats { animation-delay: 0.36s; }
.hero-visual { animation-delay: 0.18s; }

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(122,184,64,0.25);
}

.hero-c1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.hero-c2 { width: 400px; height: 400px; top: -100px; right: -100px; }
.hero-c3 { width: 200px; height: 200px; bottom: 10%; right: 30%; border-color: rgba(255,255,255,0.08); }

.hero-content { position: relative; z-index: 2; max-width: 640px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122,184,64,0.15);
  border: 1px solid rgba(122,184,64,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 32px;
}

.hero-tag-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.hero-tag span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-family: Calibri, 'DM Sans', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,184,64,0.35); }

.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  display: flex;
  gap: 48px;
}

.stat { border-left: 2px solid var(--green); padding-left: 16px; }
.stat-num { font-family: Calibri, 'DM Sans', sans-serif; font-size: 32px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ===== SECTION SHARED ===== */
section { padding: 100px 5%; }

.section-grid-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.38s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-up.delay-1 { animation-delay: 0.12s; }
.animate-fade-up.delay-2 { animation-delay: 0.24s; }
.animate-fade-up.delay-3 { animation-delay: 0.36s; }

.card-grid{
  display: grid;
  gap: 18px;
  justify-items: stretch;
  align-items: stretch;
}

.modern-blue-wrap{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

.modern-animate{
  transform: translateY(12px);
  opacity: 0;
  transition: transform 480ms ease, opacity 480ms ease;
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.modern-animate.is-visible{
  transform: translateY(0);
  opacity: 1;
}

.clients .client-logo:nth-child(1) { --delay: 0.08s; }
.clients .client-logo:nth-child(2) { --delay: 0.14s; }
.clients .client-logo:nth-child(3) { --delay: 0.20s; }
.clients .client-logo:nth-child(4) { --delay: 0.26s; }
.clients .client-logo:nth-child(5) { --delay: 0.32s; }
.clients .client-logo:nth-child(6) { --delay: 0.38s; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(122,184,64,0.1);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-title {
  font-family: Calibri, 'DM Sans', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-visual {
  position: relative;
  padding: 32px;
}

.about-card-main {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(122,184,64,0.15);
  border-radius: 50%;
}

.about-quote {
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
  position: relative;
}

.about-quote::before {
  content: '"';
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  color: var(--green);
  position: absolute;
  top: -20px; left: -16px;
  opacity: 0.4;
  line-height: 1;
}

.about-cr {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.about-floater {
  position: absolute;
  bottom: -16px; right: 0;
  background: var(--green);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(122,184,64,0.3);
}

.about-floater-icon { font-size: 28px; }
.about-floater-text { font-size: 13px; color: var(--white); font-weight: 500; }

.mvv-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }

.mvv-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.mvv-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mvv-label { font-family: Calibri, 'DM Sans', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a2e; margin-bottom: 4px; }
.mvv-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ===== VALUES ===== */
.values { background: var(--off-white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(11,94,215,0.18);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(2, 32, 71, 0.10);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  opacity: 1;
}

.value-card:hover { transform: translateY(-12px) scale(1.03); box-shadow: 0 24px 64px rgba(2, 32, 71, 0.22); }

.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.value-name { font-family: Calibri, 'DM Sans', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a2e; margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ===== SERVICES ===== */
.services { background: var(--white); }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s;
}

.service-card:hover { transform: translateY(-4px); }

.service-card-body {
  padding: 36px 28px;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 150px; height: 150px;
  background: rgba(122,184,64,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.service-num {
  font-family: Calibri, 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}

.service-icon { font-size: 36px; margin-bottom: 20px; display: block; }

.service-name {
  font-family: Calibri, 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.service-tag {
  display: inline-block;
  margin-top: 20px;
  background: rgba(122,184,64,0.25);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* ===== NATURE OF BUSINESS ===== */
.business { background: var(--off-white); }

.business-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.biz-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.25s;
  overflow: hidden;
}

.biz-card:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 24px 64px rgba(26,58,107,0.25);
}

.biz-card:hover .biz-name,
.biz-card:hover .biz-desc { color: rgba(255,255,255,0.9); }
.biz-card:hover .biz-icon-wrap { background: rgba(255,255,255,0.1); }

.biz-icon-wrap {
  width: 72px; height: 72px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  transition: background 0.25s;
}

.biz-name { font-family: Calibri, 'DM Sans', sans-serif; font-weight: 700; font-size: 18px; color: #1a1a2e; margin-bottom: 12px; transition: color 0.25s; }
.biz-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; transition: color 0.25s; }

/* ===== CERTIFICATIONS ===== */
.certs { background: var(--white); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.cert-card {
  background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid rgba(11,94,215,0.25);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(2, 32, 71, 0.12), 0 0 0 1px rgba(11,94,215,0.08) inset;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.cert-card:hover {
  box-shadow: 0 20px 56px rgba(2, 32, 71, 0.20), 0 0 0 2px rgba(11,94,215,0.15) inset;
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(145deg, #ffffff 0%, #e8f4ff 100%);
}

.cert-badge {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(2, 32, 71, 0.10);
}

.cert-code { font-family: Calibri, 'DM Sans', sans-serif; font-weight: 800; font-size: 16px; color: #1a1a2e; margin-bottom: 8px; }
.cert-name { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 400; }
.cert-valid { font-size: 12px; color: var(--green-dark); font-weight: 700; margin-top: 14px; background: linear-gradient(135deg, rgba(122,184,64,0.15), rgba(122,184,64,0.08)); padding: 5px 14px; border-radius: 100px; display: inline-block; border: 1px solid rgba(122,184,64,0.2); }

/* ===== CLIENTS / LOGOS ===== */
.clients { 
  background: rgb(255, 255, 255);
  color: #000;
  padding: 80px 5%;
}

.clients-inner { text-align: center; }
.clients .section-tag { color: var(--green); background: rgba(122,184,64,0.15); }
.clients .section-title { color: var(--green); }

.clients-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  justify-items: stretch;
  align-items: stretch;
  margin-top: 42px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.client-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(2, 32, 71, 0.08);
}

.client-logo:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255,255,255,0.2);
  border-color: var(--green);
  box-shadow: 0 16px 40px rgba(2, 32, 71, 0.18);
}

.client-logo.modern-animate{
  transform: translateY(12px);
  opacity: 0;
}

.client-logo.modern-animate.is-visible{
  transform: translateY(0);
  opacity: 1;
}

.client-logo-img{ display:block; max-width:200px; max-height:72px; width:100%; height:100%; margin:0 auto; object-fit:contain; }

/* ===== HEALTH & SAFETY ===== */
.safety { background: var(--off-white); }

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.safety-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}

.safety-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.safety-card h3 { font-family: Calibri, 'DM Sans', sans-serif; font-weight: 700; font-size: 20px; color: #1a1a2e; margin-bottom: 12px; }
.safety-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
}

.contact-item-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-item-value { font-size: 15px; color: var(--text); font-weight: 500; }

.contact-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(30,95,168,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.form-submit:hover { background: var(--blue-mid); transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer {
  background: rgb(255, 255, 255);
  color: #000;
  padding: 80px 0px 40px;
  border-top: 1px solid rgb(226, 232, 240);
  box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.06);
}

footer h1, footer h2 { color: #000 !important; }
footer h3, footer h4, footer .footer-brand-name { color: var(--green) !important; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-grid > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.footer-grid > *:nth-child(1) { animation-delay: 0.14s; }
.footer-grid > *:nth-child(2) { animation-delay: 0.20s; }
.footer-grid > *:nth-child(3) { animation-delay: 0.26s; }
.footer-grid > *:nth-child(4) { animation-delay: 0.32s; }

.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; font-weight: 300; }
.footer-logo-svg { width: 52px; height: 52px; flex-shrink: 0; }

.footer-brand-name { font-family: Calibri, 'DM Sans', sans-serif; font-weight: 700; font-size: 18px; color: var(--white); margin-top: 12px; }
.footer-brand-sub { font-size: 12px; color: var(--green); margin-top: 2px; letter-spacing: 0.05em; text-transform: uppercase; }

.footer-col h4 { font-family: Calibri, 'DM Sans', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; font-size: 14px; color: #000; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer-bottom .cr-num { color: var(--green); font-weight: 600; }

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-img-main {
  border-radius: 20px; overflow: hidden; height: 320px; position: relative;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(26,58,107,0.55));
}
.hero-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-img-small { border-radius: 14px; overflow: hidden; height: 150px; }
.hero-img-small img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 3;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-icon { font-size: 22px; }
.hero-badge-text { font-size: 12px; color: rgba(255,255,255,0.9); }
.hero-badge-text strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; }

/* ===== ABOUT IMAGE STACK ===== */
.about-img-stack { position: relative; height: 480px; }
.about-img-bg {
  position: absolute; top: 0; left: 0; right: 48px; bottom: 48px;
  border-radius: 20px; overflow: hidden;
}
.about-img-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-img-fg {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 52%;
  border-radius: 16px; overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 16px 48px rgba(26,58,107,0.15);
}
.about-img-fg img { width: 100%; height: 100%; object-fit: cover; }
.about-years {
  position: absolute; top: 20px; right: 28px;
  background: var(--blue); color: var(--white);
  border-radius: 14px; padding: 18px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(26,58,107,0.3);
}
.about-years-num { font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800; color: var(--green); line-height: 1; }
.about-years-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== ABOUT SLIDESHOW ===== */
.about-slideshow {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,58,107,0.15);
  background: var(--white);
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 480px;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 40px 24px 24px;
  color: var(--white);
}

.slide-number {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.slide-title {
  font-family: Calibri, 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.slide-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-weight: 300;
}

.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 16px;
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
  text-decoration: none;
  user-select: none;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-prev { left: 12px; }
.slide-next { right: 12px; }

.slide-prev:hover, .slide-next:hover {
  background: rgba(0,0,0,0.6);
}

.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active, .dot:hover {
  background: var(--white);
}

.fade {
  animation-name: slideFade;
  animation-duration: 1s;
}

@keyframes slideFade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

@media (max-width: 960px) {
  .slideshow-container { height: 360px; }
  .about-slideshow { max-width: 100%; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== ADMIN BUTTON ===== */
.admin-btn {
  display: inline-block;
  background: transparent;
  color: var(--text-muted) !important;
  font-size: 12px !important;
  padding: 4px 12px !important;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.admin-btn:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-color: var(--blue);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid, .services-intro, .contact-wrap, .safety-grid { grid-template-columns: 1fr; }
  .about-img-stack { height: 320px; }
  .values-grid, .services-grid, .business-cards { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .values-grid, .services-grid, .business-cards, .certs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .clients-logos { gap: 16px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

