
html { scroll-behavior: smooth; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { --green: #5B8C2A; --green-light: #7BB535; --green-dark: #3E6B1A; --dark-bg: #1a1a1a; --darker-bg: #111111; --darkest-bg: #0d0d0d; --text-white: #ffffff; --text-gray: #b0b0b0; --text-light-gray: #d0d0d0; --card-bg: #222222; }
body { font-family: 'Open Sans', sans-serif; color: var(--text-white); background: var(--darkest-bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.header { background: rgba(13,13,13,0.97); padding: 20px 0; position: sticky; top: 0; z-index: 500; border-bottom: 1px solid rgba(255,255,255,0.06); transition: box-shadow 0.3s ease, padding 0.3s ease; }
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); padding: 12px 0; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-link { display: block; flex-shrink: 0; transition: opacity 0.3s ease, transform 0.3s ease; }
.logo-link:hover { opacity: 0.82; transform: scale(0.97); }
.logo-img { height: 210px; width: auto; display: block; margin-top: 15px; margin-bottom: -15px; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-white); transition: color 0.3s, background 0.3s; }
.main-nav a:hover { color: var(--green-light); }
.main-nav a.active { color: var(--green-light); background: rgba(123,181,53,0.12); padding: 6px 12px; margin: -6px -12px; border-radius: 4px; }

/* Header Phone CTA */
.header-phone {
  text-align: right;
}
.header-phone-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s, text-shadow 0.3s;
  text-shadow: 0 0 8px rgba(123,181,53,0.3);
}
.header-phone-number:hover {
  color: var(--green-light);
  text-shadow: 0 0 16px rgba(123,181,53,0.5), 0 0 32px rgba(123,181,53,0.2);
}
.header-phone-number {
  animation: desktopPhoneGlow 3s ease-in-out infinite;
}
@keyframes desktopPhoneGlow {
  0%, 100% { text-shadow: 0 0 8px rgba(123,181,53,0.3); }
  50% { text-shadow: 0 0 16px rgba(123,181,53,0.5), 0 0 32px rgba(123,181,53,0.15); }
}
.header-phone-number svg {
  fill: var(--green-light);
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 6px rgba(123,181,53,0.5));
}
.header-phone-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--green-light);
  text-transform: uppercase;
}

/* ===== SERVICES DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 10px;
  transition: transform 0.3s;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a.active {
  color: var(--green-light) !important;
  background: rgba(123,181,53,0.1) !important;
  border-left: 3px solid var(--green-light);
  padding-left: 21px;
}

/* ===== FOOTER ===== */

/* Copyright Bar */

/* Footer Responsive */

/* Page Hero */
.page-hero { background: var(--dark-bg); padding: 60px 32px; text-align: center; position: relative; overflow: visible; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(180,0,0,0.1) 0px, rgba(180,0,0,0.1) 38px, rgba(255,255,255,0.03) 38px, rgba(255,255,255,0.03) 76px); opacity: 0.3; }
.page-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; animation: fadeInUp 0.8s ease-out; }
.page-hero-label { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--green-light); margin-bottom: 12px; }
.page-hero-title { font-family: 'Oswald', sans-serif; font-weight: 800; font-size: 52px; text-transform: uppercase; letter-spacing: 2px; line-height: 1.1; }
.page-hero-subtitle { margin-top: 16px; font-size: 16px; color: var(--text-light-gray); line-height: 1.6; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Service Detail */
.service-content { padding: 80px 32px; background: var(--darker-bg); }
.service-content-inner { max-width: 900px; margin: 0 auto; }
.service-hero-icon { width: 360px; height: 360px; margin: 0 auto 32px; display: flex; align-items: center; justify-content: center; }
.service-body h2 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 28px; text-transform: uppercase; letter-spacing: 1px; margin: 40px 0 16px; color: var(--green-light); }
.service-body p { font-size: 16px; line-height: 1.8; color: var(--text-gray); margin-bottom: 16px; }
.service-body ul { list-style: none; margin: 24px 0 32px; }
.service-body ul li { font-size: 15px; color: var(--text-light-gray); padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.04); }
.service-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green-light); font-weight: 700; }
.service-cta-box { background: var(--green); border-radius: 6px; padding: 40px; text-align: center; margin-top: 48px; }
.service-cta-box h3 { font-family: 'Oswald', sans-serif; font-weight: 800; font-size: 28px; text-transform: uppercase; margin-bottom: 12px; }
.service-cta-box p { font-size: 16px; opacity: 0.9; margin-bottom: 24px; }
.service-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--darkest-bg); padding: 16px 40px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; transition: background 0.3s, transform 0.2s; }
.service-cta-btn:hover { background: #e8e8e8; transform: scale(1.03); }
.service-cta-btn svg { width: 20px; height: 20px; fill: var(--darkest-bg); }

/* Other Services */
.other-services { padding: 60px 32px; background: var(--dark-bg); }
.other-services-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.other-services h3 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 24px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 32px; }
.other-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.other-service-card { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px; background: var(--darker-bg); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; transition: border-color 0.3s, transform 0.3s; }
.other-service-card:hover { border-color: var(--green-light); transform: translateY(-4px); }
.other-service-card span { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light-gray); }

/* CTA Bar */

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== FINAL REFINEMENT PASS ===== */

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
::selection { background: var(--green-light); color: #000; }
.header { padding: 20px 0; }
.header.scrolled { padding: 12px 0; }

/* ===== FOOTER ===== */
.footer {
  background: #070707;
  position: relative;
}
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(91,140,42,0.3) 50%, transparent 92%);
}

/* Footer body */
.footer-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 48px 42px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 72px;
  align-items: center;
}

/* Logo — sole left element */
.footer-anchor {
  display: flex;
  justify-content: center;
}
.footer-logo-img {
  height: 200px;
  width: auto;
  display: block;
}

/* 3-column nav */
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.28);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links li a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
  display: inline-block;
  line-height: 1.3;
}
.footer-links li a:hover {
  color: rgba(255,255,255,0.75);
}

/* Contact column */
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-cta-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  line-height: 1;
}
.footer-cta-phone:hover { color: var(--green-light); }
.footer-cta-phone svg {
  width: 14px;
  height: 14px;
  fill: var(--green);
  opacity: 0.8;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.footer-contact-info a,
.footer-contact-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s ease;
  line-height: 1.35;
}
.footer-contact-info a:hover { color: rgba(255,255,255,0.55); }
.footer-cta-location {
  font-size: 9.5px;
  color: rgba(255,255,255,0.14);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
}
.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 10px;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.2px;
}
.footer-copyright strong {
  color: rgba(123,181,53,0.45);
  font-weight: 600;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-legal a {
  font-size: 10px;
  color: rgba(255,255,255,0.12);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,0.35); }
.footer-credit {
  font-size: 9px;
  color: rgba(255,255,255,0.06);
}

/* Footer responsive */

/* Sticky Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--darkest-bg);
  border-top: 2px solid var(--green);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.3s;
}
.mobile-cta-call {
  background: var(--green);
  color: #fff;
}
.mobile-cta-call:hover { background: var(--green-dark); }
.mobile-cta-form {
  background: transparent;
  color: var(--green-light);
  border: 1px solid var(--green-light);
}
.mobile-cta-form:hover { background: rgba(123,181,53,0.1); }
.mobile-cta svg { width: 16px; height: 16px; fill: currentColor; }

/* FAQ Section */
.faq-section { padding: 60px 32px; background: var(--dark-bg); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-heading { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 24px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; text-align: center; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question { width: 100%; background: none; border: none; color: var(--text-white); font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; text-align: left; padding: 18px 40px 18px 0; cursor: pointer; position: relative; letter-spacing: 0.5px; transition: color 0.3s; }
.faq-question:hover { color: var(--green-light); }
.faq-question::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--green-light); transition: transform 0.3s; }
.faq-question.open::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer p { font-size: 14px; color: var(--text-gray); line-height: 1.7; padding: 0 0 18px; }

.cta-bar {
  background: var(--green);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.08) 100%),
    radial-gradient(ellipse at 15% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.cta-bar-badge { width: 270px; height: 270px; flex-shrink: 0; }
.badge-img { width: 100%; height: auto; display: block; }
.cta-bar-text { flex: 1; max-width: 640px; }
.cta-bar-title { font-family: 'Oswald', sans-serif; font-weight: 800; font-size: 34px; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.15; }
.cta-bar-subtitle { font-size: 15px; opacity: 0.85; margin-top: 6px; line-height: 1.5; }
.cta-bar-contact { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2); flex-wrap: wrap; }
.cta-bar-phone { display: inline-flex; align-items: center; gap: 12px; font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: 1px; color: #fff; background: rgba(255,255,255,0.12); padding: 12px 28px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); transition: background 0.3s, box-shadow 0.3s, transform 0.2s; }
.cta-bar-phone:hover { background: rgba(255,255,255,0.2); box-shadow: 0 4px 20px rgba(0,0,0,0.15); transform: translateY(-1px); }
.cta-bar-phone svg { width: 26px; height: 26px; fill: #fff; }
.cta-bar-contact-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); margin: 0 8px; }
.cta-bar-web {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: text-shadow 0.3s, transform 0.2s, letter-spacing 0.3s;
}
.cta-bar-web:hover {
  text-shadow: 0 0 16px rgba(255,255,255,0.4), 0 0 32px rgba(255,255,255,0.15);
  transform: translateY(-1px);
  letter-spacing: 0.3px;
}
.cta-bar-web svg { width: 20px; height: 20px; fill: #fff; transition: filter 0.3s; }
.cta-bar-web:hover svg { filter: drop-shadow(0 0 6px rgba(255,255,255,0.5)); }

/* ===== CONSOLIDATED RESPONSIVE ===== */

/* ===== SERVICES DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle::after { content: '▾'; font-size: 10px; transition: transform 0.3s; }

/* Desktop: hover to open */
@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    margin-top: 12px;
    background: rgba(20,20,20,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 8px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 200;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: rgba(20,20,20,0.97);
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    border-right: none;
    transform: translateX(-50%) rotate(45deg);
  }
  .nav-dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-gray);
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
  }
  .nav-dropdown-menu a:hover {
    color: var(--green-light);
    background: rgba(123,181,53,0.08);
    padding-left: 28px;
  }
}

/* ===== MOBILE HAMBURGER MENU ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 10px;
  z-index: 701;
  background: none;
  border: none;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== RESPONSIVE — 1024px (Tablet Landscape) ===== */
@media (max-width: 1024px) {
  /* Services */
  .services-inner { grid-template-columns: repeat(2, 1fr) !important; }
  .service-card:nth-child(2)::after, .service-card:nth-child(4)::after { display: none; }

  /* Foundation */
  .foundation-inner { grid-template-columns: 1fr 1fr !important; }
  .foundation-left { grid-column: 1 / -1; }
  .hero-title { font-size: 48px; }
  .hero-title .green { font-size: 54px; }

  /* About */
  .about-story-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .values-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Service areas */
  .areas-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Financing */
  .financing-steps { grid-template-columns: repeat(3, 1fr); }
}

/* ===== RESPONSIVE — 768px (Tablet / Large Mobile) ===== */
@media (max-width: 768px) {
  /* --- MOBILE HEADER — Premium Agency Layout --- */
  .nav-toggle { display: flex; }
  .header {
    padding: 0;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(123,181,53,0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: box-shadow 0.4s cubic-bezier(0.22,1,0.36,1), background 0.4s ease;
  }
  .header.scrolled {
    padding: 0;
    background: #0a0a0a;
    box-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 0 rgba(123,181,53,0.08);
  }
  .header-inner {
    padding: 16px 22px;
    gap: 0;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
  }

  /* Logo — preserved sizing, refined alignment */
  .logo-link {
    flex: 0 0 auto;
    order: 1;
  }
  .logo-img { height: 135px; max-height: 100%; object-fit: contain; margin-top: 10px; margin-bottom: -10px; }

  /* Phone CTA — premium pill with presence */
  .header-phone {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 16px;
    text-align: center;
  }
  .header-phone-number {
    font-size: 0;
    gap: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(123,181,53,0.22) 0%, rgba(91,140,42,0.28) 100%);
    border: 1.5px solid rgba(123,181,53,0.45);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow:
      0 0 12px rgba(123,181,53,0.25),
      0 0 24px rgba(123,181,53,0.12),
      0 2px 8px rgba(0,0,0,0.3),
      inset 0 1px 0 rgba(255,255,255,0.06);
    text-shadow: none;
    animation: phoneGlow 2.5s ease-in-out infinite;
  }
  @keyframes phoneGlow {
    0%, 100% {
      box-shadow:
        0 0 12px rgba(123,181,53,0.25),
        0 0 24px rgba(123,181,53,0.12),
        0 2px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.06);
      border-color: rgba(123,181,53,0.45);
    }
    50% {
      box-shadow:
        0 0 18px rgba(123,181,53,0.4),
        0 0 36px rgba(123,181,53,0.18),
        0 2px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.06);
      border-color: rgba(123,181,53,0.6);
    }
  }
  .header-phone-number:active {
    background: linear-gradient(135deg, rgba(123,181,53,0.35) 0%, rgba(91,140,42,0.4) 100%);
    transform: scale(0.93);
    box-shadow: 0 0 20px rgba(123,181,53,0.35), 0 1px 8px rgba(123,181,53,0.2);
    border-color: rgba(123,181,53,0.6);
    animation: none;
  }
  .header-phone-number svg {
    width: 22px;
    height: 22px;
    fill: var(--green-light);
    filter: drop-shadow(0 0 8px rgba(123,181,53,0.5));
    transition: filter 0.3s ease;
  }
  .header-phone-label { display: none; }

  /* Hamburger — premium presence + polish */
  .nav-toggle {
    order: 3;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
    transition: background 0.25s ease, transform 0.2s ease;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle:active {
    background: rgba(255,255,255,0.08);
    transform: scale(0.94);
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease, width 0.3s ease;
  }
  .nav-toggle.open span {
    background: var(--green-light);
  }

  /* Full-screen mobile nav overlay */
  .main-nav {
    display: none !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(24px) saturate(1.1);
    -webkit-backdrop-filter: blur(24px) saturate(1.1);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    z-index: 600;
    padding: 100px 0 48px;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav.open { display: flex !important; }

  /* Nav links — refined typography + spacing */
  .main-nav > a,
  .main-nav > .nav-dropdown > .nav-dropdown-toggle {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    padding: 18px 32px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: color 0.3s ease, background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    box-sizing: border-box;
  }
  .main-nav > a:hover,
  .main-nav > a:active,
  .main-nav > .nav-dropdown > .nav-dropdown-toggle:hover {
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.02);
  }
  .main-nav > a.active {
    color: var(--green-light);
    background: rgba(123,181,53,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding-bottom: 18px;
    position: relative;
  }

  /* Services dropdown wrapper */
  .nav-dropdown {
    width: 100%;
    border-bottom: none;
  }
  .nav-dropdown-toggle {
    cursor: pointer;
    position: relative;
  }
  .nav-dropdown-toggle::after {
    content: '▾' !important;
    font-size: 11px;
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    opacity: 0.5;
  }
  .nav-dropdown.open .nav-dropdown-toggle {
    color: rgba(255,255,255,0.95);
  }
  .nav-dropdown.open .nav-dropdown-toggle::after {
    transform: rotate(180deg);
    opacity: 0.8;
  }

  /* Dropdown submenu — smooth expand */
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    background: rgba(123,181,53,0.03);
    border-top: 1px solid rgba(123,181,53,0.06);
    box-shadow: inset 0 1px 0 rgba(123,181,53,0.04);
    min-width: unset;
    width: 100%;
    transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), visibility 0s 0.45s;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    visibility: visible;
    max-height: 400px;
    transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), visibility 0s 0s;
  }
  .nav-dropdown-menu a {
    display: block !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.45) !important;
    padding: 14px 32px !important;
    text-align: center !important;
    border-bottom: none !important;
    transition: color 0.3s ease, background 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
  }
  .nav-dropdown-menu a:last-child { border-bottom: none !important; }
  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:active {
    color: rgba(255,255,255,0.85) !important;
    background: rgba(123,181,53,0.04) !important;
  }

  /* --- HERO --- */
  .hero { min-height: 400px; }
  .hero-content { padding: 32px 20px 40px; }
  .hero-title { font-size: clamp(26px, 7vw, 36px); }
  .hero-title .green { font-size: clamp(30px, 8vw, 40px); }
  .hero-subtitle { font-size: 14px; max-width: 100%; }
  .hero-family-roots { font-size: 18px; }
  .hero-ctas { gap: 12px; flex-direction: column; }
  .cta-call, .cta-financing { padding: 14px 20px; width: 100%; justify-content: center; text-align: center; box-sizing: border-box; }

  /* --- SERVICES --- */
  .services { padding: 40px 16px; }
  .services-inner { grid-template-columns: 1fr !important; gap: 0 !important; }
  .service-card { padding: 24px 16px; }
  .service-card + .service-card { border-top: 1px solid rgba(255,255,255,0.04); }
  .service-card:not(:last-child)::after { display: none; }
  .service-icon { width: 120px !important; height: 120px !important; margin-bottom: 16px !important; }

  /* --- FOUNDATION --- */
  .foundation { padding: 40px 16px; }
  .foundation-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
  .foundation-title { font-size: clamp(26px, 7vw, 36px); }
  .foundation-photos { height: 280px; }
  .photo-old, .photo-new { width: 200px !important; height: 150px !important; }
  .foundation-values { gap: 0; }
  .value-item { padding: 16px 0; }
  .value-icon { width: 48px !important; height: 48px !important; min-width: 48px !important; }

  /* --- CTA BAR --- */
  .cta-bar { padding: 32px 16px; }
  .cta-bar-inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-bar-badge { width: 160px !important; height: 160px !important; }
  .cta-bar-title { font-size: clamp(20px, 5.5vw, 28px); }
  .cta-bar-subtitle { font-size: 14px; }
  .cta-bar-contact { flex-direction: column; align-items: center; gap: 14px; }
  .cta-bar-phone { font-size: clamp(22px, 6vw, 30px); padding: 10px 20px; }
  .cta-bar-contact-divider { display: none; }
  .cta-bar-web { font-size: 15px; }

  /* --- FOOTER --- */
  .footer-body {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 32px 24px 24px !important;
    max-width: 100% !important;
  }
  .footer-anchor {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 4px;
  }
  .footer-logo-img { height: 130px !important; }
  .footer-nav {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    text-align: center;
  }
  .footer-nav > div {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  .footer-nav > div:last-child { border-bottom: none; }
  .footer-heading { text-align: center; margin-bottom: 10px !important; }
  .footer-links { align-items: center; }
  .footer-contact-col { align-items: center; }
  .footer-contact-info { align-items: center; }
  .footer-cta-phone { font-size: 21px !important; }
  .footer-bottom-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 4px !important;
    padding: 12px 24px !important;
    max-width: 100% !important;
  }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .footer-credit { display: block; margin-top: 2px; }
  body { padding-bottom: 62px; }

  /* --- PAGE HEROES --- */
  .page-hero { padding: 36px 16px; }
  .page-hero-title { font-size: clamp(24px, 7vw, 36px) !important; }
  .page-hero-subtitle { font-size: 14px; }

  /* --- SERVICE SUBPAGES --- */
  .service-body { padding: 36px 16px; }
  .service-hero-icon { width: 180px !important; height: 180px !important; }
  .other-services-grid { grid-template-columns: 1fr !important; }
  .service-cta-box { padding: 24px 16px !important; }

  /* --- ABOUT PAGE --- */
  .about-story-inner { grid-template-columns: 1fr !important; gap: 24px !important; }
  .values-grid { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* --- SERVICE AREAS --- */
  .areas-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .not-sure { padding: 40px 16px; }

  /* --- FINANCING --- */
  .financing-steps { grid-template-columns: 1fr !important; gap: 24px !important; }
  .benefits-grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* --- CONTACT --- */
  .contact-info-inner { grid-template-columns: 1fr !important; gap: 16px !important; }
  .contact-form { grid-template-columns: 1fr !important; }
  .contact-form-section { padding: 40px 16px; }
  .contact-info-section { padding: 40px 16px; }
  .contact-form-heading h2 { font-size: clamp(22px, 6vw, 30px); }
  .form-submit-btn { width: 100%; justify-content: center; }

  /* --- LEGAL --- */
  .legal-section { padding: 40px 16px; }

  /* --- FAQ --- */
  .faq-section { padding: 40px 16px; }
  .faq-question { font-size: 15px; padding: 16px 36px 16px 0; }

  /* --- STICKY MOBILE CTA --- */
  .mobile-cta { display: flex; }
  body { padding-bottom: 58px; }
}

/* ===== RESPONSIVE — 480px (Small Mobile) ===== */
@media (max-width: 480px) {
  .logo-img { height: 117px; margin-top: 8px; margin-bottom: -8px; }
  .header-inner { padding: 14px 18px; }
  .header-phone { margin-right: 14px; }
  .header-phone-number { width: 46px; height: 46px; }
  .header-phone-number svg { width: 20px; height: 20px; }
  .nav-toggle { width: 44px; height: 44px; }

  .hero-content { padding: 24px 14px 32px; }
  .service-icon { width: 100px !important; height: 100px !important; }

  .foundation-photos { height: 220px; }
  .photo-old, .photo-new { width: 170px !important; height: 120px !important; }
  .foundation-cursive { font-size: 22px; }
  .footer-logo-img { height: 120px !important; }

  .cta-bar-badge { width: 130px !important; height: 130px !important; }
  .service-hero-icon { width: 140px !important; height: 140px !important; }

  .contact-card { padding: 20px 16px; }
}

/* ===== RESPONSIVE — 360px (Narrow Mobile) ===== */
@media (max-width: 360px) {
  .logo-img { height: 99px; margin-top: 7px; margin-bottom: -7px; }
  .header-inner { padding: 12px 14px; }
  .header-phone { margin-right: 10px; }
  .header-phone-number { width: 42px; height: 42px; border-width: 1px; }
  .header-phone-number svg { width: 18px; height: 18px; }
  .nav-toggle { width: 40px; height: 40px; }

  .hero-content { padding: 20px 12px 28px; }
  .service-icon { width: 90px !important; height: 90px !important; }

  .cta-bar-badge { width: 110px !important; height: 110px !important; }
  .foundation-cursive { font-size: 20px; }
}

/* Enhanced Mobile CTA */
.mobile-cta-call {
  flex: 1.3 !important;
  font-size: 15px !important;
  letter-spacing: 1px !important;
  padding: 14px 8px !important;
}
/* Trust strip mobile */
@media (max-width: 768px) {
  .trust-strip { padding: 14px 16px !important; }
  .trust-strip > div { gap: 12px !important; font-size: 11px !important; }
}
@media (max-width: 480px) {
  .trust-strip > div { flex-direction: column !important; gap: 8px !important; }
}
