/* =============================================
   VALDEN CONSTRUCTION — STYLESHEET
   ============================================= */

/* ── CUSTOM PROPERTIES ── */
:root {
  /* Colours */
  --navy:          #1B3060;
  --navy-dark:     #0F1E3D;
  --navy-mid:      #243a72;
  --navy-light:    #2d4d8a;
  --orange:        #E87722;
  --orange-light:  #F59A45;
  --orange-dark:   #C4610A;
  --white:         #FFFFFF;
  --off-white:     #F8FAFC;
  --light-bg:      #F1F5F9;
  --border:        #E2E8F0;
  --text:          #1E293B;
  --text-mid:      #475569;
  --text-light:    #64748B;

  /* Typography */
  --font-body:     'Inter', system-ui, sans-serif;
  --font-heading:  'Poppins', system-ui, sans-serif;

  /* Spacing */
  --section-pad:   5rem;
  --container:     1200px;
  --gap:           1.5rem;

  /* Effects */
  --shadow-sm:     0 1px 4px rgba(0,0,0,.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.14);
  --shadow-xl:     0 20px 60px rgba(0,0,0,.18);
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy-dark);
}

/* ── LAYOUT HELPERS ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-pad) 0;
}

.bg-light { background: var(--light-bg); }

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,119,34,.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(232,119,34,.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-label--light { color: var(--orange-light); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.section-sub--light { color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--navy-dark);
  padding: 0.875rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.625rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.logo-text strong {
  font-weight: 700;
  color: var(--orange);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.125rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.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);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg,
      rgba(10, 18, 40, 0.97) 0%,
      rgba(15, 30, 61, 0.93) 40%,
      rgba(27, 48, 96, 0.9) 100%),
    url('https://placehold.co/1920x1080/1B3060/243a72?text=+') center / cover no-repeat;
  overflow: hidden;
}

/* Diagonal stripe texture */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.018) 40px,
    rgba(255,255,255,.018) 80px
  );
  pointer-events: none;
}

/* Orange accent line */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,119,34,.15);
  border: 1px solid rgba(232,119,34,.35);
  color: var(--orange-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.6);
  margin-top: 0.25rem;
  letter-spacing: 0.03em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-size: 1.25rem;
  animation: bounce 2s infinite;
  transition: color var(--transition);
}

.hero-scroll:hover { color: var(--orange-light); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.about-text .section-label { display: block; margin-bottom: 0.5rem; }
.about-text .section-title { margin-bottom: 1.25rem; }

.about-lead {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin: 1.75rem 0 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.value-item i {
  color: var(--orange);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.625rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,119,34,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
}

.service-icon i {
  font-size: 1.25rem;
  color: var(--orange);
  transition: color var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.0625rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

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

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 0.6rem;
  color: var(--orange-dark);
}

.services-cta {
  text-align: center;
  font-size: 1rem;
  color: var(--text-mid);
}

.services-cta a {
  color: var(--orange);
  font-weight: 600;
}

.services-cta a:hover { color: var(--orange-dark); }

/* ══════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════ */
.portfolio { background: var(--navy-dark); }

.portfolio .section-label { color: var(--orange-light); }
.portfolio .section-title { color: var(--white); }
.portfolio .section-sub   { color: rgba(255,255,255,.65); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px 280px;
  gap: 0.875rem;
  margin-bottom: 2.75rem;
}

/* Wide items span 2 columns */
.portfolio-item--wide { grid-column: span 2; }

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.portfolio-btn {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.portfolio-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-btn:hover img,
.portfolio-btn:focus-visible img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 40, 0.88) 0%,
    rgba(10, 18, 40, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-btn:hover .portfolio-overlay,
.portfolio-btn:focus-visible .portfolio-overlay {
  opacity: 1;
}

.portfolio-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
}

.portfolio-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  width: fit-content;
}

.portfolio-label strong {
  font-size: 0.9375rem;
  color: var(--white);
  font-family: var(--font-heading);
}

.portfolio-zoom {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.portfolio-btn:hover .portfolio-zoom {
  background: var(--orange);
  border-color: var(--orange);
}

.portfolio-cta {
  text-align: center;
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.lightbox[style*="display:none"] {
  display: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 25, 0.96);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 3rem 5rem;
}

.lightbox-img-wrap {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}

.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  background: rgba(0,0,0,.4);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

/* Portfolio responsive */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-rows: 240px 240px 240px;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  /* Reset all wide items on mobile, make the featured ones take full row */
  .portfolio-item--wide { grid-column: span 2; }

  .lightbox-inner { padding: 3rem 1rem; }
  .lightbox-prev  { left: 0.75rem; }
  .lightbox-next  { right: 0.75rem; }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 220px);
  }

  .portfolio-item--wide { grid-column: span 1; }
}

/* ══════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════ */
.why-us {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.why-us-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,.015) 60px,
      rgba(255,255,255,.015) 120px
    );
  pointer-events: none;
}

/* Accent border top */
.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.625rem;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.085);
  border-color: rgba(232,119,34,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.why-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.375rem;
  box-shadow: 0 4px 16px rgba(232,119,34,.35);
}

.why-icon i {
  font-size: 1.25rem;
  color: var(--white);
}

.why-card h3 {
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 0.875rem;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,119,34,.25);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-stars i {
  color: #F59E0B;
  font-size: 0.9375rem;
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 600;
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.testimonials-cta {
  text-align: center;
}

/* ══════════════════════════════════════════════
   COVERAGE AREA
══════════════════════════════════════════════ */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.coverage-text .section-label { display: block; margin-bottom: 0.5rem; }
.coverage-text .section-title { margin-bottom: 1.25rem; }

.coverage-lead {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 500;
}

.coverage-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.towns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.town-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.625rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.town-item:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
  background: rgba(232,119,34,.04);
}

.town-item i {
  color: var(--orange);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.map-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.map-card img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
}

.map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.map-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: var(--shadow-md);
}

.map-stat i {
  font-size: 1.5rem;
  color: var(--orange);
  flex-shrink: 0;
}

.map-stat strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.map-stat span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.015) 40px,
    rgba(255,255,255,.015) 80px
  );
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-label { display: block; margin-bottom: 0.5rem; }
.contact-info .section-title { margin-bottom: 1.25rem; }

.contact-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,119,34,.2);
  border: 1px solid rgba(232,119,34,.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-detail-icon i {
  color: var(--orange-light);
  font-size: 0.875rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.45);
  margin-bottom: 0.2rem;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.85);
}

.contact-detail a:hover { color: var(--orange-light); }

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
}

.trust-item i { color: var(--orange-light); font-size: 0.875rem; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.quote-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.required { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(27,48,96,.12);
  background: var(--white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #E53E3E;
}

.field-error {
  font-size: 0.8rem;
  color: #E53E3E;
  font-weight: 500;
  min-height: 1em;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.75rem;
  pointer-events: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9375rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #F0FFF4;
  border: 1px solid #68D391;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.9375rem;
  color: #276749;
}

.form-success i { color: #38A169; font-size: 1.125rem; flex-shrink: 0; }

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer-top {
  background: #09122B;
  padding: 4.5rem 0 3rem;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-logo strong { color: var(--orange); font-weight: 700; }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.875rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--orange-light); }

.footer-contact-list { gap: 0.875rem !important; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-list i {
  color: var(--orange-light);
  font-size: 0.875rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.footer-contact-list a,
.footer-contact-list span {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
}

.footer-contact-list a:hover { color: var(--orange-light); }

/* Footer bottom bar */
.footer-bottom {
  background: #060d1e;
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.35);
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-legal a {
  color: rgba(255,255,255,.35);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--orange-light); }

.footer-legal span { color: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════════
   FLOATING CALL BUTTON
══════════════════════════════════════════════ */
.floating-call {
  display: none; /* shown via media query */
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background: var(--orange);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(232,119,34,.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all var(--transition);
  animation: pulse-shadow 2.5s infinite;
}

.floating-call:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
  color: var(--white);
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 4px 24px rgba(232,119,34,.5); }
  50%       { box-shadow: 0 4px 36px rgba(232,119,34,.75); }
}

/* ══════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 4rem; }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .about-grid,
  .coverage-grid {
    gap: 3rem;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 3.5rem; }

  /* Nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    padding: 2rem;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.125rem;
    padding: 0.875rem 1.5rem;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }

  /* Hero */
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .stat-num { font-size: 1.625rem; }

  .hero-stat-divider { height: 32px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-values {
    grid-template-columns: 1fr 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Why Us */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Coverage */
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .coverage-map { order: -1; }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-wrap {
    padding: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Floating call — show on mobile */
  .floating-call {
    display: flex;
  }

  /* Back to top — adjust for floating call button */
  .back-to-top {
    bottom: 5.5rem;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* ══════════════════════════════════════════════
   ACCESSIBILITY & FOCUS STATES
══════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}
