/* ============================================================
   WinWater Wichita — Main Stylesheet
   ============================================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #1a2433; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ----- COLOR TOKENS ----- */
:root {
  --navy:   #0d2243;
  --blue:   #1a5cbf;
  --blue2:  #2370e0;
  --red:    #c0392b;
  --gold:   #f0a500;
  --gray:   #f4f6f9;
  --gray2:  #e8ecf2;
  --text:   #1a2433;
  --text2:  #4a5568;
  --white:  #fff;
}

/* ----- UTILITY ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-alt { background: var(--gray); }

.section-tag   { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.section-title { font-size: clamp(24px, 4vw, 36px); font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-sub   { font-size: 17px; color: var(--text2); max-width: 620px; line-height: 1.7; }

.highlight     { color: var(--blue); }
.highlight-red { color: var(--red); }
.highlight-gold{ color: var(--gold); }

.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 4px; font-weight: 700; font-size: 13px;
  letter-spacing: .5px; cursor: pointer; border: 2px solid transparent;
  transition: background-color .15s, border-color .15s, color .15s; text-transform: uppercase;
}
.btn-primary { background: var(--blue);  color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue2); border-color: var(--blue2); }
.btn-dark    { background: var(--navy);  color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: #0a1830; }
.btn-red     { background: var(--red);   color: #fff; border-color: var(--red); }
.btn-red:hover { background: #a93226; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.btn-gold    { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--navy); }
.btn-lg { padding: 14px 30px; font-size: 15px; }

/* ----- TOP BAR ----- */
#topbar { background: var(--navy); color: #8ca8c8; font-size: 13px; padding: 7px 0; }
#topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
#topbar a { color: #c5d5ea; transition: color .15s; }
#topbar a:hover { color: #fff; }
.tb-left, .tb-right { display: flex; gap: 20px; align-items: center; }
.tb-right { gap: 24px; }

/* ----- HEADER ----- */
#site-header {
  background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.07);
  position: sticky; top: 0; z-index: 900;
}
#site-header .container { display: flex; align-items: center; height: 72px; gap: 20px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo { height: 42px; width: auto; display: block; }
.site-logo-footer { height: 38px; }

nav#main-nav { display: flex; align-items: center; gap: 2px; flex: 1; margin-left: 16px; }
nav#main-nav a {
  padding: 8px 11px; font-size: 13.5px; font-weight: 600; color: var(--text);
  border-radius: 4px; transition: color .12s, background-color .12s; white-space: nowrap;
}
nav#main-nav a:hover,
nav#main-nav a.active { color: var(--blue); background: var(--gray); }

.header-ctas { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; }
.header-ctas .btn { padding: 8px 15px; font-size: 12px; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all .3s; border-radius: 2px; }
.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 drawer */
#mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 850; overflow-y: auto; padding: 0 24px 40px;
}
#mobile-nav.open { display: block; }
#mobile-nav a { display: block; padding: 15px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--gray2); color: var(--text); }
#mobile-nav a:hover { color: var(--blue); }
.mn-ctas { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mn-ctas .btn { justify-content: center; padding: 14px; font-size: 14px; }

/* ----- PAGE HERO (inner pages) ----- */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 58px 0;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,24,41,.88), rgba(6,24,41,.56)),
    var(--page-hero-image, none) center / cover no-repeat;
  opacity: 1;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-tag { color: var(--gold); }
.page-hero h1 { font-size: clamp(28px, 5vw, 46px); font-weight: 900; color: #fff; margin-bottom: 10px; line-height: 1.08; }
.page-hero p  { font-size: 17px; color: #d7e4f0; max-width: 680px; }

.page-hero.products-hero { --page-hero-image: url('../images/hero-products.jpg'); }
.page-hero.contractors-hero { --page-hero-image: url('../images/hero-contractors.jpg'); }
.page-hero.municipal-hero { --page-hero-image: url('../images/hero-municipal.jpg'); }
.page-hero.delivery-hero { --page-hero-image: url('../images/yard-main.jpg'); }
.page-hero.service-hero { --page-hero-image: url('../images/hero-service-area.jpg'); }
.page-hero.about-hero { --page-hero-image: url('../images/hero-about.jpg'); }
.page-hero.contact-hero { --page-hero-image: url('../images/hero-contact.jpg'); }
.page-hero.quote-hero { --page-hero-image: url('../images/hero-quote.jpg'); }
.page-hero.customers-hero { --page-hero-image: url('../images/hero-customers.jpg'); }

/* ----- TRUST BAR ----- */
#trust-bar { background: var(--blue); padding: 16px 0; }
#trust-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 13px; font-weight: 600; }
.trust-item svg { opacity: .85; flex-shrink: 0; }

/* ----- HOME HERO ----- */
#home-hero { position: relative; min-height: 560px; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-original.jpg') center 55% / cover no-repeat;
  opacity: .32;
}
.hero-content { position: relative; z-index: 1; padding: 80px 0; max-width: 680px; }
.hero-tag  { display: inline-block; background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 2px; padding: 4px 10px; border-radius: 3px; margin-bottom: 16px; text-transform: uppercase; }
.hero-title { font-size: clamp(34px, 6vw, 60px); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 18px; }
.hero-title span { color: var(--gold); }
.hero-sub   { font-size: 17px; color: #c5d5ea; margin-bottom: 32px; line-height: 1.65; }
.hero-btns  { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; }
.badge { display: flex; align-items: center; gap: 8px; color: #c5d5ea; font-size: 13px; font-weight: 600; }
.badge svg { opacity: .8; flex-shrink: 0; }

/* ----- CATEGORY GRID ----- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.cat-card {
  background: var(--navy); border-radius: 8px; padding: 28px 16px; text-align: center;
  cursor: pointer; transition: all .2s; color: #fff; border: 2px solid transparent;
}
.cat-card:hover { background: var(--blue); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,92,191,.3); }
.cat-card.emergency { background: var(--red); }
.cat-card.emergency:hover { background: #a93226; }
.cat-icon { font-size: 34px; margin-bottom: 12px; }
.cat-name { font-size: 13px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; line-height: 1.3; }
.cat-link { font-size: 12px; opacity: .7; text-decoration: underline; }

/* ----- FEATURE ROW ----- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img { border-radius: 10px; overflow: hidden; }
.feature-img img { width: 100%; height: 400px; object-fit: cover; display: block; }

.feature-points { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.fp { display: flex; gap: 14px; align-items: flex-start; }
.fp-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.fp-icon svg { color: #fff; }
.fp h4 { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 2px; }
.fp p  { font-size: 14px; color: var(--text2); line-height: 1.6; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ----- PHOTO GRID ----- */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 250px 250px; gap: 12px; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.pg-wide { grid-column: span 2; }

/* ----- CUSTOMER CARDS ----- */
.customer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.cust-card {
  background: #fff; border-radius: 10px; padding: 30px; border: 1.5px solid var(--gray2);
  transition: box-shadow .2s, transform .2s;
}
.cust-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-2px); }
.cust-icon { font-size: 36px; margin-bottom: 14px; }
.cust-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.cust-card p  { font-size: 14px; color: var(--text2); line-height: 1.7; }
.cust-card ul { margin-top: 12px; padding-left: 16px; list-style: disc; font-size: 14px; color: var(--text2); }
.cust-card ul li { margin-bottom: 4px; }

/* ----- PRODUCT CARDS ----- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 22px; }
.prod-card {
  background: #fff; border-radius: 10px; padding: 30px; border: 1.5px solid var(--gray2);
  transition: all .2s;
}
.prod-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-2px); }
.prod-card-icon { font-size: 38px; margin-bottom: 14px; }
.prod-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.prod-card p  { font-size: 14px; color: var(--text2); margin-bottom: 14px; line-height: 1.7; }
.prod-card ul { padding-left: 16px; list-style: disc; font-size: 13px; color: var(--text2); }
.prod-card ul li { margin-bottom: 4px; }

/* ----- DELIVERY CARDS ----- */
.delivery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.del-card { background: #fff; border-radius: 10px; padding: 28px; border-left: 4px solid var(--blue); box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.del-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.del-card p  { font-size: 14px; color: var(--text2); line-height: 1.7; }
.del-card p + p { margin-top: 10px; }

/* ----- SERVICE AREA ----- */
.map-section { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.service-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.svc-item { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--text); }
.svc-dot { width: 9px; height: 9px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
.map-card { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.map-card iframe { display: block; width: 100%; height: 400px; border: 0; }

.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.city-pill { background: var(--gray); border-radius: 6px; padding: 12px 16px; font-weight: 600; font-size: 14px; color: var(--navy); }

/* ----- TESTIMONIALS ----- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.testi { background: #fff; border-radius: 10px; padding: 28px; border: 1.5px solid var(--gray2); }
.testi-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.testi-text  { font-size: 15px; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.testi-author { font-weight: 800; color: var(--navy); font-size: 14px; }
.testi-org    { font-size: 13px; color: var(--text2); margin-top: 2px; }

/* ----- BRANDS ----- */
.brands { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 36px; padding: 20px 0; }
.brand-logo { opacity: .6; transition: opacity .2s; max-height: 52px; width: auto; }
.brand-logo:hover { opacity: 1; }

/* ----- ABOUT GALLERY ----- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid img { border-radius: 8px; height: 220px; width: 100%; object-fit: cover; }

/* ----- CONTACT ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.contact-info h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.cinfo-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.cinfo-icon { width: 44px; height: 44px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cinfo-icon svg { color: #fff; }
.cinfo-text h4 { font-weight: 700; color: var(--navy); margin-bottom: 3px; font-size: 15px; }
.cinfo-text p  { font-size: 14px; color: var(--text2); line-height: 1.6; }
.cinfo-text a  { color: var(--blue); font-weight: 700; }
.map-embed { margin-top: 24px; border-radius: 10px; overflow: hidden; border: 1px solid var(--gray2); }
.map-embed iframe { display: block; width: 100%; height: 260px; border: 0; }

/* ----- FORMS ----- */
.form-card { background: #fff; border-radius: 12px; padding: 38px; box-shadow: 0 4px 28px rgba(0,0,0,.09); }
.form-card h3 { font-size: 21px; font-weight: 800; color: var(--navy); margin-bottom: 26px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray2); border-radius: 6px; font-size: 15px; color: var(--text); transition: border-color .2s; background: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; font-size: 15px; padding: 14px; border: none; }
.form-note { font-size: 12px; color: var(--text2); margin-top: 12px; text-align: center; line-height: 1.6; }
.form-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: 6px; padding: 16px; color: #2e7d32; font-weight: 600; margin-top: 16px; text-align: center; }

/* ----- CTA BANNER ----- */
.cta-banner { background: var(--navy); padding: 68px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-banner p  { font-size: 17px; color: #c5d5ea; margin-bottom: 32px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ----- LINECARD CALLOUT ----- */
.linecard-box { background: var(--gray); border-radius: 12px; padding: 40px; text-align: center; margin-top: 48px; }
.linecard-box h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.linecard-box p  { color: var(--text2); margin-bottom: 24px; }
.linecard-img { max-width: 380px; margin: 28px auto 0; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,.12); }

/* ----- INFO BOX ----- */
.info-box { background: var(--gray); border-radius: 8px; padding: 20px 24px; }
.info-box p { font-size: 15px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.info-box span { font-size: 14px; color: var(--text2); }

/* ----- FOOTER ----- */
footer { background: #0a1a2e; color: #8ca0bc; padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .site-logo { opacity: .9; }
.footer-brand p { font-size: 13px; margin-top: 16px; line-height: 1.8; color: #8ca0bc; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #c5d5ea; margin-bottom: 16px; }
.footer-col a  { display: block; font-size: 13px; margin-bottom: 9px; color: #8ca0bc; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e3050; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-bottom a { color: #8ca0bc; margin-left: 16px; }
.footer-bottom a:hover { color: #fff; }
.footer-links { display: flex; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  nav#main-nav, .header-ctas .btn:not(.btn-call) { display: none; }
  .hamburger { display: flex; }

  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .feature-img img { height: 300px; }

  .map-section   { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .photo-grid    { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .pg-wide       { grid-column: span 1; }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .hero-btns { flex-direction: column; }
  .cat-grid  { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-grid img { height: 220px; }
  .form-row  { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .tb-left  { display: none; }
  #trust-bar .trust-item { font-size: 11px; }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 200px !important;
    padding: 42px 0 !important;
  }
  .page-hero h1 {
    font-size: clamp(28px, 9vw, 38px) !important;
  }
}

/* Minimal manufacturer logo link styling */
.brands .brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.brands .brand-link:hover .brand-logo {
  opacity: 1;
}

/* Regional coverage grouped cards */
.coverage-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.coverage-card {
  background: #fff;
  border: 1px solid var(--gray2, #d8e2ec);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(6,24,41,.07);
}
.coverage-card h3 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}
.coverage-card p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.coverage-tags span {
  display: inline-flex;
  align-items: center;
  background: var(--gray, #f3f6fa);
  border: 1px solid var(--gray2, #d8e2ec);
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 700;
}
.brands .brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.brands .brand-link:hover .brand-logo {
  opacity: 1;
}
@media (max-width: 900px) {
  .coverage-groups { grid-template-columns: 1fr; }
}


/* ============================================================
   RESPONSIVE POLISH PASS - laptops, desktop, tablet, mobile
   ============================================================ */

/* Global overflow protection */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, svg, video, iframe {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

/* Keep containers comfortable across laptop widths */
.container {
  width: 100%;
  max-width: 1200px;
}

/* Prevent long URLs/emails or CTA text from breaking layout */
p, h1, h2, h3, h4, a, span, li {
  overflow-wrap: break-word;
}

/* Better laptop/tablet nav behavior */

@media (max-width: 1100px) {
  nav#main-nav a {
    font-size: 12px;
    padding: 7px 7px;
  }
  .header-ctas .btn {
    padding: 7px 9px;
    font-size: 11px;
  }
}
@media (max-width: 1180px) {
  nav#main-nav a {
    font-size: 12.5px;
    padding: 8px 8px;
  }

  .header-ctas .btn {
    padding: 8px 10px;
    font-size: 11.5px;
  }

  .site-logo {
    height: 38px;
  }
}

/* Tablet breakpoint */
@media (max-width: 960px) {
  #site-header .container {
    height: 68px;
  }

  #mobile-nav {
    top: 68px;
  }

  .section {
    padding: 58px 0;
  }

  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  #home-hero {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0;
    max-width: 680px;
  }

  .hero-title {
    font-size: clamp(34px, 7vw, 52px);
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-badges {
    gap: 14px;
  }

  .badge {
    flex: 1 1 220px;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }

  .feature-row.reverse > * {
    direction: ltr;
  }

  .feature-img img {
    height: 320px;
  }

  .customer-grid,
  .prod-grid,
  .coverage-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .contact-grid,
  .quote-grid,
  .map-section {
    grid-template-columns: 1fr !important;
  }
}

/* Large phones / small tablets */
@media (max-width: 720px) {
  .topbar,
  #topbar .container,
  .tb-left,
  .tb-right {
    gap: 8px;
  }

  #topbar .container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .section {
    padding: 48px 0;
  }

  .page-hero {
    min-height: 210px !important;
    padding: 42px 0 !important;
  }

  .page-hero h1 {
    font-size: clamp(30px, 10vw, 40px) !important;
  }

  .page-hero p {
    font-size: 15.5px;
  }

  .hero-btns,
  .btn-row,
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn,
  .btn-row .btn,
  .cta-btns .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .customer-grid,
  .prod-grid,
  .coverage-groups,
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .photo-grid img,
  .pg-wide {
    grid-column: auto !important;
    height: 230px;
  }

  .brands {
    gap: 22px;
  }

  .brand-logo {
    max-width: 140px;
    max-height: 48px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  #site-header .container {
    gap: 10px;
  }

  .site-logo {
    height: 34px;
  }

  .header-ctas .btn-call {
    display: none;
  }

  .hero-content {
    padding: 50px 0;
  }

  .hero-title {
    font-size: clamp(32px, 11vw, 42px);
  }

  .hero-sub,
  .section-sub {
    font-size: 15.5px;
  }

  .section-title {
    font-size: clamp(24px, 8vw, 32px);
  }

  .feature-img img {
    height: 240px;
  }

  .cust-card,
  .prod-card,
  .coverage-card,
  .form-card,
  .contact-info {
    padding: 22px;
  }

  .fp {
    gap: 10px;
  }

  .fp-icon {
    width: 32px;
    height: 32px;
  }

  .cta-banner h2 {
    font-size: clamp(26px, 9vw, 36px);
  }

  .map-embed iframe,
  .map-card iframe {
    height: 300px;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  .site-logo {
    height: 30px;
  }

  .hero-title {
    font-size: 30px;
  }

  .cat-card,
  .cust-card,
  .prod-card {
    padding: 20px 14px;
  }
}

/* About page team cards */
.team-grid .team-card {
  text-align: center;
}
.team-grid .team-card .cust-icon {
  margin-left: auto;
  margin-right: auto;
}
.team-grid .team-card h3 {
  margin-bottom: 6px;
}
.team-grid .team-card p {
  margin: 0;
}




/* IPHONE MOBILE DROPDOWN FINAL FORCE FIX
   Highest-specificity mobile menu CTA styling.
   Fixes dark text on dark background and low-contrast dropdown buttons in iPhone Safari.
*/
@media screen and (max-width: 1020px) {
  body nav#mobile-nav.open .mn-ctas,
  body nav#mobile-nav .mn-ctas {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin: 26px 0 30px !important;
    padding: 0 !important;
  }

  body nav#mobile-nav.open .mn-ctas > a,
  body nav#mobile-nav .mn-ctas > a,
  body nav#mobile-nav.open .mn-ctas > a.btn,
  body nav#mobile-nav .mn-ctas > a.btn {
    display: flex !important;
    width: 100% !important;
    min-height: 56px !important;
    padding: 16px 18px !important;
    border-radius: 8px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    letter-spacing: .2px !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    text-transform: none !important;
    box-shadow: 0 5px 14px rgba(13,34,67,.16) !important;
    opacity: 1 !important;
  }

  /* Phone: blue button, white text */
  body nav#mobile-nav.open .mn-ctas > a.btn-primary,
  body nav#mobile-nav .mn-ctas > a.btn-primary,
  body nav#mobile-nav.open .mn-ctas > a.btn-primary:link,
  body nav#mobile-nav.open .mn-ctas > a.btn-primary:visited {
    background-color: #1a5cbf !important;
    background-image: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border: 3px solid #1a5cbf !important;
  }

  /* Request Quote: gold button, navy text for maximum readability */
  body nav#mobile-nav.open .mn-ctas > a.btn-dark,
  body nav#mobile-nav .mn-ctas > a.btn-dark,
  body nav#mobile-nav.open .mn-ctas > a.btn-dark:link,
  body nav#mobile-nav.open .mn-ctas > a.btn-dark:visited {
    background-color: #f0a500 !important;
    background-image: none !important;
    color: #0d2243 !important;
    -webkit-text-fill-color: #0d2243 !important;
    border: 3px solid #f0a500 !important;
  }

  /* Shop: white button, blue border, navy text */
  body nav#mobile-nav.open .mn-ctas > a.btn-outline-blue,
  body nav#mobile-nav .mn-ctas > a.btn-outline-blue,
  body nav#mobile-nav.open .mn-ctas > a.btn-outline-blue:link,
  body nav#mobile-nav.open .mn-ctas > a.btn-outline-blue:visited {
    background-color: #ffffff !important;
    background-image: none !important;
    color: #0d2243 !important;
    -webkit-text-fill-color: #0d2243 !important;
    border: 3px solid #1a5cbf !important;
  }

  body nav#mobile-nav.open .mn-ctas > a:hover,
  body nav#mobile-nav.open .mn-ctas > a:focus,
  body nav#mobile-nav .mn-ctas > a:hover,
  body nav#mobile-nav .mn-ctas > a:focus {
    transform: none !important;
    filter: brightness(.98) !important;
    outline: 3px solid rgba(26,92,191,.25) !important;
    outline-offset: 2px !important;
  }
}

@media screen and (max-width: 420px) {
  body nav#mobile-nav.open .mn-ctas > a,
  body nav#mobile-nav .mn-ctas > a,
  body nav#mobile-nav.open .mn-ctas > a.btn,
  body nav#mobile-nav .mn-ctas > a.btn {
    min-height: 54px !important;
    font-size: 16px !important;
    padding: 15px 12px !important;
  }
}
