/* =====================================================
Knight's Seamless Gutters — Main Stylesheet
File: knights_new.css
===================================================== */

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

:root {
  --navy: #0d1b3e;
  --navy-mid: #162550;
  --navy-light: #1e3a6e;
  --gold: #e8a820;
  --gold-dark: #c8900a;
  --blue-accent: #3a7bd5;
  --white: #fff;
  --offwhite: #f4f6fb;
  --grey: #eee;
  --text-dark: #1a1a1a;
  --text-mid: #444;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ---------- BUTTONS ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.25s;
  text-transform: uppercase;
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border: 2px solid var(--white);
  border-radius: 4px;
  transition: background 0.25s, color 0.25s;
  text-transform: uppercase;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-estimate {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 4px;
  margin-top: 10px;
  transition: background 0.25s;
  text-transform: uppercase;
}

.btn-estimate:hover {
  background: var(--gold-dark);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgb(0 0 0 / 40%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo placeholder — remove when actual logo image is swapped in */
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-shield {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--navy);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
}

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

.logo-name {
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Swap in when actual logo image is available */
.logo-img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.25s;
}

.nav-cta:hover {
  background: var(--gold-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

/* ---------- HERO MAIN (IMG_5074 style) ---------- */
.hero-main {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1628 0%, #162550 40%, #1a3a6e 70%, #2a5298 100%);
  overflow: hidden;
}

/* HERO BACKGROUND IMAGE — uncomment & update src in HTML when actual photo is available: */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(10 22 48 / 55%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

/* Hero logo placeholder — remove when actual logo image is swapped in */
.hero-logo-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-shield-icon {
  font-size: 3.5rem;
  color: var(--gold);
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-logo-name {
  font-family: Oswald, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.hero-logo-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-logo-divider span {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Swap in when actual logo image is available */
.hero-logo-img {
  max-height: 350px;
  width: auto;
  margin-bottom: 28px;
  margin-left: -20px;
}

.hero-text {
  max-width: 640px;
}

.hero-headline {
  font-family: Oswald, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

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

.hero-sub {
  font-size: 1rem;
  color: rgb(255 255 255 / 88%);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Quality Badge */
.hero-badge {
  flex-shrink: 0;
}

.badge-inner {
  width: 160px;
  height: 160px;
  background: var(--navy);
  border: 3px solid var(--gold);

  /* clip-path: polygon(50% 0%, 100% 15%, 100% 85%, 50% 100%, 0% 85%, 0% 15%); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px;
  gap: 4px;
}

.badge-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

.badge-line1 {
  font-family: Oswald, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.badge-line2 {
  font-family: Oswald, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.badge-check {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 4px;
}

/* ---------- PRICING STRIP ---------- */
.pricing-strip {
  background: var(--navy);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-strip .dot {
  color: var(--gold);
  font-size: 1.4rem;
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
  background: var(--white);
  padding: 50px 24px 60px;
}

.services-header {
  text-align: center;
  margin-bottom: 36px;
}

.services-label {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px 28px;
  border-radius: 3px;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  border: 1.5px solid #ccd6ea;
  border-radius: 8px;
  padding: 36px 28px;
}

.service-card {
  text-align: center;
  padding: 0 12px;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

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

.service-card h3 {
  font-family: Oswald, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Vertical dividers between service cards */
.service-card:not(:last-child) {
  border-right: 1px solid #dde4f0;
}

/* ---------- HERO WORKERS (IMG_5071 style) ---------- */
.hero-workers {
  position: relative;
  min-height: 480px;
  background: linear-gradient(180deg, #1a2e5a 0%, #0d1b3e 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-workers-overlay {
  position: absolute;
  inset: 0;
  background: rgb(10 22 48 / 45%);
  z-index: 1;
}

/* Workers background image */
.workers-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.workers-top-bar {
  position: relative;
  z-index: 2;
  background: rgb(255 255 255 / 97%);
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.workers-logo-area {
  background: var(--white);
  padding: 16px 28px;
  display: flex;
  align-items: center;
}

/* Workers logo placeholder — remove when actual logo image is swapped in */
.workers-logo-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
}

.workers-shield {
  width: 56px;
  height: 56px;
  background: var(--navy-light);
  color: var(--gold);
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
  border: 2px solid var(--gold);
}

.workers-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.workers-logo-name {
  font-family: Oswald, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
}

.workers-logo-tagline {
  font-size: 0.65rem;
  color: var(--navy-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Swap in when actual logo image is available */
.workers-logo-img {
  height: 60px;
  width: auto;
}

.workers-tagline-box {
  flex: 1;
  background: var(--navy);
  padding: 18px 28px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workers-tagline-main {
  font-family: Oswald, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.workers-tagline-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

.workers-protect-badge {
  position: relative;
  z-index: 2;
  margin: 30px 0 0 40px;
  width: fit-content;
}

.workers-badge-inner {
  background: rgb(10 20 50 / 88%);
  border: 2px solid rgb(255 255 255 / 30%);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
  min-width: 160px;
}

.workers-badge-inner p {
  font-family: Oswald, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
}

.workers-badge-inner .badge-blue {
  color: var(--blue-accent);
}

.badge-stars-sm {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 8px;
}

.workers-spacer {
  flex: 1;
}

/* ---------- FEATURES ROW ---------- */
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 20px;
  border-right: 1px solid rgb(255 255 255 / 10%);
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--navy-mid);
  border: 2px solid var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-title-blue {
  font-family: Oswald, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-accent);
  text-transform: uppercase;
  line-height: 1.2;
}

.feature-text p {
  font-size: 0.8rem;
  color: rgb(255 255 255 / 78%);
  line-height: 1.5;
}

/* ---------- DURABILITY + BRANDS ---------- */
.durability-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 48px auto;
  gap: 24px;
  padding: 0 24px;
}

.durability-left {
  background: var(--navy);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dur-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dur-shield-icon {
  color: var(--gold);
  font-size: 2.2rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.dur-title {
  font-family: Oswald, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

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

.dur-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dur-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.dur-list li i {
  color: var(--gold);
}

.dur-footer {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 80%);
  line-height: 1.6;
  border-top: 1px solid rgb(255 255 255 / 15%);
  padding-top: 16px;
}

.dur-footer .gold {
  color: var(--gold);
  font-weight: 700;
}

.durability-right {
  background: var(--white);
  border: 1.5px solid #ccd6ea;
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brands-title {
  font-family: Oswald, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.2;
}

.brands-sub {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* .brand-logos {
  display: flex;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.brand-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
} */

.brands-note {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
}

/* ---------- WHY CHOOSE KNIGHT ---------- */
.why-section {
  background: var(--offwhite);
  padding: 50px 24px;
  text-align: center;
}

.why-title {
  font-family: Oswald, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: var(--white);
  border: 1.5px solid #ccd6ea;
  border-radius: 8px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.why-card h4 {
  font-family: Oswald, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--navy);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}

.cta-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon-wrap i {
  color: var(--navy);
  font-size: 1.8rem;
}

.cta-headline {
  font-family: Oswald, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-sub {
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 6px 0;
}

.gold-text {
  color: var(--gold);
}

.cta-desc {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 80%);
  line-height: 1.5;
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-call-label {
  font-family: Oswald, sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-phone {
  font-family: Oswald, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ---------- ABOUT US ---------- */
.about-section {
  background: var(--white);
  padding: 60px 24px;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  font-family: Oswald, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ---------- ESTIMATES BAR ---------- */
.estimates-bar {
  background: linear-gradient(90deg, var(--navy) 50%, #c8c8c8 50%);
  display: flex;
  align-items: center;
  padding: 5px 48px;
  gap: 0;
}

.estimates-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.estimates-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
}

.estimates-icon i {
  color: var(--navy);
  font-size: 1.5rem;
}

.estimates-label {
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.estimates-phone {
  font-family: Oswald, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.estimates-knight {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}

.knight-silhouette {
  font-size: 4rem;
  color: var(--navy);
  opacity: 0.5;
}

.estimates-logo-img {
  height: 120px;
  width: auto;
}

.estimates-right {
  flex: 1;
  text-align: right;
  padding-right: 16px;
}

.estimates-pro {
  font-family: Oswald, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.estimates-pro-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 2px solid var(--navy);
  padding-top: 6px;
  margin-top: 4px;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
}

.trust-bar i {
  color: var(--gold);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #080f20;
  color: rgb(255 255 255 / 75%);
  padding: 48px 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-family: Oswald, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

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

.footer-col h4 {
  font-family: Oswald, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  text-transform: uppercase;
}

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

.footer-col a {
  font-size: 0.85rem;
  color: rgb(255 255 255 / 70%);
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding: 18px;
  font-size: 0.8rem;
  color: rgb(255 255 255 / 40%);
}

/* ---------- RESPONSIVE ---------- */
@media (width <= 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero-headline {
    font-size: 2.4rem;
  }
}

@media (width <= 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .hero-logo-placeholder {
    justify-content: center;
  }

  .hero-logo-img {
    height: auto;
    width: auto;
    margin-bottom: 20px;
    margin-left: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badge {
    display: none;
  }

  .hero-headline {
    font-size: 2rem;
  }

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

  .service-card {
    border-right: none !important;
    border-bottom: 1px solid #dde4f0;
    padding-bottom: 20px;
  }

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

  .durability-section {
    grid-template-columns: 1fr;
  }

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

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

  .cta-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .estimates-bar {
    flex-direction: column;
    background: var(--navy);
    text-align: center;
  }

  .estimates-left {
    flex-direction: column;
    align-items: center;
  }

  .estimates-right {
    text-align: center;
    padding: 0;
  }

  .knight-silhouette {
    display: none;
  }

  .estimates-logo-img {
  height: 120px;
  width: auto;
}


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

  .workers-top-bar {
    flex-direction: column;
  }
}

@media (width <= 480px) {
  .features-row {
    grid-template-columns: 1fr;
  }

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

  .hero-headline {
    font-size: 1.6rem;
  }

  .pricing-strip {
    font-size: 0.85rem;
  }
}

/* ========== Brand logos center wrapper (non-invasive) ========== */
.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.brand-logo {
  flex: 1;
  width: 100%;
  min-width: 0;
  height: auto;
  object-fit: contain;
}

@media (width <= 768px) {
  .brand-logos {
    gap: 16px;
  }
}
