/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --bg-dark:      #0a0a0a;
  --bg-card:      #141414;
  --bg-card2:     #1a1a1a;
  --bg-mid:       #0d0d0d;
  --border:       rgba(255,255,255,0.07);
  --accent:       #003366;
  --accent-dark:  #002244;
  --accent-light: #1a5599;
  --text:         #f0ede8;
  --text-muted:   #8a8680;
  --text-soft:    #c8c4be;
  --white:        #ffffff;
  --nav-h:        72px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.72;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
}

h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent-light); }

.eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-soft); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-height: 44px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-light);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

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

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   NAVBAR
   ========================================= */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#nav.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--white);
}

.nav-logo span { color: var(--accent-light); }

#nav nav {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}

#nav nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  transition: color 0.2s;
}

#nav nav a:hover { color: var(--white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-soft);
  transition: color 0.2s;
}

.nav-phone:hover { color: var(--accent-light); }

.nav-cta { padding: 10px 22px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mob-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 24px;
}

.mob-menu.open { display: flex; }

.mob-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mob-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  transition: color 0.2s;
}

.mob-link:hover { color: var(--accent-light); }

.mob-cta-btn {
  width: 100%;
  max-width: 320px;
  text-align: center;
  font-size: 1.1rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  background: linear-gradient(135deg, #0a0a0a 60%, #111 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,85,153,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,85,153,0.12);
  border: 1px solid rgba(26,85,153,0.4);
  color: var(--accent-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-left h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-actions .btn {
  width: 100%;
  justify-content: center;
}

.trust-bar {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.hero-float-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10,10,10,0.9);
  border-left: 3px solid var(--accent-light);
  border-radius: 3px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.float-icon { font-size: 1.2rem; }

.hero-float-card div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.float-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.float-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
#services {
  background: var(--bg-dark);
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:not(.featured):hover {
  border-color: rgba(26,85,153,0.3);
  transform: translateY(-3px);
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.service-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.service-list {
  flex: 1;
  padding: 0;
  margin: 0 0 0 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-soft);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-list li:last-child { border-bottom: none; }

.service-list li::before {
  content: "✓";
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.service-summary {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}

/* Featured card (Signature) */
.service-card-wrapper {
  position: relative;
}

.featured-wrapper {
  padding-top: 16px;
}

.most-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-light);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 1;
}

.service-card.featured {
  border: 1px solid rgba(26,85,153,0.5);
  box-shadow: 0 8px 32px rgba(26,85,153,0.12);
  height: 100%;
}

/* =========================================
   WHY SECTION
   ========================================= */
#why {
  background: var(--bg-mid);
  padding: 96px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-left h2 { margin-bottom: 0; }

.why-left img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  margin: 24px 0;
}

.why-left p {
  color: var(--text-soft);
  margin-bottom: 28px;
}

.pillar {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.why-right .pillar:first-child {
  border-top: 1px solid var(--border);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(26,85,153,0.1);
  border: 1px solid rgba(26,85,153,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.pillar-text h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--white);
}

.pillar-text p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
#gallery {
  background: var(--bg-dark);
  padding: 96px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
}

.placeholder-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =========================================
   AREAS SECTION
   ========================================= */
#areas {
  background: var(--bg-mid);
  padding: 96px 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.areas-intro h2 { margin-bottom: 16px; }
.areas-intro > p { color: var(--text-soft); margin-bottom: 28px; }

.zip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.zip-tag {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-soft);
  min-height: 44px;
  transition: color 0.2s, border-color 0.2s;
}

.zip-tag::before {
  content: "📍";
  margin-right: 8px;
  font-size: 0.85rem;
}

.zip-tag:hover {
  color: var(--accent-light);
  border-color: rgba(26,85,153,0.4);
}

.areas-intro .btn {
  margin-bottom: 24px;
}

.map-embed {
  border: 0;
  border-radius: 4px;
  margin-top: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85);
}

/* FAQ */
.areas-faq h2 { margin-bottom: 8px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.areas-faq .faq-item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
#contact {
  background: var(--bg-dark);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.who-we-are h2 { margin-bottom: 20px; }

.who-we-are p {
  color: var(--text-soft);
  margin-bottom: 20px;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}

.badge-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-soft);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Contact Card */
.contact-right {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.contact-card {
  background: var(--bg-card);
  border-top: 3px solid var(--accent-light);
  border-radius: 4px;
  padding: 40px 36px;
}

.contact-card .eyebrow { margin-bottom: 8px; }
.contact-card h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 10px; }
.contact-card > p { color: var(--text-soft); margin-bottom: 24px; font-size: 0.95rem; }

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.info-list {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-icon {
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.info-list div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.info-val {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a,
.footer-col address {
  font-size: 0.88rem;
  color: var(--text-soft);
  transition: color 0.2s;
  line-height: 1.7;
}

.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  padding-top: 24px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* =========================================
   FLOATING MOBILE CTA
   ========================================= */
.mobile-float-cta {
  display: none;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  #services { padding: 72px 0; }
  #why { padding: 72px 0; }
  #gallery { padding: 72px 0; }
  #areas { padding: 72px 0; }
  #contact { padding: 72px 0; }

  .services-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .areas-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-right { position: static; }
}

@media (max-width: 768px) {
  #nav nav { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left { order: 1; }
  .hero-media { order: 2; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .mobile-float-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 54px;
    background: var(--accent-light);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 999;
  }

  body { padding-bottom: 54px; }
}

/* Mobile */
@media (max-width: 640px) {
  #hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 48px; }

  .trust-bar { gap: 20px; }

  .gallery-grid { gap: 6px; }

  .section-header { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .zip-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 375px) {
  body { font-size: 16px; }
  h1 { font-size: 2.6rem; }
}
