/* ═══════════════════════════════════════
   Native Screens — Main Stylesheet
   Colors: Teal #1A6B8A | Green #3A7D44 | Amber #F5A623
   ═══════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #1A6B8A;
  --teal-dark:  #145470;
  --teal-light: #e8f4f8;
  --green:      #3A7D44;
  --green-dark: #2d6235;
  --green-light:#eaf3ec;
  --amber:      #F5A623;
  --amber-dark: #d48b10;
  --white:      #F8F9FA;
  --charcoal:   #1C2B33;
  --gray:       #6b7280;
  --gray-light: #f3f4f6;
  --border:     #e5e7eb;
  --shadow:     0 4px 24px rgba(26,107,138,0.10);
  --radius:     12px;
  --font:       'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}

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

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #111111;
  color: #ffffff;
}
.btn-primary:hover { background: #333333; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }

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

/* ── Section Labels ── */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(12,31,40,0.96);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  /* white logo → black to show on white nav bar */
  filter: brightness(0);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-links a {
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--teal); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber);
  color: #1C2B33;
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.98rem;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  transition: background 0.15s;
}
.nav-phone:hover { background: var(--amber-dark); color: #1C2B33; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  display: block;
  transition: all 0.25s;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  max-height: 100svh;
  display: flex;
  align-items: center;
  background-color: #0c1f28;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Full-bleed looping video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.52) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.hero-eyebrow {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-logo {
  width: min(280px, 55vw);
  margin: 0 auto 0.6rem;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.7));
}

.hero-headline {
  font-size: clamp(1.3rem, 2.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 0.6rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-subhead {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 500;
  max-width: 680px;
  margin: 0 auto 1.25rem;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-phone-alt {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-phone-alt a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  opacity: 0.92;
}

/* Dual hero CTA row */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--charcoal);
  font-weight: 800;
  font-size: 1.2rem;
  padding: 1.15rem 2.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 6px 28px rgba(245,166,35,0.45);
}
.btn-hero-primary:hover { background: #e09610; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,166,35,0.5); }

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--amber);
  color: var(--charcoal);
  font-weight: 900;
  font-size: 1.3rem;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 32px rgba(245,166,35,0.5);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-hero-call:hover { background: #e09610; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(245,166,35,0.55); color: var(--charcoal); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}

.service-card.featured {
  border-color: var(--teal);
  border-width: 2px;
  background: var(--teal-light);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  white-space: nowrap;
}

.service-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
  transition: color 0.15s;
}
.service-cta:hover { color: var(--green); }

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
  background: #fff;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-placeholder {
  background: var(--green-light);
  border: 2px dashed var(--green);
  border-radius: var(--radius);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--green);
  text-align: center;
  padding: 2rem;
}
.about-image-placeholder span { font-size: 3rem; }
.about-image-placeholder p { font-size: 0.9rem; color: var(--gray); }

.about-lead {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.trust-points { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }

.trust-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tp-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.trust-point strong { display: block; font-weight: 700; margin-bottom: 0.2rem; }
.trust-point p { font-size: 0.875rem; color: var(--gray); margin: 0; }

/* ═══════════════════════════════════════
   GALLERY — Auto Slider
   ═══════════════════════════════════════ */
.gallery-section {
  background: #000;
  padding: 4rem 0;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  padding: 0 1.5rem 2.5rem;
}
.gallery-header .section-eyebrow { color: var(--teal); }
.gallery-header .section-title   { color: #fff; }
.gallery-header .section-sub     { color: rgba(255,255,255,0.6); margin: 0 auto; }

.gallery-footer {
  text-align: center;
  padding: 2rem 1.5rem 0;
}
.gallery-note { font-size: 0.9rem; color: rgba(255,255,255,0.45); }
.gallery-note a { color: var(--teal); font-weight: 600; }
.gallery-note a:hover { text-decoration: underline; }

/* Fade mask on edges */
.scroll-container {
  width: 100%;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* The scrolling strip */
@keyframes scroll-right {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.infinite-scroll {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scroll-right 28s linear infinite;
}
.infinite-scroll:hover { animation-play-state: paused; }

/* Individual image cards */
.slide-item {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.slide-item:hover {
  transform: scale(1.06);
  filter: brightness(1.12);
}
.slide-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .slide-item { width: 320px; height: 320px; }
}
@media (min-width: 1024px) {
  .slide-item { width: 380px; height: 380px; }
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ═══════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════ */
.reviews-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
}
.reviews-section .section-eyebrow { color: var(--amber); }
.reviews-section .section-title { color: #fff; }
.reviews-section .section-sub { color: rgba(255,255,255,0.8); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.review-stars { font-size: 1.1rem; color: var(--amber); margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; opacity: 0.95; font-style: italic; }
.review-author { font-size: 0.85rem; font-weight: 700; opacity: 0.75; }

.reviews-cta { text-align: center; }
.reviews-cta .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.reviews-cta .btn-outline:hover { background: #fff; color: var(--teal); }

/* ═══════════════════════════════════════
   SERVICE AREA
   ═══════════════════════════════════════ */
.service-area { background: #fff; }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.area-column h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--teal-light);
  padding-bottom: 0.5rem;
}

.area-column ul { display: flex; flex-direction: column; gap: 0.35rem; }
.area-column li {
  font-size: 0.9rem;
  color: var(--gray);
  padding-left: 0.75rem;
  position: relative;
}
.area-column li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-phone-block { text-align: center; padding-top: 1rem; }

.big-phone {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.big-phone:hover { color: var(--green); }

.contact-phone-block > p { color: var(--gray); margin-bottom: 2rem; }

.social-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
}
.social-link:hover { background: var(--teal-dark); transform: translateY(-2px); color: #fff; }

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,107,138,0.12);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-logo-img { filter: brightness(0) invert(1); } /* white on dark footer */
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-phone {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  transition: color 0.15s;
}
.footer-phone:hover { color: #fff; }

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════
   SECOND VIDEO
   ═══════════════════════════════════════ */
.second-video-section {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.second-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .second-video { height: 100svh; }
}

/* ═══════════════════════════════════════
   TWO PROBLEMS SOLVED
   ═══════════════════════════════════════ */
.problems-solved {
  background: var(--charcoal);
  padding: 4rem 0;
}

.solved-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 3rem;
  align-items: center;
}

.solved-card {
  text-align: center;
  color: #fff;
  padding: 1rem 2rem;
}

.solved-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--amber);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.solved-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solved-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.solved-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.solved-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  margin: 0 auto;
}

.solved-divider {
  width: 2px;
  height: 220px;
  background: rgba(255,255,255,0.15);
  justify-self: center;
}

@media (max-width: 700px) {
  .solved-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .solved-divider {
    width: 60%;
    height: 2px;
    margin: 0 auto;
  }
  .solved-card { padding: 2rem 1rem; }
}

/* ═══════════════════════════════════════
   LEAD CAPTURE FORM
   ═══════════════════════════════════════ */
.lead-form-section { background: var(--charcoal); }
.lead-form-section .section-eyebrow { color: var(--amber); }
.lead-form-section .section-title { color: #fff; }
.lead-form-section .section-sub { color: rgba(255,255,255,0.7); }

.lead-form {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group-full { grid-column: 1 / -1; }

.lead-form .form-group label { color: rgba(255,255,255,0.85); }

.lead-form .form-group input,
.lead-form .form-group select,
.lead-form .form-group textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.lead-form .form-group input::placeholder,
.lead-form .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.lead-form .form-group select option { background: var(--charcoal); color: #fff; }

.lead-form .form-group input:focus,
.lead-form .form-group select:focus,
.lead-form .form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
}

.lead-submit {
  font-size: 1.15rem;
  padding: 1.1rem 2rem;
  background: var(--amber);
  color: var(--charcoal);
  font-weight: 800;
}
.lead-submit:hover { background: #e09610; color: var(--charcoal); }

.lead-form .form-note { color: rgba(255,255,255,0.4); }

@media (max-width: 640px) {
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 1.5rem; }
}

/* ═══════════════════════════════════════
   PROBLEM / AGITATION
   ═══════════════════════════════════════ */
.problem-section { background: var(--charcoal); color: #fff; text-align: center; }
.problem-section .section-eyebrow { color: var(--amber); }
.problem-section .section-title { color: #fff; }

.problem-lead {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 600;
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 3rem;
  color: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
}
.problem-icon { font-size: 2.25rem; display: block; margin-bottom: 0.75rem; }
.problem-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; color: #fff; }
.problem-card p { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

.problem-close {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
}
.problem-close strong { color: var(--amber); }

/* ═══════════════════════════════════════
   FORTRESS COLLECTION
   ═══════════════════════════════════════ */
.fortress-section {
  background: linear-gradient(160deg, #0f2730 0%, #143e4d 100%);
  color: #fff;
  text-align: center;
}
.fortress-section .section-eyebrow { color: var(--amber); }
.fortress-section .section-title { color: #fff; margin-bottom: 0.25rem; }

.fortress-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.fortress-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.82);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.guarantee-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem 1.75rem;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.guarantee-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  background: rgba(255,255,255,0.09);
}
.guarantee-num {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--charcoal);
  background: var(--amber);
  border-radius: 8px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 1rem;
}
.guarantee-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.75rem; color: #fff; }
.guarantee-card p { font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.78); }
.guarantee-card strong { color: #fff; }

/* ═══════════════════════════════════════
   SOCIAL PROOF BAND
   ═══════════════════════════════════════ */
.proof-band {
  background: var(--amber);
  color: var(--charcoal);
  padding: 3rem 0;
}
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.proof-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.proof-number { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; line-height: 1; }
.proof-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.proof-divider { width: 2px; height: 56px; background: rgba(28,43,51,0.25); }

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing-section { background: var(--white); text-align: center; }
.pricing-intro {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.price-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--charcoal); }

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 1rem;
}
.price-amount span { font-size: 1.5rem; font-weight: 800; color: var(--gray); }

.price-desc { font-size: 0.95rem; color: var(--gray); margin-bottom: 1.5rem; }

.price-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.price-list li {
  font-size: 0.92rem;
  color: var(--charcoal);
  padding-left: 1.5rem;
  position: relative;
}
.price-list li::before { content: '•'; position: absolute; left: 0.4rem; color: var(--gray); }
.price-list-check li::before { content: '✔'; color: var(--green); font-weight: 800; left: 0; }

.price-foot { font-size: 0.9rem; color: var(--gray); font-style: italic; margin-top: auto; }

.price-standard { opacity: 0.92; }

.price-fortress {
  position: relative;
  border: 2.5px solid var(--teal);
  box-shadow: 0 12px 40px rgba(26,107,138,0.18);
}
.price-fortress .price-amount { color: var(--teal); }
.price-fortress .price-foot { color: var(--charcoal); font-weight: 600; margin-bottom: 1.5rem; }

.price-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* Assessment form extras */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.assess-prefer { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 0.5rem; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: #fff;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .nav-links.open a {
    font-size: 1.05rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
  }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .area-map { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Hamburger → X animation when nav is open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger span { transition: transform 0.25s, opacity 0.25s; }

@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .hero { min-height: 100svh; }
  .hero-logo { width: min(700px, 95vw); }
  .btn-hero { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem 1.25rem; }
  .trust-badges { gap: 0.5rem; }
  .badge { font-size: 0.78rem; padding: 0.35rem 0.75rem; }
  .nav-phone span:not(.phone-icon) { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-sub { font-size: 0.95rem; }
  .hero-headline { font-size: clamp(1.35rem, 6vw, 1.9rem); }
  .btn-hero-call { width: 100%; font-size: 1.1rem; padding: 1.1rem 1.5rem; }
  .hero-logo { width: min(280px, 65vw); margin-bottom: 0.75rem; }
  .hero-headline { font-size: clamp(1.2rem, 5.5vw, 1.75rem); margin-bottom: 0.5rem; }
  .hero-subhead { font-size: 0.95rem; margin-bottom: 1.25rem; }
  .hero-eyebrow { font-size: 0.8rem; margin-bottom: 0.5rem; }
  .hero-content { padding: 1.25rem 1.25rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-fortress { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .proof-stats { gap: 1.25rem; flex-direction: column; }
  .proof-divider { width: 56px; height: 2px; }
  .problem-card { text-align: center; }
  /* Extra bottom padding so content isn't hidden behind sticky CTA */
  body { padding-bottom: 68px; }
}

/* ── Sticky mobile call bar ── */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 640px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--amber);
    color: #1C2B33;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.01em;
    text-shadow: none;
    border-top: 2px solid var(--amber-dark);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
    /* Safe area for notched iPhones */
    padding-bottom: calc(1.1rem + env(safe-area-inset-bottom));
  }
  .mobile-cta-bar:active { background: var(--amber-dark); }
}

/* Mobile: stack hero columns */
@media (max-width: 768px) {
  .hero-two-col {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.25rem;
    gap: 1.25rem;
  }
  .hero-right {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-left .btn-hero-call {
    display: inline-block;
  }
}

/* ─── Form call CTA + mobile nav phone hide ─── */
.form-or {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.6rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn-call-alt {
  background: var(--green);
  color: #fff;
  text-align: center;
  display: block;
  text-decoration: none;
}
.btn-call-alt:hover { background: var(--green-dark); color: #fff; }

@media (max-width: 640px) {
  .nav-phone { display: none; }
}
