/* ============================================================
   Enviro GY Ltd — Premium Theme v2
   Bold split hero · Deep navy + vivid green · Layered depth
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800;900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
  --green:       #6abf2e;
  --green-2:     #85d43a;
  --green-dark:  #4e9420;
  --green-grad:  linear-gradient(135deg, #6abf2e, #85d43a);
  --green-grad-deep: linear-gradient(135deg, #4e9420, #6abf2e);
  --green-pale:  #e2f5c8;
  --green-pale2: #d0ecb0;
  --green-tint:  #f2faE9;
  --navy:        #061138;
  --navy-2:      #010d2a;
  --navy-3:      #0a1d4d;
  --dark-text:   #0a1440;
  --white:       #ffffff;
  --off-white:   #f7fbf3;
  --gray:        #5b6472;
  --gray-2:      #8a92a0;
  --border:      #e8ecf1;
  --font-head:   'Rubik', sans-serif;
  --font-body:   'Roboto', sans-serif;
  --shadow-sm:   0 2px 10px rgba(6,17,56,0.06);
  --shadow:      0 8px 30px rgba(6,17,56,0.10);
  --shadow-lg:   0 20px 60px rgba(6,17,56,0.16);
  --shadow-green:0 10px 30px rgba(106,191,46,0.35);
  --radius-btn:  50px;
  --radius-card: 16px;
  --transition:  all 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--gray); line-height: 1.75; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::selection { background: var(--green); color: var(--white); }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; position: relative; overflow: hidden; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--off-white); }
.section-dark { background: var(--navy); }
.col-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.text-center { text-align: center; }

/* ── Decorative blobs (soft green, animated) ─────────────── */
.hero-blob-shape {
  position: absolute;
  right: -6%;
  top: -22%;
  width: 60%;
  height: 145%;
  background: linear-gradient(150deg, var(--green-pale) 0%, #d7f0bb 50%, #c6e9a2 100%);
  border-radius: 68% 32% 46% 54% / 60% 42% 58% 40%;
  z-index: 0;
  pointer-events: none;
  animation: blobMorph 16s ease-in-out infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 68% 32% 46% 54% / 60% 42% 58% 40%; }
  50%      { border-radius: 55% 45% 58% 42% / 48% 55% 45% 52%; }
}
.blob {
  position: absolute;
  background: radial-gradient(circle at 35% 35%, var(--green-pale), #ddf2c4);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.blob-sm { width: 200px; height: 200px; border-radius: 66% 34% 58% 42% / 46% 58% 42% 54%; }
.blob-lg { width: 340px; height: 340px; border-radius: 50% 50% 34% 66% / 56% 44% 56% 44%; }
.blob-tl { top: -70px; left: -90px; }
.blob-tr { top: -70px; right: -90px; }
.blob-br { bottom: -80px; right: -100px; }
.blob-bl { bottom: -80px; left: -100px; }
.blob-side-left {
  left: -130px;
  top: 50%;
  transform: translateY(-50%);
  width: 310px;
  height: 390px;
  border-radius: 40% 60% 70% 30% / 50% 50% 50% 50%;
}

/* ── Section headers ─────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 34px; height: 3px; border-radius: 2px; background: var(--green-grad); }
.text-center .section-tag::after { content: ''; width: 34px; height: 3px; border-radius: 2px; background: var(--green-grad); }
.section-tag.white { color: #9de655; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin-bottom: 22px;
}
.section-title.white { color: var(--white); }
.section-title span { color: var(--green); }
.section-desc { font-size: 16.5px; color: var(--gray); line-height: 1.85; max-width: 620px; }
.section-desc.center { margin: 0 auto 48px; }
.section-desc.white { color: rgba(255,255,255,0.72); }

/* Divider used on inner pages */
.section-divider { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.section-divider.center { justify-content: center; }
.divider-line { width: 44px; height: 3px; border-radius: 2px; background: var(--green-grad); }
.divider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  line-height: 1;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.btn-green {
  background: var(--green-grad);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-green:hover { background: var(--green-grad-deep); box-shadow: 0 14px 38px rgba(106,191,46,0.5); transform: translateY(-3px); }
.btn-outline-green { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green-grad); color: var(--white); border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-green); }
.btn-orange { background: linear-gradient(135deg,#ff8a01,#ffb347); color: var(--white); box-shadow: 0 8px 24px rgba(255,138,1,0.35); }
.btn-orange:hover { background: linear-gradient(135deg,#e07800,#ff9922); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(255,138,1,0.45); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.8); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 8px 24px rgba(6,17,56,0.35); }
.btn-navy:hover { background: var(--navy-3); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(6,17,56,0.45); }

/* ── Top header bar ──────────────────────────────────────── */
.header-top { background: linear-gradient(90deg, var(--navy), var(--navy-3)); padding: 10px 0; }
.header-top-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-top-info { display: flex; align-items: center; gap: 28px; }
.header-top-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.78); font-family: var(--font-head); font-weight: 500; }
.header-top-item i { color: var(--green-2); font-size: 13px; }
.header-top-item a { color: rgba(255,255,255,0.78); }
.header-top-item a:hover { color: var(--green-2); }
.header-top-socials { display: flex; align-items: center; gap: 14px; }
.header-top-socials a { font-size: 14px; color: rgba(255,255,255,0.5); }
.header-top-socials a:hover { color: var(--green-2); }

/* ── Navigation ──────────────────────────────────────────── */
.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(6,17,56,0.06); }
.navbar.shadow-active { box-shadow: 0 6px 28px rgba(6,17,56,0.12); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.navbar-logo img { height: 58px; width: auto; }
.navbar-nav { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.nav-link { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--navy); padding: 9px 14px; text-transform: uppercase; letter-spacing: 0.3px; transition: var(--transition); border-radius: 50px; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--green-dark); background: var(--green-pale); }
.navbar-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1010; }
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.navbar-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--white); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: var(--white); }
.mobile-nav { display: none; position: fixed; inset: 0; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); z-index: 1005; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 18px; color: rgba(255,255,255,0.85); background: transparent; }
.mobile-nav .nav-link:hover, .mobile-nav .nav-link.active { color: var(--green-2); background: transparent; }
.mobile-nav-cta { margin-top: 28px; }

/* ── HERO — split panel, animated gradient ───────────────── */
.hero {
  background: linear-gradient(115deg, #ffffff 0%, #f5fbee 45%, #eaf7db 100%);
  background-size: 180% 180%;
  animation: heroGrad 16s ease infinite;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
}
@keyframes heroGrad {
  0%, 100% { background-position: 0% 40%; }
  50%      { background-position: 100% 60%; }
}
/* faint dot texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(6,17,56,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.hero > .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 88vh;
  gap: 0;
  position: relative;
  z-index: 2;
}
.hero-content { padding: 90px 40px 90px 0; }
.hero-img-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 0 56px 30px;
  min-height: 88vh;
}
.hero-img-frame { position: relative; width: 100%; }
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border-radius: 28px;
  background: var(--green-grad);
  opacity: 0.35;
  z-index: 0;
}
.hero-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.hero-float-card {
  position: absolute;
  z-index: 2;
  left: -28px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(106,191,46,0.3);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
}
.hero-float-card .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--green-grad); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-card .ic i { color: var(--white); font-size: 20px; }
.hero-float-card strong { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--navy); display: block; line-height: 1.1; }
.hero-float-card span { font-family: var(--font-head); font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 24px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 26px;
  box-shadow: 0 6px 20px rgba(6,17,56,0.25);
}
.hero-badge i { color: var(--green-2); }
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.8vw, 74px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero-h1 span {
  display: block;
  background: linear-gradient(100deg, var(--green-dark), var(--green), var(--green-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--green);
}
.hero-sub { font-size: 17px; color: var(--gray); margin-bottom: 32px; line-height: 1.8; max-width: 500px; }
.hero-sub strong { color: var(--navy); }
.hero-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-bottom: 40px; }
.hero-bullet { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--dark-text); }
.hero-bullet i { color: var(--green); font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-phone { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.hero-phone-icon { width: 50px; height: 50px; background: var(--green-grad); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-green); animation: phonePulse 2.6s ease infinite; }
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(106,191,46,0.45), var(--shadow-green); }
  60%      { box-shadow: 0 0 0 14px rgba(106,191,46,0), var(--shadow-green); }
}
.hero-phone-icon i { color: var(--white); font-size: 19px; }
.hero-phone-text small { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-2); font-family: var(--font-head); font-weight: 600; display: block; }
.hero-phone-text strong { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--navy); display: block; line-height: 1.2; }
.hero-phone-text a { color: inherit; }
.hero-phone-text a:hover { color: var(--green-dark); }

/* ── Info banner ─────────────────────────────────────────── */
.info-banner { background: var(--green-grad-deep); padding: 0; position: relative; overflow: hidden; }
.info-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.info-banner-inner { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
.info-banner-item { display: flex; align-items: center; gap: 14px; padding: 26px 22px; border-right: 1px solid rgba(255,255,255,0.18); transition: var(--transition); }
.info-banner-item:hover { background: rgba(255,255,255,0.08); }
.info-banner-item:last-child { border-right: none; }
.info-banner-icon { font-size: 30px; color: var(--white); flex-shrink: 0; }
.info-banner-text strong { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--white); display: block; }
.info-banner-text span { font-size: 12.5px; color: rgba(255,255,255,0.85); }

/* ── About ───────────────────────────────────────────────── */
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-img-main::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,17,56,0.25), transparent 45%); }
.about-img-main img { width: 100%; height: auto; display: block; }
.about-experience-badge {
  position: absolute;
  bottom: 28px;
  right: -22px;
  background: var(--green-grad);
  padding: 24px 28px;
  text-align: center;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 44px rgba(106,191,46,0.5);
  min-width: 150px;
  z-index: 2;
}
.about-experience-badge .num { font-family: var(--font-head); font-size: 44px; font-weight: 900; color: var(--white); line-height: 1; display: block; }
.about-experience-badge .label { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.92); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 5px; display: block; }

/* ring stats */
.about-circle-stats { display: flex; gap: 30px; margin: 30px 0; flex-wrap: wrap; }
.circle-stat { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.circle-ring {
  width: 128px;
  height: 128px;
  border: 8px solid var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 0 0 5px var(--green-pale), var(--shadow);
  transition: var(--transition);
}
.circle-stat:hover .circle-ring { transform: scale(1.05); box-shadow: 0 0 0 5px var(--green-pale2), var(--shadow-lg); }
.circle-ring .val { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--navy); line-height: 1; }
.circle-ring .sub-val { font-family: var(--font-head); font-size: 11px; color: var(--gray); margin-top: 2px; }
.circle-stat .lbl { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--navy); text-align: center; }

/* stats row (briquette page) */
.about-stats { display: flex; gap: 18px; flex-wrap: wrap; }
.about-stat { background: var(--green-tint); border: 1px solid var(--green-pale2); border-left: 4px solid var(--green); border-radius: 12px; padding: 16px 24px; }
.about-stat .num { font-family: var(--font-head); font-size: 24px; font-weight: 900; color: var(--navy); display: block; line-height: 1.2; }
.about-stat .lbl { font-family: var(--font-head); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); display: block; margin-top: 3px; }

.check-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.check-item { display: flex; align-items: center; gap: 11px; }
.check-item i { color: var(--green); font-size: 16px; flex-shrink: 0; }
.check-item span { font-size: 15px; color: #4a5262; }

/* ── Service cards ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  padding: 42px 32px;
  transition: var(--transition);
  background: var(--white);
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--green-pale2); }
.service-card:hover::before { transform: scaleX(1); }
.card-icon-circle {
  width: 78px;
  height: 78px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
  background: var(--green-tint);
}
.card-icon-circle i { font-size: 28px; color: var(--green-dark); transition: var(--transition); }
.service-card:hover .card-icon-circle { background: var(--green-grad); border-color: transparent; box-shadow: var(--shadow-green); transform: rotate(-6deg) scale(1.05); }
.service-card:hover .card-icon-circle i { color: var(--white); }
.service-card h3 { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.3px; }
.service-card p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.card-more { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--green-dark); display: inline-flex; align-items: center; gap: 6px; }
.card-more:hover { gap: 11px; color: var(--navy); }

/* ── Counter section ─────────────────────────────────────── */
.counter-section {
  background:
    radial-gradient(ellipse 80% 60% at 85% 0%, rgba(106,191,46,0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(106,191,46,0.10), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.counter-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; z-index: 1; }
.counter-item { text-align: center; padding: 30px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.counter-item:last-child { border-right: none; }
.counter-icon { font-size: 38px; color: var(--green); margin-bottom: 14px; display: block; filter: drop-shadow(0 0 18px rgba(106,191,46,0.5)); }
.counter-num {
  font-family: var(--font-head);
  font-size: clamp(34px,4.5vw,58px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1;
  display: block;
}
.counter-num em { color: var(--green-2); font-style: normal; }
.counter-lbl { font-family: var(--font-head); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.45); margin-top: 10px; display: block; }

/* ── Process steps — timeline feel ───────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: step; }
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 34px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.process-step::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green-grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.process-step:hover { box-shadow: var(--shadow-lg); border-color: var(--green-pale2); transform: translateY(-6px); }
.process-step:hover::after { transform: scaleY(1); }
.step-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(106,191,46,0.28), rgba(106,191,46,0.10));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgba(106,191,46,0.2);
}
.step-icon { width: 52px; height: 52px; background: var(--green-grad); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: var(--shadow-green); transition: var(--transition); }
.process-step:hover .step-icon { transform: rotate(-6deg) scale(1.06); }
.step-icon i { color: var(--white); font-size: 20px; }
.process-step h4 { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 14.5px; color: var(--gray); line-height: 1.7; }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,17,56,0.9) 0%, rgba(6,17,56,0.3) 45%, transparent 70%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 22px; }
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.gallery-caption span { font-size: 12px; color: var(--green-2); font-family: var(--font-head); font-weight: 700; display: block; margin-bottom: 3px; }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  background:
    radial-gradient(ellipse 70% 100% at 90% 50%, rgba(106,191,46,0.35), transparent 65%),
    linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 60%, #123063 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 16px);
  pointer-events: none;
}
.cta-band::after {
  content: '\f1b8';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  font-size: 220px;
  color: rgba(106,191,46,0.10);
  pointer-events: none;
  line-height: 1;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-text .section-title { color: var(--white); margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.82); font-size: 16.5px; max-width: 640px; }
.cta-text p strong { color: var(--green-2); }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Why choose us (dark) ────────────────────────────────── */
.section-dark {
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(106,191,46,0.10), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
}
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card {
  padding: 38px 26px;
  border-radius: var(--radius-card);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green-grad); transform: scaleX(0); transition: transform 0.4s; }
.why-card:hover { background: rgba(106,191,46,0.12); border-color: rgba(106,191,46,0.35); transform: translateY(-6px); }
.why-card:hover::before { transform: scaleX(1); }
.why-card i { font-size: 38px; color: var(--green); margin-bottom: 16px; display: block; filter: drop-shadow(0 0 16px rgba(106,191,46,0.4)); }
.why-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 9px; }
.why-card p { font-size: 14.5px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── Contact cards ───────────────────────────────────────── */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 38px 22px; text-align: center; transition: var(--transition); box-shadow: var(--shadow-sm); }
.contact-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green-pale2); transform: translateY(-6px); }
.contact-card-icon { width: 64px; height: 64px; background: var(--green-grad); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: var(--shadow-green); }
.contact-card-icon i { font-size: 24px; color: var(--white); }
.contact-card h3 { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-2); margin-bottom: 8px; }
.contact-card a, .contact-card p { font-size: 16px; font-weight: 700; color: var(--navy); font-family: var(--font-head); }
.contact-card a:hover { color: var(--green-dark); }
.contact-card .sub { font-size: 13px; color: var(--gray); font-weight: 400; font-family: var(--font-body); margin-top: 5px; }

/* ── Page hero (inner pages) — diagonal cut + pattern ────── */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 70%, #10295a 100%);
  padding: 130px 0 110px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), 0 100%);
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.16; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(106,191,46,0.22), transparent 60%),
    linear-gradient(135deg, rgba(6,17,56,0.95), rgba(6,17,56,0.72));
}
.page-hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(32px,5.2vw,58px); font-weight: 900; letter-spacing: -1px; color: var(--white); margin-bottom: 16px; line-height: 1.06; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto 26px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 9px 22px; font-family: var(--font-head); font-size: 12px; font-weight: 600; border-radius: 50px; }
.breadcrumb a { color: var(--green-2); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .curr { color: rgba(255,255,255,0.68); }

/* ── Accept / reject tags ────────────────────────────────── */
.accept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.accept-tag { display: flex; align-items: center; gap: 10px; padding: 11px 15px; border-radius: 50px; font-size: 14px; font-weight: 500; color: #3d5220; background: #f0f9e8; border: 1px solid #c8e8a0; transition: var(--transition); }
.accept-tag i { color: var(--green-dark); font-size: 13px; }
.accept-tag:hover { background: #e4f5d4; transform: translateX(3px); }
.accept-tag.no { background: #fff0f0; border-color: #ffcdd2; color: #7c2626; }
.accept-tag.no i { color: #c62828; }
.accept-tag.no:hover { background: #ffe4e4; }

/* ── Info boxes ──────────────────────────────────────────── */
.info-box { background: linear-gradient(100deg, #f0f9e8, #f7fcf0); border-left: 4px solid var(--green); border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 18px 0; box-shadow: var(--shadow-sm); }
.info-box h4 { font-family: var(--font-head); font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--green-dark); margin-bottom: 6px; }
.info-box p { font-size: 14px; color: #4a5262; }
.info-box.danger { background: linear-gradient(100deg, #fff0f0, #fff7f7); border-left-color: #c62828; }
.info-box.danger h4 { color: #c62828; }

/* ── Materials grid ──────────────────────────────────────── */
.materials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.material-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; transition: var(--transition); box-shadow: var(--shadow-sm); }
.material-item:hover { border-color: var(--green-pale2); box-shadow: var(--shadow); transform: translateY(-3px); }
.mat-icon { width: 44px; height: 44px; background: var(--green-grad); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-green); }
.mat-icon i { color: var(--white); font-size: 17px; }
.material-item h4 { font-family: var(--font-head); font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 1px; }
.material-item p { font-size: 12.5px; color: var(--gray); line-height: 1.4; }

/* ── Hours list ──────────────────────────────────────────── */
.hours-list { display: flex; flex-direction: column; }
.hours-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.hours-row:last-child { border: none; }
.hours-row .day { color: var(--gray); }
.hours-row .time { font-weight: 700; color: var(--navy); font-family: var(--font-head); }
.hours-row .time.closed { color: #c62828; }
.hours-row .time.open { color: var(--green-dark); }

/* ── Form ────────────────────────────────────────────────── */
.form-wrapper { background: var(--white); border-radius: var(--radius-card); padding: 44px; box-shadow: var(--shadow); border: 1px solid var(--border); border-top: 4px solid var(--green); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.span2 { grid-column: span 2; }
.form-group label { font-family: var(--font-head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--gray); }
.form-group input, .form-group select { padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 50px; font-family: var(--font-body); font-size: 14px; color: var(--navy); background: var(--white); transition: var(--transition); appearance: none; -webkit-appearance: none; }
.form-group textarea { padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 16px; font-family: var(--font-body); font-size: 14px; color: var(--navy); background: var(--white); transition: var(--transition); resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(106,191,46,0.14); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.form-success { display: none; background: #f0f9e8; border: 1px solid var(--green); border-radius: 16px; padding: 14px 22px; font-size: 15px; font-weight: 500; margin-top: 16px; align-items: center; gap: 12px; color: #2e7d32; }
.form-success.show { display: flex; }

/* ── Map ─────────────────────────────────────────────────── */
.map-wrap { border-radius: var(--radius-card); overflow: hidden; height: 360px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--green-pale2); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 26px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.faq-q:hover { color: var(--green-dark); }
.faq-q::after {
  content: '\2b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-q::after { content: '\f068'; background: var(--green-grad); color: var(--white); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(.4,0,.2,1); }
.faq-a > * { padding: 0 26px 22px; font-size: 15px; color: var(--gray); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 500px; }

/* ── Locations / areas served ────────────────────────────── */
.locations-section { position: relative; }
.loc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.loc-item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.loc-item i { color: var(--green); font-size: 15px; transition: var(--transition); }
.loc-item:hover { border-color: var(--green); background: var(--green-tint); transform: translateY(-3px); box-shadow: var(--shadow); color: var(--green-dark); }
.loc-item:hover i { transform: scale(1.2); }
.loc-item.featured { background: var(--green-grad); color: var(--white); border-color: transparent; box-shadow: var(--shadow-green); }
.loc-item.featured i { color: var(--white); }
.loc-item.featured:hover { color: var(--white); transform: translateY(-3px) scale(1.02); }
.loc-item span small { display: block; font-size: 11px; font-weight: 500; opacity: 0.75; line-height: 1.3; }

/* City info blocks (panel page / recycling page) */
.city-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.city-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.city-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 6px; display: flex; align-items: center; gap: 9px; }
.city-card h3 i { color: var(--green); font-size: 14px; }
.city-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.city-card p a { color: var(--green-dark); font-weight: 600; }
.city-card p a:hover { text-decoration: underline; }

/* Keyword-rich inline location links */
.loc-links { display: flex; flex-wrap: wrap; gap: 10px; }
.loc-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 18px;
  transition: var(--transition);
}
.loc-links a i { color: var(--green); font-size: 11px; }
.loc-links a:hover { background: var(--green-grad); color: var(--white); border-color: transparent; box-shadow: var(--shadow-green); transform: translateY(-2px); }
.loc-links a:hover i { color: var(--white); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background:
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(106,191,46,0.08), transparent 60%),
    linear-gradient(180deg, #041030 0%, var(--navy-2) 100%);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-grad);
}
.footer-main { padding: 80px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; }
.footer-logo img { height: 52px; margin-bottom: 18px; border-radius: 8px; }
.footer-about { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.85; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 14px; transition: var(--transition); }
.social-btn:hover { background: var(--green-grad); color: var(--white); border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-green); }
.footer-heading { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 24px; padding-bottom: 10px; border-bottom: 2px solid var(--green); display: inline-block; }
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
.footer-nav a i { font-size: 9px; color: var(--green); }
.footer-nav a:hover { color: var(--green-2); padding-left: 5px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 15px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 11px; }
.footer-contact-row i { color: var(--green); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row span, .footer-contact-row a { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.55; }
.footer-contact-row a:hover { color: var(--green-2); }

/* Areas we serve strip */
.footer-areas { padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-areas h3 { font-family: var(--font-head); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--green-2); margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.footer-areas h3 i { font-size: 13px; }
.footer-areas-links { display: flex; flex-wrap: wrap; gap: 6px 0; font-size: 13px; line-height: 2; }
.footer-areas-links a { color: rgba(255,255,255,0.42); }
.footer-areas-links a:hover { color: var(--green-2); }
.footer-areas-links a::after { content: '·'; margin: 0 10px; color: rgba(255,255,255,0.18); }
.footer-areas-links a:last-child::after { content: ''; margin: 0; }

.footer-bottom { padding: 20px 0; }
.footer-bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-mini-links { display: flex; gap: 20px; }
.footer-mini-links a { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-mini-links a:hover { color: var(--green-2); }
.footer-seo { background: rgba(0,0,0,0.3); padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.03); }
.footer-seo p { font-size: 12px; color: rgba(255,255,255,0.18); text-align: center; line-height: 1.9; }

/* ── Animations ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
.reveal-delay-6 { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero, .hero-blob-shape, .hero-phone-icon { animation: none; }
}

/* ── Responsive ──────────────────────────────────────────── */
/* ── Mobile nav contact block ────────────────────────────── */
.mobile-nav-contacts {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.mobile-nav-contacts a,
.mobile-nav-contacts span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
}
.mobile-nav-contacts a { color: var(--green-2); }
.mobile-nav-contacts a:hover { color: var(--white); }
.mobile-nav-contacts i { color: var(--green); width: 16px; text-align: center; }

@media (max-width: 1024px) {
  .col-2 { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
  .counter-item:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .info-banner-inner { grid-template-columns: repeat(2,1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .cta-band::after { display: none; }
  .process-grid { grid-template-columns: repeat(2,1fr) !important; }
  .hero > .container { grid-template-columns: 1fr; min-height: 80vh; }
  .hero-blob-shape { display: none; }
  .hero-img-panel { display: none; }
  /* EPS image blended behind hero text on tablet/mobile */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/eps-blocks.png') center right / cover no-repeat;
    opacity: 0.13;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
  }
  .about-experience-badge { right: 0; }
  .hero-content { padding: 72px 0 64px; text-align: center; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-bullets { justify-items: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .loc-grid { grid-template-columns: repeat(3,1fr); }
  .city-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .navbar-nav, .navbar-cta-desktop { display: none; }
  .navbar-toggle { display: flex; }
  /* Announcement bar — compact single row on mobile */
  .header-top-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .header-top-info { gap: 0; }
  .header-top-item:not(:first-child) { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .materials-grid, .why-grid, .contact-cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr !important; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-row { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span2 { grid-column: span 1; }
  .form-wrapper { padding: 26px 18px; }
  .hero-bullets { grid-template-columns: 1fr; text-align: left; }
  .info-banner-inner { grid-template-columns: 1fr 1fr; }
  .about-experience-badge { position: static; margin-top: 14px; display: inline-block; }
  .hero-content { padding: 48px 0 64px; }
  .hero-blob-shape { display: none; }
  .about-circle-stats { justify-content: center; }
  .accept-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero { padding: 90px 0 84px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%); }
  .faq-q { font-size: 15px; padding: 17px 18px; }
  .faq-a > * { padding: 0 18px 18px; }
  /* Center section headings on mobile */
  .section-title, .section-tag, .section-desc { text-align: center; }
  .section-desc { margin-left: auto; margin-right: auto; }
  .col-2 .section-tag, .col-2 .section-title, .col-2 .section-desc { text-align: left; }
  /* Centre page-hero text */
  .page-hero-content { text-align: center; }
  .page-hero h1, .page-hero p { text-align: center; }
  .breadcrumb { justify-content: center; }
}
@media (max-width: 480px) {
  .loc-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr; }
  .counter-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .counter-item:last-child { border-bottom: none; }
  .hero-img-frame img { max-height: 220px; }
  /* Everything centered on small phones */
  .hero-content { text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-phone { margin-left: 0; justify-content: center; }
  .hero-bullets { text-align: left; }
  .info-banner-inner { grid-template-columns: 1fr; }
}
