*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #FFFFFF;
  --off-white: #F6F8F6;
  --black: #111111;
  --black-soft: #333333;
  --gold: #D4AF37;
  --gold-dark: #B8962E;
  --gold-dim: rgba(212,175,55,0.14);
  --green: #355E3B;
  --green-dark: #2A4A2F;
  --green-light: #EBF2EC;
  --gray: #777777;
  --gray-light: #E5E5E5;
  --border: #DEDEDE;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 36px rgba(0,0,0,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  box-shadow: var(--shadow);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
}

.nav-logo-main .gold { color: var(--gold); }

.nav-logo-sub {
  font-size: 0.62rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 700; }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 5px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
  text-transform: none !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.01em !important;
}

.nav-cta:hover { background: var(--green-dark) !important; }
.nav-cta.active { background: var(--green-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ── HERO (Home) ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  background: var(--green-light);
  z-index: 0;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-img { position: relative; }

.hero-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: var(--shadow-lg);
}

.hero-img-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 0.9rem 1.3rem;
  box-shadow: var(--shadow-md);
}

.hb-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.hb-label {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-light);
  border: 1px solid rgba(53,94,59,0.22);
  color: var(--green);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--black);
}

.hero-title .green { color: var(--green); }
.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--black-soft);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item:hover { color: var(--green); }

.contact-item .icon {
  width: 30px; height: 30px;
  background: var(--green-light);
  border: 1px solid rgba(53,94,59,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--black);
  padding: 1.1rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-item .ti-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 180px 5% 140px;
  min-height: 58vh;
  background-color: #1c1c1c;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.76);
  z-index: 0;
}

.page-hero .overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(53,94,59,0.14) 0%, transparent 60%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .section-label { color: var(--gold); }

.page-hero .page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  color: #FFFFFF;
}

.page-hero .page-title span { color: var(--gold); }

.page-hero .page-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}

.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover { background: var(--green); color: var(--white); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── SECTION BASE ── */
section { padding: 90px 5%; }

.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-title span { color: var(--green); }
.section-title .gold { color: var(--gold); }

.section-desc {
  color: var(--gray);
  font-size: 0.98rem;
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 2.75rem;
}

.inner { max-width: 1100px; margin: 0 auto; }

.gold-line {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  max-width: 90px;
  margin-bottom: 1.75rem;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
}

.service-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.service-card .sc-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border: 1px solid rgba(53,94,59,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.service-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--black); }
.service-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.55; }

/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
}

.why-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.why-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border: 1px solid rgba(53,94,59,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--black); }
.why-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.tc-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.08em; margin-bottom: 1rem; }

.tc-text {
  color: var(--black-soft);
  font-size: 0.88rem;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.tc-author { display: flex; align-items: center; gap: 0.75rem; }

.tc-avatar {
  width: 40px; height: 40px;
  background: var(--green-light);
  border: 2px solid rgba(53,94,59,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.tc-name { font-size: 0.85rem; font-weight: 700; color: var(--black); }
.tc-role { font-size: 0.73rem; color: var(--gray); }

/* ── SERVICE AREAS ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.75rem;
}

.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--black-soft);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.area-chip:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* ── CERTIFICATIONS ── */
.certs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cert-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 10px;
  padding: 1.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 155px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cert-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cert-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.cert-title { font-size: 0.8rem; font-weight: 700; color: var(--black); letter-spacing: 0.02em; }
.cert-sub { font-size: 0.7rem; color: var(--gray); margin-top: 0.15rem; }

/* ── ABOUT ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pillar:hover { border-color: var(--green); box-shadow: var(--shadow-md); }

.pillar-icon { font-size: 1.3rem; width: 40px; text-align: center; flex-shrink: 0; }
.pillar-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--black); }
.pillar-text p { font-size: 0.82rem; color: var(--gray); }

.about-visual { display: flex; flex-direction: column; gap: 1.5rem; }

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}

.stat-card .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-card .stat-label { color: var(--gray); font-size: 0.85rem; margin-top: 0.3rem; }

.about-dba {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--green-light);
  border: 1px solid rgba(53,94,59,0.2);
  border-radius: 8px;
  color: var(--gray);
  font-size: 0.82rem;
}

.about-dba strong { color: var(--green); }

/* ── INDUSTRIES ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1rem;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
}

.industry-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.industry-card .ic-label {
  padding: 1.5rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.industry-card .ic-label .industry-icon { font-size: 1.8rem; }
.industry-card .ic-label span { display: block; font-size: 0.85rem; font-weight: 600; color: var(--black); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
}

.contact-block:hover { border-color: var(--green); box-shadow: var(--shadow-md); }

.contact-block .cb-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border: 1px solid rgba(53,94,59,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-block .cb-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.2rem;
}

.contact-block .cb-value { font-size: 0.98rem; font-weight: 600; color: var(--black); }
.contact-block .cb-note { font-size: 0.74rem; color: var(--gray); margin-top: 0.12rem; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--black); }

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(53,94,59,0.08); }

.form-group select option { background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--green-dark); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--green);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
}

.cta-banner h2 span { color: var(--gold); }

.cta-banner p {
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}

.cta-banner .actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; position: relative; }

.cta-banner .btn-primary { background: var(--gold); color: var(--black); }
.cta-banner .btn-primary:hover { background: var(--gold-dark); }
.cta-banner .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.65);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.cta-banner .btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ── HOME TEASERS ── */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.teaser-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  display: block;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
}

.teaser-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.teaser-card .tc-body { padding: 1.5rem 1.25rem; }
.teaser-card .tc-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.teaser-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 0.3rem; }
.teaser-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: gap 0.2s;
}

.view-all-link:hover { gap: 0.7rem; }

/* ── PRE-FOOTER ── */
.pre-footer {
  background: #111;
  border-top: 2px solid var(--gold);
  padding: 18px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 3px solid var(--green);
  padding: 48px 5%;
  text-align: center;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-logo .gold { color: var(--gold); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  list-style: none;
}

.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.75rem; margin-top: 1.25rem; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5%;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
  }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  #hero::before { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-strip { gap: 1.25rem; }
}

@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .page-hero { padding: 130px 5% 80px; min-height: 44vh; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-green, .btn-outline-white { width: 100%; justify-content: center; }
  .cta-banner .actions { flex-direction: column; align-items: center; }
}
