/*
Theme Name: Mecca Home Inspections
Theme URI: https://www.meccahomeinspections.com
Author: Mecca Home Inspections
Description: A custom WordPress theme for Mecca Home Inspections serving Illinois and Wisconsin.
Version: 2.5-mobile-flaw-fixed
Text Domain: mecca-home-inspections
*/

:root{
 --navy:#0f172a;
 --navy-2:#111827;
 --gold:#d4af37;
 --gold-soft:#f8edc2;
 --red:#9f1d1d;
 --red-dark:#7f1717;
 --ink:#1f2937;
 --muted:#5b6472;
 --light:#f4f6f8;
 --white:#ffffff;
 --border:#e5e7eb;
 --shadow:0 12px 30px rgba(15,23,42,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
 margin:0;
 font-family:Arial, Helvetica, sans-serif;
 color:var(--ink);
 background:#fff;
 line-height:1.65;
}
a{color:inherit}
img{max-width:100%;height:auto;display:block}

.site-header{
 position:sticky;
 top:0;
 z-index:50;
 background:rgba(15,23,42,.96);
 color:white;
 border-bottom:4px solid var(--gold);
 box-shadow:0 6px 20px rgba(0,0,0,.18);
}
.nav-wrap{
 width:min(1180px, 92%);
 margin:0 auto;
 min-height:92px;
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap:24px;
}
.logo img{max-height:76px;width:auto;border-radius:8px}
.nav{display:flex;align-items:center;gap:18px;flex-wrap:wrap;justify-content:flex-end}
.nav a{
 color:white;
 text-decoration:none;
 font-weight:700;
 font-size:.96rem;
 opacity:.95;
}
.nav a:hover{color:var(--gold)}
.nav .nav-cta{
 background:var(--red);
 padding:10px 16px;
 border-radius:999px;
 box-shadow:0 5px 14px rgba(0,0,0,.18);
}
.nav .nav-cta:hover{background:var(--gold);color:var(--navy)}

.hero{
 color:white;
 background:
  linear-gradient(90deg, rgba(15,23,42,.96) 0%, rgba(15,23,42,.9) 52%, rgba(15,23,42,.66) 100%),
  radial-gradient(circle at top right, rgba(212,175,55,.32), transparent 34%),
  var(--navy-2);
 padding:78px 0 64px;
}
.container{width:min(1180px, 92%);margin:0 auto}
.hero-grid{
 display:grid;
 grid-template-columns:.82fr 1.18fr;
 gap:34px;
 align-items:center;
}
.kicker{
 display:inline-flex;
 align-items:center;
 gap:8px;
 color:var(--gold-soft);
 font-weight:800;
 letter-spacing:.08em;
 text-transform:uppercase;
 font-size:.82rem;
 margin-bottom:14px;
}
.kicker:before{content:"";width:34px;height:3px;background:var(--gold);border-radius:999px}
.hero h1{
 font-size:clamp(2.35rem, 5vw, 4.25rem);
 line-height:1.04;
 margin:0 0 18px;
 letter-spacing:-.045em;
}
.hero p{font-size:1.16rem;max-width:680px;margin:0 0 18px;color:#e8edf5}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
.btn{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 min-height:50px;
 padding:14px 24px;
 border-radius:10px;
 background:var(--red);
 color:white;
 text-decoration:none;
 font-weight:800;
 box-shadow:0 10px 24px rgba(0,0,0,.22);
}
.btn:hover{background:var(--red-dark)}
.btn.secondary{background:transparent;border:2px solid var(--gold);color:var(--gold-soft)}
.btn.secondary:hover{background:var(--gold);color:var(--navy)}
.trust-bar{
 margin-top:26px;
 display:grid;
 grid-template-columns:repeat(3, minmax(0,1fr));
 gap:12px;
 max-width:760px;
}
.trust-item{
 border:1px solid rgba(255,255,255,.16);
 background:rgba(255,255,255,.07);
 border-radius:12px;
 padding:14px;
 font-weight:700;
 color:#fff;
}
.hero-card{
 background:rgba(255,255,255,.08);
 border:1px solid rgba(255,255,255,.14);
 border-radius:22px;
 padding:10px;
 box-shadow:var(--shadow);
 transform:scale(1.08);
 transform-origin:center;
}
.hero-card img{
 width:100%;
 min-height:520px;
 object-fit:cover;
 border-radius:18px;
 box-shadow:0 14px 34px rgba(0,0,0,.32);
}
.caption-card{
 margin:-34px 18px 0;
 position:relative;
 background:white;
 color:var(--ink);
 border-radius:14px;
 padding:16px 18px;
 box-shadow:var(--shadow);
 border-left:5px solid var(--gold);
}
.caption-card strong{display:block;font-size:1.05rem;color:var(--navy)}
.caption-card span{display:block;color:var(--muted);font-size:.95rem}

.section{padding:76px 0}
.section.light{background:var(--light)}
.section h2{
 font-size:clamp(2rem, 4vw, 3rem);
 line-height:1.12;
 letter-spacing:-.035em;
 color:var(--navy);
 margin:0 0 14px;
}
.section-intro{max-width:760px;color:var(--muted);font-size:1.08rem;margin:0 0 30px}
.cards{
 display:grid;
 grid-template-columns:repeat(4, 1fr);
 gap:20px;
}
.card{
 background:white;
 padding:26px;
 border-radius:16px;
 box-shadow:0 4px 18px rgba(15,23,42,.08);
 border:1px solid var(--border);
 border-top:5px solid var(--gold);
}
.card h3{margin:0 0 10px;color:var(--navy);font-size:1.18rem}
.card p{margin:0;color:var(--muted)}

.about{
 display:grid;
 grid-template-columns:.94fr 1.06fr;
 gap:46px;
 align-items:center;
}
.photo-grid{
 display:grid;
 grid-template-columns:1fr 1fr;
 gap:16px;
}
.photo-grid img{
 width:100%;
 aspect-ratio:1 / 1;
 object-fit:cover;
 border-radius:16px;
 box-shadow:var(--shadow);
}
.photo-grid img:first-child{grid-column:1 / -1;aspect-ratio:16 / 10}
.badges{display:flex;gap:10px;flex-wrap:wrap;margin:22px 0}
.badge{
 background:var(--gold-soft);
 color:#6b4b00;
 font-weight:800;
 border-radius:999px;
 padding:8px 12px;
 font-size:.92rem;
}
.about p{font-size:1.06rem;color:var(--muted)}
.highlight{color:var(--red);font-weight:800}

.process{
 display:grid;
 grid-template-columns:repeat(3,1fr);
 gap:18px;
 margin-top:28px;
}
.step{
 background:white;
 border:1px solid var(--border);
 border-radius:16px;
 padding:24px;
 box-shadow:0 4px 18px rgba(15,23,42,.07);
}
.step-number{
 width:38px;height:38px;border-radius:50%;
 background:var(--red);color:white;
 display:flex;align-items:center;justify-content:center;
 font-weight:900;margin-bottom:12px;
}
.step h3{margin:0 0 8px;color:var(--navy)}
.step p{margin:0;color:var(--muted)}

.pricing-table-wrap{overflow-x:auto;margin-top:30px;border-radius:16px;box-shadow:var(--shadow);background:white}
.pricing-table{width:100%;border-collapse:collapse;min-width:620px;background:white;overflow:hidden}
.pricing-table th{
 background:var(--navy);
 color:white;
 padding:18px 20px;
 text-align:left;
 font-size:1.05rem;
}
.pricing-table td{padding:16px 20px;border-bottom:1px solid var(--border);font-size:1.02rem}
.pricing-table tr:nth-child(even){background:#fafafa}
.pricing-note{color:var(--muted);margin-top:16px;font-size:.98rem}

.cta-panel{
 background:linear-gradient(135deg, var(--navy), #1f2937);
 color:white;
 border-radius:22px;
 padding:42px;
 display:grid;
 grid-template-columns:1fr auto;
 gap:24px;
 align-items:center;
 box-shadow:var(--shadow);
}
.cta-panel h2{color:white;margin:0 0 10px}
.cta-panel p{margin:0;color:#e5e7eb;font-size:1.08rem}
.phone{
 color:var(--gold-soft);
 font-size:clamp(1.5rem, 4vw, 2.3rem);
 font-weight:900;
 text-decoration:none;
 white-space:nowrap;
}
.contact-details{margin-top:28px;display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.contact-card{background:white;border:1px solid var(--border);border-radius:14px;padding:20px;box-shadow:0 4px 18px rgba(15,23,42,.07)}
.contact-card strong{display:block;color:var(--navy);margin-bottom:6px}.contact-card a{text-decoration:none;color:var(--red);font-weight:800}

footer{background:#0b0b0b;color:white;text-align:center;padding:34px 8%}footer p{margin:6px 0;color:#d1d5db}

@media(max-width:980px){
 .hero-grid,.about,.cta-panel{grid-template-columns:1fr}
 .hero-card{transform:none}
 .hero-card img{min-height:auto}
 .cards{grid-template-columns:repeat(2,1fr)}
 .process,.contact-details,.trust-bar{grid-template-columns:1fr}
 .caption-card{margin:14px 0 0}
}
@media(max-width:720px){
 .hero-card{margin-left:-4%;margin-right:-4%}
 .nav-wrap{min-height:auto;padding:14px 0;align-items:flex-start;flex-direction:column}
 .logo img{max-height:66px}
 .nav{width:100%;gap:12px;justify-content:flex-start}
 .nav a{font-size:.92rem}.nav .nav-cta{padding:8px 12px}
 .hero{padding:46px 0 42px}
 .section{padding:54px 0}
 .cards{grid-template-columns:1fr}
 .photo-grid{grid-template-columns:1fr}
 .cta-panel{padding:28px}
 .hero-actions .btn{width:100%}
}

.page-hero{
 color:white;
 background:linear-gradient(135deg, rgba(15,23,42,.96), rgba(127,23,23,.88)), var(--navy);
 padding:70px 0 58px;
}
.page-hero h1{font-size:clamp(2.4rem,5vw,4rem);line-height:1.05;margin:0 0 14px;letter-spacing:-.04em}
.page-hero p{font-size:1.16rem;color:#e8edf5;max-width:760px;margin:0}
.form-layout{display:grid;grid-template-columns:1fr 340px;gap:26px;align-items:start}
.form-card,.sidebar-card{background:white;border:1px solid var(--border);border-radius:18px;box-shadow:var(--shadow);padding:30px}
.inspection-form h2{font-size:1.45rem;margin:28px 0 14px;color:var(--navy);letter-spacing:-.02em}.inspection-form h2:first-of-type{margin-top:0}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.form-grid .full{grid-column:1 / -1}
.inspection-form label{display:block;font-weight:800;color:var(--navy);font-size:.96rem}
.inspection-form input,.inspection-form select,.inspection-form textarea{
 width:100%;margin-top:7px;border:1px solid #cfd6df;border-radius:10px;padding:13px 14px;font:inherit;color:var(--ink);background:#fff;
}
.inspection-form input:focus,.inspection-form select:focus,.inspection-form textarea:focus{outline:3px solid rgba(212,175,55,.28);border-color:var(--gold)}
.form-submit{border:0;margin-top:24px;cursor:pointer;font-size:1rem}
.form-alert{border-radius:12px;padding:14px 16px;margin-bottom:22px;font-weight:800}
.form-alert.success{background:#e9f9ef;color:#166534;border:1px solid #bbf7d0}.form-alert.error{background:#fef2f2;color:#991b1b;border:1px solid #fecaca}
.hp-field{position:absolute;left:-9999px;opacity:0;height:0;overflow:hidden}.sidebar-card{position:sticky;top:126px}.sidebar-card h2{font-size:1.6rem;margin:0 0 10px}.sidebar-card p{color:var(--muted)}.sidebar-card a{color:var(--red);font-weight:800;text-decoration:none}.cta-actions{display:flex;gap:16px;align-items:center;flex-wrap:wrap}.cta-actions .btn{box-shadow:none}
@media(max-width:980px){.form-layout{grid-template-columns:1fr}.sidebar-card{position:static}.cta-actions{align-items:flex-start;flex-direction:column}}
@media(max-width:720px){.form-card,.sidebar-card{padding:22px}.form-grid{grid-template-columns:1fr}.page-hero{padding:48px 0 42px}}


.logo{
 display:flex;
 align-items:center;
 gap:12px;
 text-decoration:none;
}

.logo-text{
 font-size:1.4rem;
 font-weight:700;
 color:#fff;
 letter-spacing:.3px;
}

@media (max-width:768px){
 .logo-text{
   font-size:1rem;
 }
}

/* Better mobile fit for Home Inspection Pricing table */
.pricing-table{min-width:0;table-layout:auto;}
.pricing-table th,.pricing-table td{word-break:normal;}

@media (max-width: 640px){
  #pricing.section{padding-left:0;padding-right:0;}
  #pricing .container{padding-left:12px;padding-right:12px;}
  .pricing-table-wrap{margin-top:18px;border-radius:12px;overflow:hidden;box-shadow:0 8px 22px rgba(15,23,42,.10);}
  .pricing-table{width:100%;min-width:0;font-size:13px;}
  .pricing-table th{padding:10px 8px;font-size:.78rem;line-height:1.15;}
  .pricing-table td{padding:9px 8px;font-size:.82rem;line-height:1.15;}
  .pricing-table th:first-child,.pricing-table td:first-child{width:58%;}
  .pricing-table th:last-child,.pricing-table td:last-child{width:42%;text-align:right;white-space:nowrap;}
  .pricing-note{font-size:.82rem;line-height:1.35;margin-top:10px;}
}

@media (max-width: 380px){
  .pricing-table th{font-size:.72rem;padding:8px 6px;}
  .pricing-table td{font-size:.76rem;padding:8px 6px;}
}

/* Separate Sample Report page */
.sample-report-hero .hero-actions {
  margin-top: 24px;
}
.sample-report-container {
  max-width: 980px;
}
.sample-note {
  background: #eef6ff;
  border-left: 5px solid #0d2b45;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 22px;
}
.sample-report-pages {
  display: grid;
  gap: 26px;
}
.report-page {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  overflow: hidden;
}
.report-page img {
  display: block;
  width: 100%;
  height: auto;
}
.report-page figcaption {
  text-align: center;
  font-weight: 700;
  padding: 10px;
  background: #f7f7f7;
}
@media (max-width: 768px) {
  .sample-report-container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .sample-report-pages {
    gap: 18px;
  }
  .report-page {
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
  }
  .report-page figcaption {
    font-size: 13px;
    padding: 8px;
  }
}


/* Separate mobile-friendly sample report page */
.sample-report-container {
  max-width: 900px;
}

.sample-report-pages {
  display: grid;
  gap: 24px;
}

.report-page {
  margin: 0;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 8px 26px rgba(0,0,0,.12);
}

.report-page img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.report-page figcaption {
  text-align: center;
  font-size: 14px;
  color: #566;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .sample-report-hero h1 {
    font-size: 30px;
  }

  .sample-report-container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .report-page {
    padding: 4px;
    border-radius: 8px;
  }

  .report-page figcaption {
    font-size: 12px;
  }
}


/* Compact mobile pricing table - fits on phone screen */
.pricing-table {
  min-width: 0 !important;
  width: 100% !important;
  table-layout: fixed !important;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  width: 62% !important;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  width: 38% !important;
  text-align: right !important;
}

@media (max-width: 768px) {
  #pricing .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .pricing-table-wrap {
    overflow-x: hidden !important;
    border-radius: 10px !important;
    margin-top: 14px !important;
  }

  .pricing-table {
    display: table !important;
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
  }

  .pricing-table th {
    font-size: 11px !important;
    padding: 8px 5px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .pricing-table td {
    font-size: 11px !important;
    padding: 7px 5px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .pricing-note {
    font-size: 12px !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 390px) {
  .pricing-table th,
  .pricing-table td {
    font-size: 10px !important;
    padding: 6px 4px !important;
  }
}


/* Remove duplicate About section image display */
.single-about-photo {
  display: block !important;
}

.single-about-photo img {
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 auto !important;
  display: block !important;
  height: auto !important;
  object-fit: contain !important;
}

.single-about-photo img:nth-child(n+2) {
  display: none !important;
}

@media (max-width: 768px) {
  .single-about-photo img {
    max-width: 100% !important;
  }
}


/* Final duplicate image cleanup */
.photo-grid {
  display: none !important;
}

.single-about-photo {
  display: block !important;
  margin: 18px auto !important;
  text-align: center !important;
}

.single-about-photo img {
  display: block !important;
  width: 100% !important;
  max-width: 560px !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

.single-about-photo img:nth-of-type(n+2),
.about img[src*="about-fire-scene"],
.about img[src*="about-fire-dog"] {
  display: none !important;
}


/* Strong duplicate ad image fix */
.photo-grid {
  display: none !important;
}

img[src*="about-firefighter-2"],
img[src*="about-fire-scene"],
img[src*="about-fire-dog"],
img[src*="9311294F"],
img[src*="446B-4D5E"],
img[src*="a_tall_vertical_advertisement"] {
  display: none !important;
}

.single-about-photo img[src*="about-firefighter-2"] {
  display: block !important;
}

.single-about-photo {
  display: block !important;
  width: 100% !important;
  max-width: 560px !important;
  margin: 18px auto !important;
}

.single-about-photo img {
  width: 100% !important;
  max-width: 560px !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}


/* HARD Safari duplicate photo removal */
.photo-grid,
.single-about-photo,
img[src*="about-firefighter-2"],
img[src*="about-fire-scene"],
img[src*="about-fire-dog"],
img[src*="9311294F"],
img[src*="446B-4D5E"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
}


/* Separate pricing page */
#pricing{
  padding-top:60px;
  padding-bottom:60px;
}


/* Clean tab anchor behavior */
#services, #about, #contact {
  scroll-margin-top: 110px;
}


/* FINAL clean navigation fix */
.anchor-target,
#services,
#about,
#contact {
  scroll-margin-top: 120px !important;
}

.nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.nav a {
  display: inline-block !important;
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .nav {
    gap: 6px !important;
    padding: 8px 4px !important;
  }

  .nav a {
    font-size: 12px !important;
    padding: 7px 8px !important;
  }

  .nav .nav-cta {
    font-size: 12px !important;
    padding: 7px 8px !important;
  }
}


/* Section jump navigation fix */
html {
  scroll-behavior: smooth;
}

#services,
#about,
#contact,
.anchor-target {
  scroll-margin-top: 130px !important;
}

.anchor-target {
  display: block;
  height: 1px;
  margin-top: -1px;
  visibility: hidden;
}


/* Premium visual upgrade */
:root {
  --mecca-navy: #071f33;
  --mecca-blue: #0d3b5f;
  --mecca-gold: #d7a84f;
  --mecca-light: #f6f8fb;
  --mecca-text: #1d2733;
}

body {
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 38%, #eef3f7 100%) !important;
  color: var(--mecca-text) !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

header {
  background: rgba(7,31,51,.96) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.18) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
}

.nav a {
  border-radius: 999px !important;
  transition: transform .18s ease, background .18s ease, color .18s ease !important;
}

.nav a:hover {
  background: rgba(255,255,255,.12) !important;
  transform: translateY(-1px) !important;
}

.nav .nav-cta,
.button,
.btn,
a.button {
  background: linear-gradient(135deg, var(--mecca-gold), #f0ca77) !important;
  color: #071f33 !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(215,168,79,.28) !important;
}

section,
.section {
  position: relative !important;
}

.container {
  max-width: 1120px !important;
}

.hero,
.hero-section,
.home-hero,
.main-hero {
  background: radial-gradient(circle at top left, rgba(215,168,79,.22), transparent 35%),
              linear-gradient(135deg, #071f33 0%, #0d3b5f 62%, #113f63 100%) !important;
  color: white !important;
}

.hero h1,
.home-hero h1,
.main-hero h1 {
  letter-spacing: -0.03em !important;
  line-height: 1.02 !important;
  text-shadow: 0 6px 20px rgba(0,0,0,.22) !important;
}

.hero-card,
.card,
.service-card,
.trust-item,
.report-page,
.pricing-table-wrap {
  border: 1px solid rgba(13,59,95,.10) !important;
  border-radius: 20px !important;
  box-shadow: 0 14px 40px rgba(7,31,51,.10) !important;
}

.service-card,
.card {
  background: #ffffff !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}

.service-card:hover,
.card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 18px 48px rgba(7,31,51,.14) !important;
}

h1, h2, h3 {
  color: inherit;
}

.section h2,
h2 {
  letter-spacing: -0.025em !important;
}

.section-intro {
  color: #52606d !important;
  font-size: 18px !important;
}

#services .service-card h3,
.service-card h3 {
  color: var(--mecca-navy) !important;
}

#contact,
.contact,
footer {
  background: linear-gradient(135deg, #071f33, #0d3b5f) !important;
  color: white !important;
}

#contact a,
footer a {
  color: #f0ca77 !important;
}

input,
textarea,
select {
  border-radius: 12px !important;
  border: 1px solid rgba(13,59,95,.20) !important;
  padding: 12px 14px !important;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.03) !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(215,168,79,.45) !important;
  border-color: var(--mecca-gold) !important;
}

@media (max-width: 768px) {
  header {
    position: relative !important;
  }

  .nav {
    justify-content: center !important;
  }

  .nav a {
    font-size: 12px !important;
    padding: 7px 8px !important;
  }

  .hero h1,
  .home-hero h1,
  .main-hero h1 {
    font-size: 34px !important;
  }

  .section,
  section {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .section-intro {
    font-size: 15px !important;
  }
}


/* Trust bar upgrade */
.trust-upgrade {
  padding: 34px 0 !important;
  background: #f6f8fb !important;
}

.trust-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.trust-card {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: #ffffff !important;
  border: 1px solid rgba(13,59,95,.10) !important;
  border-left: 5px solid #d7a84f !important;
  border-radius: 18px !important;
  padding: 18px 20px !important;
  box-shadow: 0 10px 28px rgba(7,31,51,.08) !important;
}

.trust-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 38px !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #d7a84f, #f0ca77) !important;
  color: #071f33 !important;
  font-weight: 900 !important;
  font-size: 18px !important;
}

.trust-card strong {
  display: block !important;
  color: #071f33 !important;
  font-size: 19px !important;
  line-height: 1.1 !important;
  margin-bottom: 4px !important;
}

.trust-card span:not(.trust-icon) {
  display: block !important;
  color: #52606d !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
}

@media (max-width: 768px) {
  .trust-upgrade {
    padding: 22px 0 !important;
  }

  .trust-row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .trust-card {
    padding: 13px 14px !important;
    border-radius: 14px !important;
  }

  .trust-icon {
    min-width: 32px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 15px !important;
  }

  .trust-card strong {
    font-size: 16px !important;
  }

  .trust-card span:not(.trust-icon) {
    font-size: 13px !important;
  }
}


/* Simple readable contact section */
#contact {
  background: #ffffff !important;
  color: #172235 !important;
  padding: 60px 0 !important;
}

#contact .container {
  background: #ffffff !important;
  color: #172235 !important;
}

#contact h1,
#contact h2,
#contact h3 {
  color: #071f33 !important;
}

#contact p,
#contact span,
#contact li,
#contact label,
#contact div {
  color: #172235 !important;
}

#contact a {
  color: #0d3b5f !important;
  font-weight: 800 !important;
}

#contact input,
#contact textarea,
#contact select {
  background: #ffffff !important;
  color: #172235 !important;
  border: 1px solid #9aa8b5 !important;
  border-radius: 10px !important;
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: #596879 !important;
  opacity: 1 !important;
}

#contact button,
#contact input[type="submit"] {
  background: #d7a84f !important;
  color: #071f33 !important;
  font-weight: 900 !important;
  border: none !important;
}

@media (max-width: 768px) {
  #contact {
    padding: 42px 14px !important;
  }
}


/* Request form readability fix for Safari and Edge */
.request-card,
.request-form,
.inspection-request-form,
form {
  background: #ffffff !important;
  color: #172235 !important;
}

.request-card *,
.request-form *,
.inspection-request-form *,
form * {
  color: #172235 !important;
  -webkit-text-fill-color: #172235 !important;
}

.request-card label,
.request-form label,
.inspection-request-form label,
form label {
  color: #071f33 !important;
  -webkit-text-fill-color: #071f33 !important;
  font-weight: 700 !important;
}

.request-card input,
.request-card textarea,
.request-card select,
.request-form input,
.request-form textarea,
.request-form select,
.inspection-request-form input,
.inspection-request-form textarea,
.inspection-request-form select,
form input,
form textarea,
form select {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #172235 !important;
  -webkit-text-fill-color: #172235 !important;
  border: 2px solid #9aa8b5 !important;
  border-radius: 10px !important;
  opacity: 1 !important;
}

.request-card input::placeholder,
.request-card textarea::placeholder,
.request-form input::placeholder,
.request-form textarea::placeholder,
.inspection-request-form input::placeholder,
.inspection-request-form textarea::placeholder,
form input::placeholder,
form textarea::placeholder {
  color: #596879 !important;
  -webkit-text-fill-color: #596879 !important;
  opacity: 1 !important;
}

.request-card input:focus,
.request-card textarea:focus,
.request-card select:focus,
.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus,
.inspection-request-form input:focus,
.inspection-request-form textarea:focus,
.inspection-request-form select:focus,
form input:focus,
form textarea:focus,
form select:focus {
  border-color: #d7a84f !important;
  outline: 3px solid rgba(215,168,79,.25) !important;
}

.request-card button,
.request-card input[type="submit"],
.request-form button,
.request-form input[type="submit"],
.inspection-request-form button,
.inspection-request-form input[type="submit"],
form button,
form input[type="submit"] {
  background: #d7a84f !important;
  background-color: #d7a84f !important;
  color: #071f33 !important;
  -webkit-text-fill-color: #071f33 !important;
  font-weight: 900 !important;
  border: none !important;
}

/* Safari/Edge select dropdown fix */
select option {
  color: #172235 !important;
  background: #ffffff !important;
  -webkit-text-fill-color: #172235 !important;
}


/* Final desktop-safe contact and request form readability fix */
#contact.section,
#contact.section.light {
  background: #f6f8fb !important;
  color: #102033 !important;
}

#contact .cta-panel {
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12) !important;
}

#contact .cta-panel h2,
#contact .cta-panel p,
#contact .cta-panel div,
#contact .contact-card,
#contact .contact-card strong {
  color: #102033 !important;
  -webkit-text-fill-color: #102033 !important;
  text-shadow: none !important;
}

#contact .contact-card {
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
}

#contact a.phone,
#contact .contact-card a {
  color: #7a1717 !important;
  -webkit-text-fill-color: #7a1717 !important;
  font-weight: 900 !important;
}

#contact .btn,
#contact a.btn,
#contact .cta-actions .btn {
  background: #7a1717 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 2px solid #7a1717 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

/* Request Inspection page */
.page-template-page-request-inspection .section.light,
body .form-layout {
  background: #f6f8fb !important;
  color: #102033 !important;
}

body .form-card,
body .sidebar-card {
  background: #ffffff !important;
  color: #102033 !important;
  border: 1px solid #d1d5db !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12) !important;
}

body .inspection-form,
body .inspection-form *,
body .form-card,
body .form-card *,
body .sidebar-card,
body .sidebar-card * {
  color: #102033 !important;
  -webkit-text-fill-color: #102033 !important;
  text-shadow: none !important;
}

body .inspection-form h2,
body .inspection-form label,
body .sidebar-card h2,
body .sidebar-card strong {
  color: #071f33 !important;
  -webkit-text-fill-color: #071f33 !important;
  font-weight: 900 !important;
}

body .inspection-form input,
body .inspection-form textarea,
body .inspection-form select {
  width: 100% !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
  border: 2px solid #6b7280 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

body .inspection-form input::placeholder,
body .inspection-form textarea::placeholder {
  color: #4b5563 !important;
  -webkit-text-fill-color: #4b5563 !important;
  opacity: 1 !important;
}

body .inspection-form input:focus,
body .inspection-form textarea:focus,
body .inspection-form select:focus {
  border-color: #7a1717 !important;
  outline: 3px solid rgba(122, 23, 23, 0.18) !important;
}

body .inspection-form button,
body .inspection-form .form-submit,
body .inspection-form input[type="submit"] {
  background: #7a1717 !important;
  background-color: #7a1717 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 2px solid #7a1717 !important;
  font-weight: 900 !important;
}

body .sidebar-card a {
  color: #7a1717 !important;
  -webkit-text-fill-color: #7a1717 !important;
  font-weight: 900 !important;
}

body select option {
  background: #ffffff !important;
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #111827 !important;
}


/* Customer reviews section */
.reviews-section {
  background: #ffffff;
}
.reviews-section .kicker {
  color: var(--red);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 5px solid var(--gold);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .10);
  color: var(--ink);
}
.review-stars {
  color: #f5b301;
  font-size: 1.35rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 14px;
}
.review-card p {
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 18px;
}
.review-card strong {
  color: var(--navy);
  display: block;
  font-size: 1.05rem;
}
@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    padding: 22px;
  }
}


/* Separate Inspection Education and Resources pages */
.page-hero {
  background: linear-gradient(135deg, #071f33 0%, #0f3454 60%, #7a1717 100%);
  color: #ffffff;
  padding: 80px 0 54px;
}
.page-hero h1 { color:#ffffff; margin-bottom:14px; }
.page-hero p { color:#f8fafc; max-width:850px; font-size:1.15rem; line-height:1.7; }
.edu-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:26px;
}
.edu-card {
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(15, 23, 42, .12);
  display:flex;
  flex-direction:column;
}
.edu-card img {
  width:100%;
  height:330px;
  object-fit:cover;
  object-position:top center;
  background:#0b1f33;
}
.edu-card-body { padding:22px; }
.edu-card-body h2 { font-size:1.35rem; margin:0 0 10px; color:var(--navy); }
.edu-card-body p { color:#334155; line-height:1.65; margin-bottom:18px; }
.btn.small { padding:10px 16px; font-size:.95rem; display:inline-block; }
@media (max-width:1100px){ .edu-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width:700px){ .edu-grid{ grid-template-columns:1fr; } .page-hero{ padding:56px 0 38px; } .edu-card img{ height:auto; } }


.inspector-banner{max-width:760px;margin:-40px auto 30px auto;text-align:left;}
.inspector-banner strong{display:block;font-size:2.2rem;margin-bottom:8px;}
.inspector-banner span{font-size:1.3rem;color:#666;}
.about{max-width:1100px;margin:auto;}
.section-intro{max-width:750px;margin:auto auto 30px auto;text-align:center;}
.cards,.reviews-grid,.process{align-items:stretch;}
.cta-panel{gap:30px;align-items:center;}
@media(max-width:768px){.inspector-banner{margin-top:10px;padding:24px;}.inspector-banner strong{font-size:1.8rem;}.inspector-banner span{font-size:1.05rem;}}


/* Internal guide/resource viewer */
.single-guide-wrap {
  text-align: center;
}

.single-guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(0,0,0,.16);
  background: #fff;
}

.guide-back {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .single-guide-image {
    border-radius: 12px;
  }
}


/* Homepage organization improvements */

.about-section .about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}

.about-image img,
.hero-card img{
  width:100%;
  border-radius:20px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.about-subtitle{
  font-weight:700;
  color:#b98b2d;
  margin-bottom:20px;
}

.section-heading{
  text-align:center;
  margin-bottom:42px;
}

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

.trust-bar{
  margin-top:28px;
}

@media (max-width:768px){

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

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

  .hero-copy{
    text-align:center;
  }

  .hero-actions{
    flex-direction:column;
  }

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

  .trust-bar{
    grid-template-columns:1fr;
  }

  .cards{
    grid-template-columns:1fr !important;
  }

  .section{
    padding:54px 0;
  }

}


/* RESTORED REVIEW SLIDER */
.reviews-section {
  background: #fff;
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.08);
}

.testimonial-card p {
  font-size: 1rem;
  margin: 12px 0 16px;
}

.stars {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #b98b2d;
  font-weight: 800;
}

@media (max-width: 768px) {
  .testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
  }

  .testimonial-card {
    min-width: 84%;
    scroll-snap-align: center;
  }
}


/* CLEAN NAVIGATION REBUILD */
html {
  scroll-behavior: smooth;
}

#services,
#meet-your-inspector,
#pricing,
#contact {
  scroll-margin-top: 120px;
}

.main-navigation,
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  align-items: center;
}

.main-navigation a,
.nav a {
  text-decoration: none;
  font-weight: 700;
}

.pricing-section {
  background: #ffffff;
}

@media (max-width: 768px) {
  #services,
  #meet-your-inspector,
  #pricing,
  #contact {
    scroll-margin-top: 90px;
  }

  .main-navigation,
  .nav {
    gap: 8px;
  }

  .main-navigation a,
  .nav a {
    font-size: 0.92rem;
    padding: 6px 4px;
  }
}


/* ALL NAV TABS RESTORED */
.main-navigation,
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.main-navigation a,
.nav a {
  text-decoration: none;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.faq-item h2 {
  margin-top: 0;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-area-pill {
  display: block;
  background: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.sample-report-box {
  margin-top: 32px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

@media (max-width: 768px) {
  .main-navigation,
  .nav {
    gap: 7px;
  }

  .main-navigation a,
  .nav a {
    font-size: .88rem;
    padding: 5px 3px;
  }

  .service-area-grid {
    grid-template-columns: 1fr;
  }
}


/* PRICING IMAGE STYLES */
.pricing-image-wrap {
  text-align: center;
}

.pricing-image {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
  background: #fff;
}

.sample-report-box {
  text-align: center;
}


/* INTERNAL SAMPLE REPORT VIEWER */
.sample-report-viewer {
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.08);
}

.sample-report-viewer iframe {
  width: 100%;
  height: 900px;
  border: 0;
  display: block;
  background: #ffffff;
}

@media (max-width: 768px) {
  .sample-report-viewer {
    border-radius: 12px;
  }

  .sample-report-viewer iframe {
    height: 720px;
  }
}


/* FULL INTERNAL SAMPLE REPORT READER */
.sample-report-reader {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
}

.sample-report-reader-header {
  text-align: center;
  margin-bottom: 24px;
}

.sample-report-reader-header h2 {
  margin-bottom: 8px;
}

.sample-report-pages {
  display: grid;
  gap: 28px;
}

.sample-report-page {
  margin: 0;
  background: #f8fafc;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.sample-report-page img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  background: #ffffff;
}

.sample-report-page figcaption {
  text-align: center;
  font-weight: 700;
  margin-top: 10px;
  color: #374151;
}

@media (max-width: 768px) {
  .sample-report-reader {
    padding: 12px;
    border-radius: 14px;
  }

  .sample-report-pages {
    gap: 20px;
  }

  .sample-report-page {
    padding: 8px;
    border-radius: 12px;
  }

  .sample-report-page img {
    border-radius: 8px;
  }
}


/* HOMEPAGE LOGO CLEANUP */
.site-header .custom-logo,
.site-header img.custom-logo,
.site-header .logo img,
.site-header .custom-logo-link img {
  max-height: 58px !important;
  width: auto !important;
  object-fit: contain;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
}

.site-header {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .site-header .custom-logo,
  .site-header img.custom-logo,
  .site-header .logo img,
  .site-header .custom-logo-link img {
    max-height: 42px !important;
  }

  .logo-text {
    font-size: 1rem;
  }
}


/* MECCA LOGO SIZE UPDATE - smaller header logo */
.site-header .custom-logo,
.site-header img.custom-logo,
.site-header .logo img,
.site-header .custom-logo-link img {
  max-height: 44px !important;
  width: auto !important;
  object-fit: contain !important;
}

.logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.logo-text {
  font-size: 1.05rem !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
}

.nav-wrap {
  min-height: 70px !important;
}

.site-header {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

@media (max-width: 768px) {
  .site-header .custom-logo,
  .site-header img.custom-logo,
  .site-header .logo img,
  .site-header .custom-logo-link img {
    max-height: 34px !important;
  }

  .logo-text {
    font-size: .92rem !important;
  }

  .nav-wrap {
    min-height: 58px !important;
  }
}

/* LOCAL SEO CITY PAGE ENHANCEMENTS */
.city-seo-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px;
}

.city-seo-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
  align-items: start;
}

.city-card,
.city-sidebar,
.city-faq details {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.08);
}

.city-card {
  padding: 28px;
  margin-bottom: 22px;
}

.city-card h2,
.city-sidebar h2 {
  margin-top: 0;
}

.city-sidebar {
  padding: 24px;
  position: sticky;
  top: 105px;
}

.city-issue-list,
.city-benefit-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.city-cta-box {
  background: #0f172a;
  color: #ffffff;
  border-radius: 18px;
  padding: 28px;
  margin-top: 22px;
}

.city-cta-box a {
  color: #ffffff;
}

.city-mini-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.city-mini-form input,
.city-mini-form textarea,
.city-mini-form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font: inherit;
}

.city-mini-form button {
  border: 0;
  cursor: pointer;
}

.city-faq details {
  padding: 16px 18px;
  margin-bottom: 12px;
}

.city-faq summary {
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 860px) {
  .city-seo-grid {
    grid-template-columns: 1fr;
  }
  .city-sidebar {
    position: static;
  }
}


/* EXTRA SMALL HEADER LOGO OVERRIDE */
header .custom-logo,
header img.custom-logo,
header .custom-logo-link img,
.site-header .custom-logo,
.site-header img.custom-logo,
.navbar-brand img,
.logo img {
    max-height: 26px !important;
    height: 26px !important;
    width: auto !important;
    object-fit: contain !important;
}

.logo-text,
.site-title,
.navbar-brand {
    font-size: 0.9rem !important;
    line-height: 1.05 !important;
}

.site-header,
header.site-header,
.main-header,
.nav-wrap {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    min-height: 50px !important;
}

@media (max-width: 768px) {
    header .custom-logo,
    header img.custom-logo,
    header .custom-logo-link img,
    .site-header .custom-logo,
    .site-header img.custom-logo,
    .navbar-brand img,
    .logo img {
        max-height: 22px !important;
        height: 22px !important;
    }

    .site-header,
    header.site-header,
    .main-header,
    .nav-wrap {
        min-height: 44px !important;
    }

    .logo-text,
    .site-title,
    .navbar-brand {
        font-size: 0.82rem !important;
    }
}

/* Expanded Warranty Inspections Page */
.warranty-hero {
  padding: 70px 0;
}

.warranty-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.warranty-hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
  background: #0f172a;
}

.warranty-hero-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.photo-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
}

.warranty-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.warranty-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.warranty-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 32px;
  align-items: start;
}

.warranty-checklist {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  margin-top: 18px;
}

.warranty-checklist li {
  padding-left: 4px;
}

.warranty-side-box {
  background: #0f172a;
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  position: sticky;
  top: 92px;
}

.warranty-side-box .btn {
  margin-top: 10px;
}

.warranty-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.warranty-photo-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
  border: 1px solid #e2e8f0;
  margin: 0;
}

.warranty-photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.warranty-photo-card figcaption {
  padding: 18px;
  color: #334155;
}

.warranty-photo-card figcaption strong {
  display: block;
  color: #0f172a;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.warranty-illustration-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.warranty-illustration {
  height: 260px;
  display: grid;
  place-items: center;
  font-size: 5rem;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.warranty-faq details {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.warranty-faq summary {
  cursor: pointer;
  font-weight: 900;
  color: #0f172a;
}

.warranty-cta-section {
  padding-top: 30px;
}

.warranty-cta-box {
  background: #0f172a;
  color: #ffffff;
  border-radius: 26px;
  padding: 34px;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}

.warranty-cta-box h2,
.warranty-cta-box p {
  color: #ffffff;
}

@media (max-width: 980px) {
  .warranty-hero-grid,
  .warranty-two-column,
  .warranty-cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }
  .warranty-feature-grid,
  .warranty-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .warranty-side-box {
    position: static;
  }
}

@media (max-width: 640px) {
  .warranty-feature-grid,
  .warranty-photo-grid {
    grid-template-columns: 1fr;
  }
  .warranty-hero-photo img,
  .warranty-photo-card img,
  .warranty-illustration {
    height: 230px;
  }
}

/* Thermal Imaging Service Page */
.thermal-hero {
  background: radial-gradient(circle at top right, rgba(255, 122, 24, 0.22), transparent 38%), linear-gradient(135deg, #07111f 0%, #10243d 55%, #07111f 100%);
  color: #fff;
}
.thermal-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.thermal-note {
  border-left: 4px solid rgba(255,255,255,0.65);
  padding-left: 14px;
  font-size: 0.98rem;
  opacity: 0.95;
}
.thermal-hero-visual {
  position: relative;
}
.thermal-screen {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 10px solid rgba(255,255,255,0.18);
  box-shadow: 0 28px 70px rgba(0,0,0,0.34);
  background:
    radial-gradient(circle at 70% 24%, #ffef6e 0 8%, #ff7a18 9% 18%, transparent 28%),
    radial-gradient(circle at 34% 68%, #32c6ff 0 11%, #1d4ed8 12% 28%, transparent 40%),
    linear-gradient(135deg, #1d4ed8 0%, #5b21b6 35%, #e11d48 70%, #f97316 100%);
}
.thermal-screen:before {
  content: '';
  position: absolute;
  inset: 28px 46px;
  border: 2px solid rgba(255,255,255,0.42);
  border-radius: 18px;
}
.thermal-hotspot, .thermal-coldspot {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}
.thermal-hotspot.one { width: 110px; height: 110px; right: 48px; top: 48px; background: rgba(255,244,113,0.7); }
.thermal-hotspot.two { width: 70px; height: 70px; left: 86px; bottom: 82px; background: rgba(255,119,24,0.65); }
.thermal-coldspot { width: 135px; height: 135px; left: 44px; bottom: 54px; background: rgba(56,189,248,0.72); }
.thermal-scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(255,255,255,0.10) 1px, transparent 1px, transparent 12px);
  mix-blend-mode: overlay;
}
.thermal-temp {
  position: absolute;
  background: rgba(0,0,0,0.48);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
.thermal-temp.high { right: 56px; top: 40px; }
.thermal-temp.low { left: 50px; bottom: 46px; }
.thermal-feature-grid .feature-icon {
  background: rgba(249, 115, 22, 0.12);
}
.thermal-side-box {
  border-top: 6px solid #f97316;
}
.thermal-photo-grid {
  align-items: stretch;
}
.thermal-example-card .thermal-example {
  min-height: 235px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.thermal-example span {
  background: rgba(0,0,0,0.42);
  padding: 8px 12px;
  border-radius: 999px;
}
.thermal-example.moisture {
  background: radial-gradient(circle at 38% 48%, #38bdf8 0 16%, #1d4ed8 17% 34%, transparent 35%), linear-gradient(135deg, #0f172a, #334155 45%, #f59e0b);
}
.thermal-example.insulation {
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 7px, transparent 7px 38px), linear-gradient(135deg, #2563eb, #7c3aed 42%, #ef4444 100%);
}
.thermal-example.electrical {
  background: radial-gradient(circle at 68% 34%, #fff7ad 0 8%, #fb923c 9% 20%, transparent 28%), linear-gradient(135deg, #111827, #7f1d1d 55%, #f97316);
}
.thermal-cta-section {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}
@media (max-width: 850px) {
  .thermal-hero-grid { grid-template-columns: 1fr; }
  .thermal-screen { min-height: 280px; }
}


/* CONSISTENT FULL NAVIGATION FIX - keeps Warranty and Thermal visible on every page */
.site-header,
header.site-header,
.nav-wrap,
.main-navigation,
.nav {
  overflow: visible !important;
}

.nav-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.main-navigation,
.nav {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px 12px !important;
  max-width: 100% !important;
}

.main-navigation a,
.nav a {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  white-space: nowrap !important;
  font-size: 0.9rem !important;
  line-height: 1.2 !important;
}

@media (max-width: 900px) {
  .nav-wrap {
    justify-content: center !important;
  }
  .main-navigation,
  .nav {
    justify-content: center !important;
  }
  .main-navigation a,
  .nav a {
    font-size: 0.78rem !important;
    padding: 4px 3px !important;
  }
}


/* Header stability fix */
.site-header{
 position:sticky;
 top:0;
 width:100%;
}
.nav-wrap{
 min-height:92px;
 flex-wrap:nowrap;
 align-items:center;
}
.logo{
 flex:0 0 auto;
 display:flex;
 align-items:center;
 gap:10px;
}
.nav{
 flex:1;
 display:flex;
 flex-wrap:nowrap;
 overflow-x:auto;
 justify-content:flex-end;
 white-space:nowrap;
 scrollbar-width:none;
}
.nav::-webkit-scrollbar{display:none;}

@media (max-width:1100px){
 .nav-wrap{
   flex-direction:column;
   min-height:auto;
   padding:10px 0;
 }
 .nav{
   width:100%;
   justify-content:flex-start;
 }
}

/* DESKTOP HEADER POLISH + STABLE NAV OVERRIDE */
@media (min-width: 1025px) {
  .site-header {
    padding: 0 !important;
    background: linear-gradient(90deg, #0f172a 0%, #111827 100%) !important;
    border-bottom: 3px solid var(--gold) !important;
  }

  .site-header .nav-wrap {
    width: min(1280px, 96%) !important;
    min-height: 76px !important;
    padding: 10px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
  }

  .site-header .logo {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 235px !important;
    text-decoration: none !important;
  }

  .site-header .custom-logo,
  .site-header img.custom-logo,
  .site-header .logo img,
  .site-header .custom-logo-link img {
    max-height: 42px !important;
    height: 42px !important;
    width: auto !important;
    border-radius: 6px !important;
    object-fit: contain !important;
  }

  .site-header .logo-text {
    font-size: 1rem !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: .01em !important;
    color: #ffffff !important;
    white-space: nowrap !important;
  }

  .site-header .main-navigation,
  .site-header .nav {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    white-space: nowrap !important;
    min-width: 0 !important;
  }

  .site-header .main-navigation::-webkit-scrollbar,
  .site-header .nav::-webkit-scrollbar {
    display: none !important;
  }

  .site-header .main-navigation a,
  .site-header .nav a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: .78rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
    padding: 10px 8px !important;
    border-radius: 999px !important;
    min-height: 36px !important;
    transition: background .18s ease, color .18s ease, transform .18s ease !important;
  }

  .site-header .main-navigation a:hover,
  .site-header .nav a:hover {
    background: rgba(212,175,55,.16) !important;
    color: var(--gold-soft) !important;
    transform: translateY(-1px) !important;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .site-header .logo { min-width: 190px !important; }
  .site-header .logo-text { font-size: .9rem !important; }
  .site-header .main-navigation a,
  .site-header .nav a {
    font-size: .72rem !important;
    padding: 9px 6px !important;
  }
}

/* PRICING PAGE UPGRADE */
.pricing-page-container {
  display: grid;
  gap: 28px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 16px 42px rgba(15,23,42,.10);
}

.pricing-card-featured {
  border-top: 5px solid var(--gold);
}

.pricing-card-header {
  max-width: 860px;
  margin-bottom: 18px;
}

.pricing-card-header h2 {
  margin: 6px 0 8px;
  color: var(--navy);
}

.pricing-card-header p {
  margin: 0;
  color: var(--muted);
}

.pricing-label {
  display: inline-flex;
  align-items: center;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 999px;
}

.pricing-page-section .pricing-table-wrap {
  margin-top: 18px !important;
  overflow-x: auto !important;
}

.pricing-page-section .pricing-table {
  min-width: 0 !important;
  width: 100% !important;
  table-layout: auto !important;
}

.pricing-page-section .pricing-table th,
.pricing-page-section .pricing-table td {
  white-space: normal !important;
}

.pricing-page-section .pricing-table th:last-child,
.pricing-page-section .pricing-table td:last-child {
  text-align: right !important;
  white-space: nowrap !important;
}

.pricing-note-box {
  margin-top: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--ink);
}

.pricing-final-note {
  margin-top: 0;
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .pricing-card-header h2 {
    font-size: 1.35rem;
  }

  .pricing-page-section .pricing-table th,
  .pricing-page-section .pricing-table td {
    font-size: 12px !important;
    padding: 9px 7px !important;
  }

  .pricing-note-box {
    font-size: 13px;
    line-height: 1.45;
  }
}


/* Multi-Residential Pricing Conversion Section */
.multi-residential-highlight{
    margin-top:60px;
    padding:32px;
    border-radius:12px;
    background:#f5f5f5;
    border-top:4px solid #c9a227;
    text-align:center;
}
.multi-residential-highlight .cta-button{
    display:inline-block;
    margin-top:20px;
    padding:12px 24px;
    text-decoration:none;
    border-radius:6px;
}


/* Premium conversion update: header, CTAs, pricing, service pages */
.site-header.premium-header{position:sticky!important;top:0!important;z-index:9999!important;background:#0f172a!important;border-bottom:3px solid #d4af37!important;box-shadow:0 10px 26px rgba(0,0,0,.22)!important;padding:0!important;}
.header-top-strip{background:#0a1020;color:#f8edc2;font-size:.86rem;font-weight:800;letter-spacing:.02em;}
.header-top-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:7px 0;}
.header-top-inner a{color:#fff;text-decoration:none;white-space:nowrap;}
.premium-nav-wrap{width:min(1280px,94%)!important;min-height:74px!important;padding:8px 0!important;display:grid!important;grid-template-columns:auto minmax(0,1fr) auto!important;align-items:center!important;gap:18px!important;}
.site-header .logo{display:flex!important;align-items:center!important;gap:10px!important;text-decoration:none!important;min-width:max-content!important;}
.site-header .custom-logo,.site-header img.custom-logo,.site-header .logo img,.site-header .custom-logo-link img{max-height:42px!important;height:42px!important;width:auto!important;object-fit:contain!important;border-radius:6px!important;}
.logo-text{font-size:1.05rem!important;font-weight:900!important;color:#fff!important;line-height:1.05!important;letter-spacing:-.02em!important;}
.main-navigation.nav{display:flex!important;align-items:center!important;justify-content:center!important;gap:4px!important;flex-wrap:nowrap!important;overflow-x:auto!important;scrollbar-width:none!important;white-space:nowrap!important;min-width:0!important;}
.main-navigation.nav::-webkit-scrollbar{display:none!important;}
.main-navigation.nav a{color:#fff!important;text-decoration:none!important;font-size:.82rem!important;font-weight:800!important;padding:9px 8px!important;border-radius:999px!important;opacity:.96!important;line-height:1!important;}
.main-navigation.nav a:hover{background:rgba(212,175,55,.14)!important;color:#f8edc2!important;}
.header-actions{display:flex;align-items:center;gap:10px;white-space:nowrap;}
.header-phone{color:#fff!important;text-decoration:none!important;font-weight:900!important;font-size:.95rem!important;}
.schedule-now-btn{background:#d4af37!important;color:#0f172a!important;text-decoration:none!important;font-weight:950!important;border-radius:999px!important;padding:12px 18px!important;box-shadow:0 8px 18px rgba(0,0,0,.22)!important;}
.schedule-now-btn:hover{background:#f8edc2!important;color:#0f172a!important;}
.trust-bar-premium{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
.above-fold-proof{background:#fff;padding:20px 0;border-bottom:1px solid #e5e7eb;}
.proof-grid{display:grid;grid-template-columns:1.25fr repeat(3,1fr);gap:14px;align-items:stretch;}
.proof-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:16px;box-shadow:0 8px 20px rgba(15,23,42,.08);font-weight:850;color:#0f172a;}
.proof-review p{margin:4px 0 6px;color:#374151;font-weight:700;}.review-stars{color:#d4af37;font-weight:950;letter-spacing:.08em;}
.service-link-card{display:block;text-decoration:none;color:inherit;transition:transform .18s ease, box-shadow .18s ease;}
.service-link-card:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(15,23,42,.14);}.service-link-card span{font-weight:900;color:#9f1d1d;}
.lead-magnet-section{background:#0f172a;color:#fff;}.lead-magnet-card{display:flex;align-items:center;justify-content:space-between;gap:28px;background:linear-gradient(135deg,rgba(212,175,55,.16),rgba(255,255,255,.06));border:1px solid rgba(255,255,255,.12);border-radius:24px;padding:34px;}.lead-magnet-card h2{color:#fff;margin-top:0;}.lead-magnet-card p{color:#e5e7eb;max-width:760px;}
.pricing-summary-card{background:#0f172a;color:#fff;border-radius:24px;padding:30px;margin-bottom:34px;box-shadow:0 14px 35px rgba(15,23,42,.18);display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;}.pricing-summary-card h2{margin:0;color:#fff;}.pricing-benefits{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px 20px;color:#f8edc2;font-weight:850;}.pricing-divider{height:1px;background:linear-gradient(90deg,transparent,#d4af37,transparent);margin:48px 0;position:relative;}.pricing-divider:after{content:'Multi-Residential Pricing';position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background:#f4f6f8;color:#0f172a;font-weight:950;padding:8px 16px;border:1px solid #d4af37;border-radius:999px;white-space:nowrap;}.multi-residential-card{border-top:6px solid #d4af37!important;background:#fffdf5!important;}.multi-residential-highlight{margin-top:26px!important;background:#0f172a!important;color:#fff!important;border-radius:18px!important;padding:24px!important;border-top:0!important;text-align:left!important;}.multi-residential-highlight h3{margin-top:0;color:#fff!important;}.multi-residential-highlight p{color:#e5e7eb;}
.service-detail-grid{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:28px;align-items:start;}.service-detail-main,.service-sidebar-cta{background:#fff;border:1px solid #e5e7eb;border-radius:22px;box-shadow:0 10px 26px rgba(15,23,42,.08);padding:28px;}.service-sidebar-cta{position:sticky;top:120px;}.service-checklist{display:grid;gap:12px;margin-top:20px;}.service-checklist li{font-weight:750;}.service-sidebar-cta .phone{display:block;margin-top:16px;color:#9f1d1d;font-size:1.25rem;font-weight:950;text-decoration:none;}
.city-cta-box:before{content:'Need a home inspection in this area?';display:block;font-size:1.4rem;font-weight:950;margin-bottom:8px;color:#f8edc2;}
@media(max-width:1100px){.premium-nav-wrap{grid-template-columns:1fr!important;gap:10px!important;justify-items:center!important;}.main-navigation.nav{justify-content:flex-start!important;width:100%!important;}.header-actions{justify-content:center;}.header-top-inner{justify-content:center;text-align:center;flex-wrap:wrap;}.header-top-inner span{display:none;}}
@media(max-width:768px){.site-header .custom-logo,.site-header img.custom-logo,.site-header .logo img,.site-header .custom-logo-link img{height:32px!important;max-height:32px!important;}.logo-text{font-size:.9rem!important;}.premium-nav-wrap{padding:8px 0!important;min-height:auto!important;}.main-navigation.nav a{font-size:.78rem!important;padding:8px 7px!important;}.header-phone{display:none!important;}.schedule-now-btn{padding:10px 16px!important;}.trust-bar-premium,.proof-grid,.pricing-benefits,.service-detail-grid{grid-template-columns:1fr!important;}.lead-magnet-card,.pricing-summary-card{display:block;text-align:left;}.lead-magnet-card .btn,.pricing-summary-card .btn{margin-top:18px;width:100%;}.pricing-divider{margin:36px 0;}.pricing-divider:after{font-size:.85rem;}.service-sidebar-cta{position:static;}.header-top-strip{font-size:.8rem;}}


/* Global section spacing improvement */
section,
.page-section,
.content-section,
.service-section,
.pricing-section,
.testimonial-section,
.cta-section,
.hero + section {
    margin-top: 60px;
    margin-bottom: 60px;
}

h2, h3 {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    section,
    .page-section,
    .content-section,
    .service-section,
    .pricing-section,
    .testimonial-section,
    .cta-section,
    .hero + section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}


/* Mobile-friendly header, navigation, pricing, and CTA improvements */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    header,
    .site-header,
    .main-header {
        position: sticky;
        top: 0;
        z-index: 9999;
        padding: 8px 14px !important;
        min-height: auto !important;
    }

    .site-branding,
    .logo,
    .custom-logo-link {
        max-width: 170px;
    }

    .custom-logo,
    .site-logo img,
    header img {
        max-height: 64px !important;
        width: auto !important;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 46px;
        margin: 10px 0 4px;
        padding: 10px 14px;
        border: 0;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        background: #c9a227;
        color: #111;
    }

    nav.mecca-mobile-nav,
    .main-navigation,
    .primary-navigation,
    .site-navigation {
        display: none !important;
        width: 100%;
        margin-top: 8px;
    }

    nav.mecca-mobile-nav.is-open,
    .main-navigation.is-open,
    .primary-navigation.is-open,
    .site-navigation.is-open {
        display: block !important;
    }

    nav.mecca-mobile-nav ul,
    .main-navigation ul,
    .primary-navigation ul,
    .site-navigation ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    nav.mecca-mobile-nav li,
    .main-navigation li,
    .primary-navigation li,
    .site-navigation li {
        width: 100% !important;
        margin: 0 !important;
    }

    nav.mecca-mobile-nav a,
    .main-navigation a,
    .primary-navigation a,
    .site-navigation a {
        display: block !important;
        width: 100%;
        padding: 13px 14px !important;
        border-radius: 8px;
        text-align: center;
        line-height: 1.25;
        font-size: 16px !important;
        font-weight: 700;
    }

    .top-phone,
    .header-phone,
    .schedule-now,
    .header-cta,
    .cta-button,
    a[href^="tel:"] {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .header-cta,
    .schedule-now {
        width: 100%;
        margin-top: 8px;
    }

    section,
    .page-section,
    .content-section,
    .service-section,
    .pricing-section,
    .testimonial-section,
    .cta-section {
        margin-top: 34px !important;
        margin-bottom: 34px !important;
        padding-left: 16px;
        padding-right: 16px;
    }

    .pricing-table,
    table {
        width: 100% !important;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-card,
    .price-card,
    .service-card,
    .multi-residential-highlight {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 22px 16px !important;
        box-sizing: border-box;
    }

    h1 {
        font-size: clamp(28px, 8vw, 40px) !important;
        line-height: 1.12 !important;
    }

    h2 {
        font-size: clamp(24px, 7vw, 34px) !important;
        line-height: 1.18 !important;
    }

    p, li {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 769px) {
    nav.mecca-mobile-nav {
        display: block !important;
    }
}


/* User requested header cleanup */
@media (max-width:768px){
.mobile-menu-toggle{
    font-size:0 !important;
}
.mobile-menu-toggle::before{
    content:"☰";
    font-size:24px;
}
}

/* Hide phone number beside Schedule Now button */
.header-phone,
.top-phone,
.phone-number,
.header-contact-phone{
    display:none !important;
}

/* MOBILE MENU REPAIR - May 2026
   Keeps desktop navigation intact, but makes phone menu closed by default
   and opens only when the Menu button is tapped. */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .site-header,
  header.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
  }

  .header-top-strip {
    display: block !important;
  }

  .header-top-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    text-align: center !important;
    padding: 7px 12px !important;
    font-size: 0.86rem !important;
    line-height: 1.25 !important;
  }

  .nav-wrap,
  .premium-nav-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: auto !important;
    padding: 12px 16px !important;
    overflow: visible !important;
  }

  .logo {
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .logo-text {
    font-size: 1.05rem !important;
    line-height: 1.2 !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    appearance: none !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #071f33 !important;
    font-weight: 800 !important;
    font-size: 0.98rem !important;
    line-height: 1 !important;
    padding: 10px 18px !important;
    margin: 2px auto !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.18) !important;
  }

  .main-navigation,
  .nav,
  nav.main-navigation {
    display: none !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    overflow: hidden !important;
    white-space: normal !important;
    padding: 10px 0 4px !important;
    margin: 0 !important;
  }

  .main-navigation.is-open,
  .nav.is-open,
  nav.main-navigation.is-open {
    display: flex !important;
  }

  .main-navigation a,
  .nav a,
  nav.main-navigation a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 11px 10px !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.06) !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    white-space: normal !important;
  }

  .main-navigation a:hover,
  .nav a:hover,
  nav.main-navigation a:hover {
    background: rgba(214, 171, 54, .18) !important;
    color: #f6d77a !important;
  }

  .header-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 2px !important;
  }

  .header-phone,
  .schedule-now-btn {
    font-size: 0.95rem !important;
    padding: 9px 12px !important;
    line-height: 1.1 !important;
  }

  body.menu-open {
    overflow-x: hidden !important;
  }
}

@media (min-width: 769px) {
  .main-navigation,
  .nav,
  nav.main-navigation {
    display: flex !important;
  }
}


/* Mecca 10/10 Upgrade */
.nav-wrap{min-height:78px}
.logo img{max-height:60px}
.nav a{font-size:1rem}
.schedule-now-btn{
background:#d4af37;
color:#0f172a;
padding:14px 24px;
border-radius:999px;
font-weight:800;
text-decoration:none;
}
.hero h1{max-width:700px}
.hero-grid{grid-template-columns:1fr 1fr}
@media (max-width:768px){
  .mobile-menu-toggle{display:none !important;}
  .main-navigation{display:none !important;}
  .header-phone{display:none !important;}
  .nav-wrap{justify-content:space-between;}
}



/* FINAL MOBILE CLEANUP: remove the large mobile navigation panel */
@media screen and (max-width: 782px) {
  html, body {
    overflow-x: hidden !important;
  }

  .mobile-menu-toggle,
  .menu-toggle,
  button.menu-toggle,
  .nav-toggle,
  .hamburger,
  .hamburger-menu,
  .mobile-toggle,
  .close-menu,
  .mobile-close {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  nav,
  .nav,
  .navigation,
  .main-navigation,
  .primary-navigation,
  .site-navigation,
  .navbar,
  .navbar-nav,
  .menu,
  .primary-menu,
  .header-menu,
  .desktop-menu,
  .mobile-menu,
  .mobile-nav,
  .nav-menu,
  .main-menu,
  .menu-wrapper,
  .nav-wrapper,
  .nav-links,
  .menu-primary-menu-container,
  #site-navigation,
  #primary-navigation,
  #mobile-menu,
  #mobile-nav,
  #primary-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    max-height: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .site-header,
  header,
  .header,
  .main-header,
  .top-header {
    min-height: 0 !important;
  }

  .top-bar,
  .announcement-bar {
    padding: 12px 14px !important;
    text-align: center !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
  }

  .header-inner,
  .site-branding,
  .brand,
  .branding,
  .logo-wrap,
  .logo-section {
    padding: 18px 14px 20px !important;
    margin: 0 !important;
    text-align: center !important;
    display: block !important;
  }

  .site-title,
  .brand-title,
  .logo-text {
    font-size: 24px !important;
    line-height: 1.15 !important;
    margin: 8px 0 0 !important;
  }

  .logo img,
  .site-logo img,
  .custom-logo,
  img.custom-logo {
    max-width: 58px !important;
    max-height: 58px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto 8px !important;
    display: block !important;
  }

  .schedule-now-btn,
  .schedule-button,
  .header-cta,
  .cta-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 12px 22px !important;
    border-radius: 999px !important;
    font-size: 19px !important;
    line-height: 1.1 !important;
    margin: 8px auto 0 !important;
  }

  .hero,
  .hero-section,
  .home-hero {
    padding-top: 34px !important;
    margin-top: 0 !important;
  }
}


/* =========================================================
   MECCA CLEAN FINAL: Mobile menu removed + header/site polish
   ========================================================= */

/* Global small abnormalities cleanup */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
a { text-underline-offset: 3px; }

/* Desktop polish */
@media screen and (min-width: 783px) {
  .main-navigation a,
  .primary-navigation a,
  .site-navigation a,
  .nav-menu a,
  nav a {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
  }

  .site-header,
  .header,
  .main-header {
    border-bottom: 3px solid #d4af37;
  }

  .custom-logo,
  .site-logo img,
  .logo img,
  img.custom-logo {
    max-height: 62px;
    width: auto;
  }

  .schedule-now-btn,
  .schedule-button,
  .header-cta,
  .cta-button,
  a[href*="schedule"] {
    border-radius: 999px;
    font-weight: 800;
  }
}

/* Mobile: remove menu icon and the full navigation stack */
@media screen and (max-width: 782px) {
  html, body {
    overflow-x: hidden !important;
  }

  /* Remove hamburger/menu icon/button completely */
  .menu-toggle,
  .mobile-menu-toggle,
  .hamburger,
  .hamburger-menu,
  .nav-toggle,
  .navbar-toggle,
  .offcanvas-toggle,
  .toggle-menu,
  .mobile-toggle,
  .mobile-close,
  .close-menu,
  button[aria-label*="Menu"],
  button[aria-label*="menu"],
  button[aria-controls*="menu"],
  button[class*="menu-toggle"],
  button[class*="mobile-menu"],
  button[class*="hamburger"],
  button[class*="nav-toggle"],
  a[class*="menu-toggle"],
  a[class*="mobile-menu"],
  a[class*="hamburger"],
  a[class*="nav-toggle"],
  div[class*="menu-toggle"],
  div[class*="hamburger"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
  }

  /* Hide mobile navigation links on phones so visitors see the hero quickly */
  nav,
  .nav,
  .navigation,
  .main-navigation,
  .primary-navigation,
  .site-navigation,
  .mobile-navigation,
  .mobile-menu,
  .mobile-nav,
  .nav-menu,
  .primary-menu,
  .header-menu,
  .menu,
  .menu-wrapper,
  .nav-wrapper,
  .nav-links,
  .menu-primary-menu-container,
  #site-navigation,
  #primary-navigation,
  #mobile-menu,
  #mobile-nav,
  #primary-menu,
  nav[aria-label*="Mobile"],
  nav[class*="mobile"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  /* Compact header so the first screen is not swallowed by navigation */
  .site-header,
  header,
  .header,
  .main-header {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    border-bottom: 3px solid #d4af37 !important;
  }

  .top-bar,
  .announcement-bar,
  .header-top,
  .top-strip {
    padding: 12px 14px !important;
    margin: 0 !important;
    text-align: center !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
  }

  .site-branding,
  .header-inner,
  .brand,
  .branding,
  .logo-wrap,
  .logo-section,
  .nav-wrap {
    padding: 14px 14px 16px !important;
    margin: 0 !important;
    text-align: center !important;
    display: block !important;
    min-height: 0 !important;
  }

  .custom-logo,
  .site-logo img,
  .logo img,
  img.custom-logo {
    max-width: 56px !important;
    max-height: 56px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto 8px !important;
  }

  .site-title,
  .brand-title,
  .logo-text,
  .site-branding h1,
  .site-branding p {
    font-size: 23px !important;
    line-height: 1.15 !important;
    margin: 8px 0 0 !important;
    text-align: center !important;
  }

  .schedule-now-btn,
  .schedule-button,
  .header-cta,
  .cta-button,
  a[href*="schedule"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 12px 22px !important;
    border-radius: 999px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    margin: 8px auto 0 !important;
    text-align: center !important;
    max-width: 90vw !important;
  }

  .hero,
  .hero-section,
  .home-hero,
  section:first-of-type {
    margin-top: 0 !important;
    padding-top: 30px !important;
  }

  .hero h1,
  .hero-section h1,
  .home-hero h1 {
    font-size: clamp(38px, 11vw, 54px) !important;
    line-height: 1.05 !important;
  }

  .hero p,
  .hero-section p,
  .home-hero p {
    font-size: 18px !important;
    line-height: 1.45 !important;
  }

  .hero .btn,
  .hero a.button,
  .button,
  .btn {
    max-width: 92vw !important;
    white-space: normal !important;
  }
}


/* ===== Pricing Page Spacing Fix ===== */

/* Better heading spacing */
.pricing-section h1,
.pricing-section h2,
.pricing-section h3,
.page-template-pricing h1,
.page-template-pricing h2,
.page-template-pricing h3 {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    line-height: 1.15 !important;
}

/* Space under schedule button */
.schedule-now-btn,
.schedule-button {
    margin-bottom: 35px !important;
}

/* Add breathing room around pricing tables */
table {
    margin-top: 25px !important;
    margin-bottom: 50px !important;
}

table th,
table td {
    padding: 16px 12px !important;
}

/* Residential to Multi-residential spacing */
.pricing-table,
.residential-pricing,
.multi-residential-pricing {
    margin-bottom: 55px !important;
}

/* Mobile improvements */
@media screen and (max-width: 782px){

    h1{
        margin-top:20px !important;
        margin-bottom:18px !important;
    }

    h2{
        margin-top:35px !important;
        margin-bottom:15px !important;
    }

    p{
        margin-bottom:20px !important;
    }

    table{
        margin-top:20px !important;
        margin-bottom:60px !important;
    }

    table th,
    table td{
        padding:18px 12px !important;
    }

    .schedule-now-btn,
    .schedule-button{
        margin-top:20px !important;
        margin-bottom:40px !important;
    }
}




/* =========================================================
   PRICING PAGE MOBILE V2 - scoped only to pricing section.
   Does not target header, nav, logo, site title, hero, or global buttons.
   ========================================================= */
@media screen and (max-width: 782px) {

  .pricing-page-section {
    padding: 28px 0 44px !important;
  }

  .pricing-page-section .pricing-page-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .pricing-page-section .pricing-summary-card {
    padding: 0 !important;
    margin: 0 0 30px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .pricing-page-section .pricing-summary-card h2 {
    font-size: 38px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    margin: 0 0 22px !important;
  }

  .pricing-page-section .pricing-benefits {
    display: block !important;
    margin: 0 0 20px !important;
    font-size: 20px !important;
    line-height: 1.55 !important;
  }

  .pricing-page-section .pricing-benefits span {
    display: inline !important;
    margin: 0 6px 0 0 !important;
  }

  .pricing-page-section .pricing-summary-card .btn {
    display: inline-flex !important;
    margin: 4px 0 26px !important;
    padding: 16px 28px !important;
    min-height: 54px !important;
    font-size: 20px !important;
  }

  .pricing-page-section .pricing-card {
    padding: 0 !important;
    margin: 0 0 34px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .pricing-page-section .pricing-card-header {
    margin: 0 0 22px !important;
    padding: 0 !important;
  }

  .pricing-page-section .pricing-label {
    display: block !important;
    font-size: 20px !important;
    line-height: 1.35 !important;
    margin: 0 0 10px !important;
  }

  .pricing-page-section .pricing-card-header h2 {
    font-size: 38px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    margin: 0 0 20px !important;
  }

  .pricing-page-section .pricing-card-header p {
    font-size: 19px !important;
    line-height: 1.55 !important;
    margin: 0 0 22px !important;
  }

  .pricing-page-section .pricing-table-wrap {
    margin: 0 0 32px !important;
    padding: 0 !important;
    overflow-x: visible !important;
  }

  .pricing-page-section .pricing-table {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    font-size: 16px !important;
  }

  .pricing-page-section .pricing-table th,
  .pricing-page-section .pricing-table td {
    padding: 14px 12px !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    vertical-align: middle !important;
  }

  .pricing-page-section .pricing-table th:last-child,
  .pricing-page-section .pricing-table td:last-child {
    text-align: right !important;
    white-space: nowrap !important;
  }

  .pricing-page-section .pricing-divider {
    display: block !important;
    height: 1px !important;
    margin: 34px 0 26px !important;
    background: rgba(15, 23, 42, .12) !important;
  }

  .pricing-page-section .multi-residential-card {
    margin-top: 0 !important;
  }

  .pricing-page-section .multi-residential-card .pricing-card-header {
    margin-bottom: 22px !important;
  }

  .pricing-page-section .multi-residential-card .pricing-label {
    margin-bottom: 10px !important;
  }

  .pricing-page-section .multi-residential-card .pricing-card-header h2 {
    margin-bottom: 22px !important;
  }

  .pricing-page-section .multi-residential-card .pricing-card-header p {
    margin-bottom: 26px !important;
  }

  .pricing-page-section .pricing-note-box {
    font-size: 18px !important;
    line-height: 1.55 !important;
    margin: 20px 0 28px !important;
    padding: 18px !important;
    border-radius: 16px !important;
  }

  .pricing-page-section .multi-residential-highlight {
    margin-top: 28px !important;
    padding: 20px !important;
  }

  .pricing-page-section .multi-residential-highlight h3 {
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin: 0 0 14px !important;
  }
}


/* PRICING SECTION ONLY FIX - NO HEADER CHANGES */
@media (max-width:782px){

.pricing-mobile-fix-summary{
  margin-bottom:40px!important;
}

.pricing-mobile-fix-summary h2{
  margin-bottom:24px!important;
}

.pricing-mobile-fix-summary .pricing-benefits{
  margin-bottom:22px!important;
  line-height:1.6!important;
}

.pricing-mobile-fix-summary .btn{
  margin-top:8px!important;
  margin-bottom:30px!important;
}

.pricing-mobile-fix-residential .pricing-label{
  display:block!important;
  margin-bottom:12px!important;
}

.pricing-mobile-fix-residential .pricing-card-header h2{
  margin-top:0!important;
  margin-bottom:18px!important;
}

.pricing-mobile-fix-residential .pricing-card-header p{
  margin-bottom:24px!important;
}

.pricing-divider{
  margin:40px 0 32px!important;
}

.multi-residential-card .pricing-label{
  margin-bottom:12px!important;
}

.multi-residential-card .pricing-card-header h2{
  margin-bottom:20px!important;
}

.multi-residential-card .pricing-card-header p{
  margin-bottom:26px!important;
}

.pricing-note-box{
  margin-top:24px!important;
  margin-bottom:24px!important;
}

.pricing-table-wrap{
  margin-bottom:24px!important;
}
}


/* =========================================================
   FINAL MOBILE HEADER FIX
   Only affects the mobile header/navigation area.
   Does not touch pricing content, thermal section, or desktop.
   ========================================================= */
@media screen and (max-width: 782px) {

  body {
    overflow-x: hidden !important;
  }

  /* Hide the mobile menu system completely */
  .mobile-menu-toggle,
  .menu-toggle,
  .hamburger,
  .hamburger-menu,
  .nav-toggle,
  .navbar-toggle,
  .toggle-menu,
  .mobile-nav,
  .mobile-navigation,
  .mobile-menu,
  .main-navigation,
  .primary-navigation,
  .site-navigation,
  .nav-menu,
  .primary-menu,
  .header-menu,
  .menu-primary-menu-container,
  #site-navigation,
  #primary-navigation,
  #mobile-menu,
  #primary-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  /* Reset only the header so it does not slide, overlap, or stretch */
  .site-header,
  header.site-header,
  header,
  .header,
  .main-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-bottom: 3px solid #d4af37 !important;
    z-index: 10 !important;
  }

  .top-bar,
  .announcement-bar,
  .header-top,
  .top-strip {
    display: block !important;
    width: 100% !important;
    padding: 10px 14px !important;
    margin: 0 !important;
    text-align: center !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  .header-inner,
  .site-branding,
  .brand,
  .branding,
  .logo-wrap,
  .logo-section,
  .nav-wrap {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 14px 14px 18px !important;
    text-align: center !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .custom-logo,
  img.custom-logo,
  .site-logo img,
  .logo img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 56px !important;
    max-height: 56px !important;
    margin: 0 auto 8px !important;
  }

  .site-title,
  .brand-title,
  .logo-text,
  .site-branding h1,
  .site-branding p {
    display: block !important;
    max-width: 94vw !important;
    margin: 6px auto 0 !important;
    padding: 0 !important;
    text-align: center !important;
    font-size: 24px !important;
    line-height: 1.15 !important;
  }

  /* Header CTA only */
  header .btn,
  .site-header .btn,
  header .schedule-now-btn,
  .site-header .schedule-now-btn,
  header .schedule-button,
  .site-header .schedule-button,
  header .header-cta,
  .site-header .header-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: 88vw !important;
    min-height: 46px !important;
    margin: 16px auto 0 !important;
    padding: 12px 24px !important;
    border-radius: 999px !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    text-align: center !important;
  }
}


/* =========================================================
   THERMAL PAGE REAL IMAGES - MOBILE + DESKTOP
   Only targets newly added thermal image classes.
   Header/navigation are not touched.
   ========================================================= */
.thermal-real-photo-section{
  padding: 56px 0;
}

.thermal-real-photo-card{
  max-width: 1100px;
  margin: 0 auto;
}

.thermal-real-photo-card img,
.thermal-real-example-img{
  display: block;
  width: 100%;
  height: auto;
  visibility: visible;
  opacity: 1;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15,23,42,.18);
}

.thermal-real-photo-text{
  margin-top: 22px;
  max-width: 850px;
}

.thermal-real-photo-text h2{
  margin: 0 0 12px;
}

.thermal-real-photo-text p{
  margin: 0;
  line-height: 1.6;
}

.thermal-photo-grid .thermal-example-card{
  overflow: visible;
}

.thermal-photo-grid .thermal-example-card .thermal-real-example-img{
  margin-bottom: 16px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media screen and (max-width: 782px){
  .thermal-real-photo-section{
    padding: 34px 0;
  }

  .thermal-real-photo-card{
    padding: 0 18px;
  }

  .thermal-real-photo-card img,
  .thermal-real-example-img{
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 28px rgba(15,23,42,.16) !important;
  }

  .thermal-real-photo-text{
    margin-top: 18px;
  }

  .thermal-real-photo-text h2{
    font-size: 28px;
    line-height: 1.15;
  }

  .thermal-real-photo-text p{
    font-size: 17px;
    line-height: 1.55;
  }

  .thermal-photo-grid .thermal-example-card{
    margin-bottom: 28px !important;
  }

  .thermal-photo-grid .thermal-example-card .thermal-real-example-img{
    aspect-ratio: 16 / 10;
    object-fit: cover !important;
    margin: 0 0 14px !important;
  }
}


/* FINAL: Thermal Imaging real photos visible on mobile.
   These selectors only target new thermal photo classes. */
.mecca-thermal-main-photo-section{
  padding: 46px 0;
}

.mecca-thermal-main-photo,
.mecca-thermal-example-photo{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15,23,42,.18);
}

.thermal-photo-grid .thermal-example-card{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.thermal-photo-grid .thermal-example-card .mecca-thermal-example-photo{
  margin-bottom: 16px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media screen and (max-width: 782px){
  .mecca-thermal-main-photo-section{
    padding: 28px 0 !important;
  }

  .mecca-thermal-main-photo-section .container{
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .mecca-thermal-main-photo,
  .mecca-thermal-example-photo{
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    margin: 0 auto 16px !important;
  }

  .thermal-photo-grid,
  .warranty-photo-grid.thermal-photo-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .thermal-photo-grid .thermal-example-card{
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    margin-bottom: 20px !important;
  }

  .thermal-photo-grid .thermal-example-card .mecca-thermal-example-photo{
    aspect-ratio: 16 / 10 !important;
    object-fit: cover !important;
  }
}


/* =========================================================
   THERMAL IMAGING MOBILE 10/10 SHOWCASE
   Scoped only to the Thermal Imaging examples area.
   Header/navigation/pricing untouched.
   ========================================================= */
.mecca-thermal-showcase{
  padding: 72px 0;
}

.mecca-thermal-feature-photo{
  max-width: 1080px;
  margin: 34px auto 34px;
}

.mecca-thermal-feature-photo img,
.mecca-thermal-example-card img{
  display: block !important;
  width: 100% !important;
  height: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15,23,42,.18);
}

.mecca-thermal-example-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.mecca-thermal-example-card{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15,23,42,.12);
  border: 1px solid rgba(15,23,42,.08);
}

.mecca-thermal-example-card img{
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mecca-thermal-example-copy{
  padding: 20px;
}

.mecca-thermal-example-copy span{
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 8px;
}

.mecca-thermal-example-copy h3{
  margin: 0 0 10px;
  line-height: 1.15;
}

.mecca-thermal-example-copy p{
  margin: 0;
  line-height: 1.55;
}

@media screen and (max-width: 782px){
  .mecca-thermal-showcase{
    padding: 42px 0 !important;
  }

  .mecca-thermal-showcase .container{
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .mecca-thermal-showcase .section-heading{
    margin-bottom: 22px !important;
  }

  .mecca-thermal-showcase .section-heading h2{
    font-size: 36px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 16px !important;
  }

  .mecca-thermal-showcase .section-intro{
    font-size: 18px !important;
    line-height: 1.55 !important;
  }

  .mecca-thermal-feature-photo{
    margin: 24px auto 26px !important;
  }

  .mecca-thermal-feature-photo img{
    border-radius: 16px !important;
    box-shadow: 0 12px 28px rgba(15,23,42,.16) !important;
  }

  .mecca-thermal-example-grid{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    margin-top: 22px !important;
  }

  .mecca-thermal-example-card{
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  .mecca-thermal-example-card img{
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .mecca-thermal-example-copy{
    padding: 18px !important;
  }

  .mecca-thermal-example-copy h3{
    font-size: 24px !important;
  }

  .mecca-thermal-example-copy p{
    font-size: 17px !important;
    line-height: 1.55 !important;
  }

  /* Hide leftover placeholder-only thermal example divs if cache/old markup exists */
  .thermal-example.moisture,
  .thermal-example.insulation,
  .thermal-example.electrical{
    display:none !important;
  }
}


/* =========================================================
   FINAL POLISHED THERMAL MOBILE SECTION
   Scoped only to .mecca-thermal-showcase.
   ========================================================= */
.mecca-thermal-showcase{
  padding: 70px 0;
}

.mecca-thermal-showcase .section-heading{
  max-width: 900px;
  margin: 0 auto 34px;
}

.mecca-thermal-feature-photo{
  max-width: 1040px;
  margin: 0 auto 30px;
}

.mecca-thermal-feature-photo img{
  display:block !important;
  width:100% !important;
  height:auto !important;
  border-radius:24px;
  box-shadow:0 20px 45px rgba(15,23,42,.18);
}

.mecca-thermal-feature-photo figcaption{
  margin-top:12px;
  font-size:15px;
  color:#64748b;
  text-align:center;
}

.mecca-thermal-example-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  max-width:1040px;
  margin:28px auto 0;
}

.mecca-thermal-example-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 14px 32px rgba(15,23,42,.11);
}

.mecca-thermal-example-card img{
  display:block !important;
  width:100% !important;
  height:auto !important;
  aspect-ratio:16 / 9;
  object-fit:cover;
}

.mecca-thermal-example-copy{
  padding:20px;
}

.mecca-thermal-example-copy span{
  display:block;
  color:#c49a22;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.mecca-thermal-example-copy h3{
  margin:0 0 10px;
  line-height:1.15;
}

.mecca-thermal-example-copy p{
  margin:0;
  line-height:1.55;
}

@media screen and (max-width:782px){
  .mecca-thermal-showcase{
    padding:42px 0 !important;
  }

  .mecca-thermal-showcase .container{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .mecca-thermal-showcase .section-heading{
    margin-bottom:24px !important;
  }

  .mecca-thermal-showcase .section-heading .kicker{
    font-size:13px !important;
    letter-spacing:.14em !important;
    margin-bottom:14px !important;
  }

  .mecca-thermal-showcase .section-heading h2{
    font-size:34px !important;
    line-height:1.08 !important;
    letter-spacing:-.035em !important;
    margin-bottom:16px !important;
  }

  .mecca-thermal-showcase .section-intro{
    font-size:17px !important;
    line-height:1.55 !important;
    max-width:100% !important;
  }

  .mecca-thermal-feature-photo{
    margin:0 auto 24px !important;
  }

  .mecca-thermal-feature-photo img{
    border-radius:16px !important;
    box-shadow:0 12px 28px rgba(15,23,42,.16) !important;
  }

  .mecca-thermal-feature-photo figcaption{
    font-size:14px !important;
    line-height:1.4 !important;
    margin-top:10px !important;
  }

  .mecca-thermal-example-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:20px !important;
    margin-top:22px !important;
  }

  .mecca-thermal-example-card{
    border-radius:18px !important;
    box-shadow:0 10px 26px rgba(15,23,42,.10) !important;
  }

  .mecca-thermal-example-card img{
    width:100% !important;
    height:auto !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
  }

  .mecca-thermal-example-copy{
    padding:18px !important;
  }

  .mecca-thermal-example-copy h3{
    font-size:23px !important;
  }

  .mecca-thermal-example-copy p{
    font-size:16px !important;
    line-height:1.55 !important;
  }

  /* Remove leftover placeholder/fake example divs if old markup is cached */
  .mecca-thermal-showcase .thermal-example,
  .thermal-example.moisture,
  .thermal-example.insulation,
  .thermal-example.electrical{
    display:none !important;
  }
}

/* =========================================================
   EMERGENCY FIX: Restore mobile navigation tabs + clean thermal crops
   Added after prior mobile rules so it overrides accidental nav hiding.
   ========================================================= */
@media screen and (max-width: 782px){
  .site-header,
  header.site-header{
    position: relative !important;
    overflow: visible !important;
  }

  .premium-nav-wrap,
  .nav-wrap{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 12px 16px !important;
    overflow: visible !important;
  }

  .nav.main-navigation,
  nav.nav.main-navigation,
  .site-header .main-navigation,
  .site-header .nav{
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 8px auto 0 !important;
    padding: 0 6px !important;
    overflow: visible !important;
    pointer-events: auto !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
  }

  .nav.main-navigation a,
  nav.nav.main-navigation a,
  .site-header .main-navigation a,
  .site-header .nav a{
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 34px !important;
    padding: 8px 10px !important;
    border: 1px solid rgba(212,175,55,.45) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    pointer-events: auto !important;
  }

  .header-actions{
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    margin-top: 4px !important;
  }

  .header-phone{
    display: none !important;
  }

  .site-header .schedule-now-btn{
    margin: 4px auto 0 !important;
    font-size: 15px !important;
    min-height: 42px !important;
    padding: 11px 20px !important;
  }

  .header-top-inner{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    text-align: center !important;
  }
}

.mecca-thermal-feature-photo,
.mecca-thermal-example-card{
  overflow: hidden !important;
}

.mecca-thermal-feature-photo img{
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.mecca-thermal-example-card img{
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.mecca-thermal-example-card:nth-child(2) img{
  object-position: 50% 50% !important;
}

.mecca-thermal-example-card:nth-child(3) img{
  object-position: 50% 52% !important;
}


/* =========================================================
   FINAL CROSS-BROWSER SAFARI / CHROME / EDGE / FIREFOX FIX
   Keeps mobile navigation visible and makes thermal images
   crop consistently without aspect-ratio glitches.
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
.site-header, .premium-header { z-index: 9999 !important; width: 100% !important; -webkit-transform: translateZ(0); transform: translateZ(0); }
.site-header .container, .nav-wrap, .premium-nav-wrap { max-width: 1180px !important; margin-left: auto !important; margin-right: auto !important; }
.premium-nav-wrap, .nav-wrap { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; gap: 12px !important; overflow: visible !important; min-height: auto !important; }
.main-navigation, .nav.main-navigation, .site-header .nav { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; gap: 8px 10px !important; overflow: visible !important; max-width: 100% !important; }
.main-navigation a, .nav.main-navigation a, .site-header .nav a { display: inline-flex !important; -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; white-space: nowrap !important; text-decoration: none !important; -webkit-font-smoothing: antialiased; }
.header-actions { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; gap: 10px !important; }
.mecca-thermal-showcase { overflow: hidden !important; }
.mecca-thermal-feature-photo, .mecca-thermal-example-card { overflow: hidden !important; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.mecca-thermal-feature-photo img { display: block !important; width: 100% !important; height: 420px !important; max-height: 420px !important; object-fit: cover !important; -o-object-fit: cover !important; object-position: center center !important; -o-object-position: center center !important; border: 0 !important; }
.mecca-thermal-example-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 22px !important; align-items: stretch !important; }
.mecca-thermal-example-card { display: flex !important; flex-direction: column !important; }
.mecca-thermal-example-card img { display: block !important; width: 100% !important; height: 215px !important; max-height: 215px !important; min-height: 215px !important; object-fit: cover !important; -o-object-fit: cover !important; object-position: center center !important; -o-object-position: center center !important; border: 0 !important; border-radius: 0 !important; }
.mecca-thermal-example-copy { flex: 1 1 auto !important; }
@media screen and (max-width: 782px) {
  .site-header, .premium-header { position: relative !important; top: auto !important; overflow: visible !important; }
  .header-top-strip, .header-top-inner { width: 100% !important; overflow: visible !important; }
  .header-top-inner { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; gap: 4px !important; text-align: center !important; padding-left: 12px !important; padding-right: 12px !important; }
  .premium-nav-wrap, .nav-wrap { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: flex-start !important; width: 100% !important; max-width: 100% !important; gap: 10px !important; padding: 14px 12px 16px !important; overflow: visible !important; }
  .logo { max-width: 100% !important; justify-content: center !important; text-align: center !important; }
  .logo img, .custom-logo { max-width: 86px !important; height: auto !important; }
  .logo-text { font-size: 18px !important; line-height: 1.15 !important; white-space: normal !important; }
  .main-navigation, .nav.main-navigation, nav.nav.main-navigation, .site-header .nav { display: flex !important; visibility: visible !important; opacity: 1 !important; flex-wrap: wrap !important; align-items: center !important; justify-content: center !important; gap: 7px !important; width: 100% !important; max-width: 100% !important; height: auto !important; max-height: none !important; overflow: visible !important; margin: 6px auto 0 !important; padding: 0 !important; }
  .main-navigation a, .nav.main-navigation a, nav.nav.main-navigation a, .site-header .nav a { display: inline-flex !important; visibility: visible !important; opacity: 1 !important; min-height: 34px !important; padding: 8px 10px !important; border: 1px solid rgba(212,175,55,.45) !important; border-radius: 999px !important; background: rgba(255,255,255,.08) !important; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; font-size: 12px !important; line-height: 1.1 !important; font-weight: 800 !important; white-space: nowrap !important; width: auto !important; max-width: 100% !important; }
  .header-actions { width: 100% !important; justify-content: center !important; align-items: center !important; margin-top: 2px !important; }
  .header-phone { display: none !important; }
  .schedule-now-btn { min-height: 42px !important; padding: 11px 20px !important; font-size: 15px !important; line-height: 1.1 !important; margin: 0 auto !important; }
  .mecca-thermal-showcase { padding: 42px 0 !important; }
  .mecca-thermal-example-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 20px !important; max-width: 100% !important; }
  .mecca-thermal-feature-photo img { height: 220px !important; max-height: 220px !important; min-height: 220px !important; object-fit: cover !important; object-position: center center !important; }
  .mecca-thermal-example-card img { height: 210px !important; max-height: 210px !important; min-height: 210px !important; object-fit: cover !important; object-position: center center !important; }
}
@media screen and (min-width: 783px) and (max-width: 1100px) {
  .mecca-thermal-example-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .mecca-thermal-feature-photo img { height: 360px !important; max-height: 360px !important; }
  .mecca-thermal-example-card img { height: 230px !important; max-height: 230px !important; }
}
@media screen and (max-width: 420px) {
  .main-navigation a, .nav.main-navigation a, nav.nav.main-navigation a, .site-header .nav a { font-size: 11.5px !important; padding: 7px 9px !important; }
  .mecca-thermal-feature-photo img, .mecca-thermal-example-card img { height: 195px !important; max-height: 195px !important; min-height: 195px !important; }
}


/* =========================================================
   FINAL JJ FIX: SAFARI MOBILE HEADER + THERMAL IMAGE CROPS
   Date: 2026-05-30
   Purpose: prevent Safari from stacking the whole navigation vertically,
   keep tabs visible in a compact horizontal scroller, and force consistent
   thermal image sizing/cropping in Safari, Chrome, Edge, and Firefox.
   ========================================================= */
.site-header.premium-header,
.site-header{
  background:#0f172a !important;
  border-bottom:3px solid #d4af37 !important;
  width:100% !important;
  z-index:9999 !important;
}
.site-header img,
.site-header .custom-logo,
.site-header .custom-logo-link img{
  display:block !important;
  object-fit:contain !important;
  -o-object-fit:contain !important;
}
.mecca-thermal-showcase img,
.mecca-thermal-feature-photo img,
.mecca-thermal-example-card img{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
  width:100% !important;
  max-width:100% !important;
  object-fit:cover !important;
  -o-object-fit:cover !important;
  transform:translateZ(0) !important;
  -webkit-transform:translateZ(0) !important;
  backface-visibility:hidden !important;
  -webkit-backface-visibility:hidden !important;
}
.mecca-thermal-feature-photo{
  border-radius:20px !important;
  overflow:hidden !important;
  background:#e5e7eb !important;
}
.mecca-thermal-feature-photo img{
  height:420px !important;
  min-height:420px !important;
  max-height:420px !important;
  object-position:center center !important;
}
.mecca-thermal-example-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:24px !important;
}
.mecca-thermal-example-card{
  overflow:hidden !important;
  border-radius:20px !important;
  background:#fff !important;
}
.mecca-thermal-example-card img{
  height:225px !important;
  min-height:225px !important;
  max-height:225px !important;
  border-radius:0 !important;
}
.mecca-thermal-example-card:nth-child(1) img{object-position:center center !important;}
.mecca-thermal-example-card:nth-child(2) img{object-position:center center !important;}
.mecca-thermal-example-card:nth-child(3) img{object-position:center center !important;}

@media screen and (max-width:782px){
  .site-header.premium-header,
  .site-header{
    position:relative !important;
    top:auto !important;
    padding:0 !important;
    max-height:none !important;
    overflow:visible !important;
  }
  .header-top-strip{
    display:block !important;
    padding:0 !important;
    background:#080e1c !important;
  }
  .header-top-inner{
    min-height:42px !important;
    padding:8px 10px !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    text-align:center !important;
  }
  .header-top-inner span{display:none !important;}
  .header-top-inner a{
    color:#fff !important;
    font-size:16px !important;
    line-height:1.2 !important;
    font-weight:900 !important;
    text-decoration:none !important;
  }
  .premium-nav-wrap,
  .nav-wrap,
  .site-header .premium-nav-wrap,
  .site-header .nav-wrap{
    width:100% !important;
    max-width:100% !important;
    min-height:0 !important;
    padding:10px 10px 12px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:8px !important;
    overflow:hidden !important;
  }
  .site-header .logo,
  .logo{
    display:flex !important;
    flex-direction:row !important;
    justify-content:center !important;
    align-items:center !important;
    gap:8px !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    margin:0 auto !important;
  }
  .site-header .custom-logo,
  .site-header img.custom-logo,
  .site-header .logo img,
  .site-header .custom-logo-link img{
    height:36px !important;
    max-height:36px !important;
    width:auto !important;
    max-width:48px !important;
  }
  .logo-text{
    font-size:21px !important;
    line-height:1.08 !important;
    font-weight:950 !important;
    white-space:nowrap !important;
    color:#fff !important;
  }
  .main-navigation,
  .nav.main-navigation,
  nav.nav.main-navigation,
  .site-header .nav{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    justify-content:flex-start !important;
    align-items:center !important;
    gap:8px !important;
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    max-height:none !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    scrollbar-width:none !important;
    margin:2px 0 0 !important;
    padding:2px 4px 8px !important;
    white-space:nowrap !important;
  }
  .main-navigation::-webkit-scrollbar,
  .nav.main-navigation::-webkit-scrollbar,
  .site-header .nav::-webkit-scrollbar{display:none !important;}
  .main-navigation a,
  .nav.main-navigation a,
  nav.nav.main-navigation a,
  .site-header .nav a{
    flex:0 0 auto !important;
    display:inline-flex !important;
    width:auto !important;
    min-width:auto !important;
    max-width:none !important;
    min-height:36px !important;
    padding:9px 12px !important;
    border:1px solid rgba(212,175,55,.55) !important;
    border-radius:999px !important;
    background:rgba(255,255,255,.08) !important;
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;
    font-size:13px !important;
    line-height:1 !important;
    font-weight:850 !important;
    text-align:center !important;
    text-decoration:none !important;
    white-space:nowrap !important;
  }
  .header-actions{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    margin:0 !important;
    gap:0 !important;
  }
  .header-phone{display:none !important;}
  .site-header .schedule-now-btn,
  .schedule-now-btn{
    display:inline-flex !important;
    width:auto !important;
    min-width:190px !important;
    min-height:44px !important;
    justify-content:center !important;
    align-items:center !important;
    margin:2px auto 0 !important;
    padding:12px 24px !important;
    border-radius:999px !important;
    font-size:17px !important;
    line-height:1 !important;
    font-weight:950 !important;
    background:#d4af37 !important;
    color:#0f172a !important;
    -webkit-text-fill-color:#0f172a !important;
  }
  .mecca-thermal-feature-photo img{
    height:230px !important;
    min-height:230px !important;
    max-height:230px !important;
  }
  .mecca-thermal-example-grid{
    grid-template-columns:1fr !important;
    gap:22px !important;
  }
  .mecca-thermal-example-card img{
    height:230px !important;
    min-height:230px !important;
    max-height:230px !important;
  }
}
@media screen and (max-width:430px){
  .logo-text{font-size:19px !important;}
  .site-header .custom-logo,
  .site-header img.custom-logo,
  .site-header .logo img,
  .site-header .custom-logo-link img{height:32px !important;max-height:32px !important;max-width:42px !important;}
  .main-navigation a,
  .nav.main-navigation a,
  nav.nav.main-navigation a,
  .site-header .nav a{font-size:12px !important;padding:8px 10px !important;min-height:34px !important;}
  .mecca-thermal-feature-photo img,
  .mecca-thermal-example-card img{height:215px !important;min-height:215px !important;max-height:215px !important;}
}
@media screen and (min-width:783px) and (max-width:1100px){
  .mecca-thermal-example-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .mecca-thermal-feature-photo img{height:360px !important;min-height:360px !important;max-height:360px !important;}
  .mecca-thermal-example-card img{height:240px !important;min-height:240px !important;max-height:240px !important;}
}

/* =========================================================
   MECCA FINAL MOBILE SAFARI HEADER + CROSS-BROWSER THERMAL IMAGE FIX
   Added 2026-05-30. This block is intentionally last so it wins over
   older mobile/header/image rules in Safari, Chrome, Edge and Firefox.
   ========================================================= */
html{ -webkit-text-size-adjust:100%; text-size-adjust:100%; }
.site-header, .premium-header{ z-index:9999; }
.site-header .custom-logo, .site-header img.custom-logo, .site-header .logo img, .site-header .custom-logo-link img{
  object-fit:contain !important;
}
@media only screen and (max-width: 782px){
  body{ padding-top:0 !important; overflow-x:hidden !important; }
  .site-header.premium-header{
    position:relative !important;
    width:100% !important;
    height:auto !important;
    max-height:none !important;
    overflow:visible !important;
    background:#0f172a !important;
    border-bottom:3px solid #d4af37 !important;
  }
  .header-top-strip{
    height:auto !important;
    min-height:38px !important;
    padding:0 !important;
    background:#080d1a !important;
  }
  .header-top-inner{
    width:100% !important;
    max-width:100% !important;
    min-height:38px !important;
    padding:8px 10px !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
  }
  .header-top-inner span{ display:none !important; }
  .header-top-inner a{
    display:block !important;
    font-size:15px !important;
    line-height:1.15 !important;
    font-weight:900 !important;
    letter-spacing:.01em !important;
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;
    text-decoration:none !important;
  }
  .premium-nav-wrap,
  .nav-wrap,
  .site-header .premium-nav-wrap,
  .site-header .nav-wrap{
    box-sizing:border-box !important;
    width:100% !important;
    max-width:100% !important;
    padding:10px 10px 12px !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    align-items:center !important;
    justify-items:center !important;
    gap:9px !important;
    overflow:visible !important;
    background:#0f172a !important;
  }
  .site-header .logo,
  .logo{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px !important;
    margin:0 auto !important;
    padding:0 !important;
    text-align:center !important;
  }
  .site-header .custom-logo-link{ display:flex !important; align-items:center !important; justify-content:center !important; }
  .site-header .custom-logo,
  .site-header img.custom-logo,
  .site-header .logo img,
  .site-header .custom-logo-link img{
    display:block !important;
    width:auto !important;
    height:34px !important;
    max-width:44px !important;
    max-height:34px !important;
    min-height:0 !important;
    margin:0 !important;
    border-radius:4px !important;
  }
  .logo-text{
    display:block !important;
    width:auto !important;
    max-width:calc(100vw - 80px) !important;
    font-size:20px !important;
    line-height:1.1 !important;
    font-weight:950 !important;
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }
  .header-actions{
    order:2 !important;
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    margin:0 !important;
  }
  .header-phone{ display:none !important; }
  .site-header .schedule-now-btn,
  .schedule-now-btn{
    display:inline-flex !important;
    justify-content:center !important;
    align-items:center !important;
    width:auto !important;
    min-width:176px !important;
    max-width:86vw !important;
    min-height:42px !important;
    padding:11px 24px !important;
    margin:0 auto !important;
    border-radius:999px !important;
    background:#d4af37 !important;
    color:#0f172a !important;
    -webkit-text-fill-color:#0f172a !important;
    font-size:16px !important;
    line-height:1 !important;
    font-weight:950 !important;
    text-decoration:none !important;
  }
  .main-navigation,
  .nav.main-navigation,
  nav.nav.main-navigation,
  .site-header .nav{
    order:3 !important;
    box-sizing:border-box !important;
    width:100% !important;
    max-width:100% !important;
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:8px !important;
    height:auto !important;
    max-height:none !important;
    margin:0 !important;
    padding:2px 2px 7px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    scrollbar-width:none !important;
    white-space:nowrap !important;
  }
  .main-navigation::-webkit-scrollbar,
  .nav.main-navigation::-webkit-scrollbar,
  .site-header .nav::-webkit-scrollbar{ display:none !important; }
  .main-navigation a,
  .nav.main-navigation a,
  nav.nav.main-navigation a,
  .site-header .nav a{
    flex:0 0 auto !important;
    display:inline-flex !important;
    justify-content:center !important;
    align-items:center !important;
    width:auto !important;
    min-width:0 !important;
    max-width:none !important;
    min-height:34px !important;
    padding:8px 12px !important;
    margin:0 !important;
    border:1px solid rgba(212,175,55,.58) !important;
    border-radius:999px !important;
    background:rgba(255,255,255,.075) !important;
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;
    font-size:12.5px !important;
    line-height:1 !important;
    font-weight:850 !important;
    text-decoration:none !important;
    white-space:nowrap !important;
  }
}
@media only screen and (max-width: 390px){
  .logo-text{ font-size:18px !important; }
  .header-top-inner a{ font-size:14px !important; }
  .main-navigation a,
  .nav.main-navigation a,
  nav.nav.main-navigation a,
  .site-header .nav a{ font-size:12px !important; padding:8px 10px !important; }
  .site-header .schedule-now-btn,.schedule-now-btn{ min-height:40px !important; font-size:15px !important; }
}

/* Thermal photos: fixed wrapper heights + physical 16:9 images + Safari-safe object-fit. */
.mecca-thermal-showcase .container{ max-width:1180px !important; }
.mecca-thermal-feature-photo,
.mecca-thermal-example-card{
  overflow:hidden !important;
  background:#fff !important;
  -webkit-transform:translateZ(0) !important;
  transform:translateZ(0) !important;
  isolation:isolate !important;
}
.mecca-thermal-feature-photo img,
.mecca-thermal-example-card > img{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  height:100% !important;
  min-height:0 !important;
  object-fit:cover !important;
  -o-object-fit:cover !important;
  object-position:center center !important;
  -webkit-transform:translateZ(0) !important;
  transform:translateZ(0) !important;
  backface-visibility:hidden !important;
  -webkit-backface-visibility:hidden !important;
  border:0 !important;
  margin:0 !important;
  padding:0 !important;
}
.mecca-thermal-feature-photo{
  height:420px !important;
  max-height:420px !important;
  border-radius:22px !important;
}
.mecca-thermal-example-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:24px !important;
  align-items:stretch !important;
}
.mecca-thermal-example-card{
  display:flex !important;
  flex-direction:column !important;
  border-radius:20px !important;
}
.mecca-thermal-example-card > img{
  height:230px !important;
  min-height:230px !important;
  max-height:230px !important;
  flex:0 0 230px !important;
}
.mecca-thermal-example-copy{ flex:1 1 auto !important; }
@media only screen and (max-width: 1100px) and (min-width:783px){
  .mecca-thermal-feature-photo{ height:360px !important; max-height:360px !important; }
  .mecca-thermal-example-grid{ grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
  .mecca-thermal-example-card > img{ height:245px !important; min-height:245px !important; max-height:245px !important; flex-basis:245px !important; }
}
@media only screen and (max-width: 782px){
  .mecca-thermal-showcase{ padding-top:44px !important; padding-bottom:48px !important; }
  .mecca-thermal-feature-photo{ height:230px !important; max-height:230px !important; border-radius:18px !important; }
  .mecca-thermal-example-grid{ grid-template-columns:1fr !important; gap:22px !important; }
  .mecca-thermal-example-card{ border-radius:18px !important; }
  .mecca-thermal-example-card > img{ height:230px !important; min-height:230px !important; max-height:230px !important; flex-basis:230px !important; }
}
@media only screen and (max-width: 430px){
  .mecca-thermal-feature-photo{ height:218px !important; max-height:218px !important; }
  .mecca-thermal-example-card > img{ height:218px !important; min-height:218px !important; max-height:218px !important; flex-basis:218px !important; }
}

/* =========================================================
   JJ SAFARI MOBILE HEADER FINAL: no horizontal nav scrolling
   Added after all previous overrides so Safari, Chrome, Edge,
   and Firefox use a clean wrapped mobile navigation.
   ========================================================= */
@media only screen and (max-width: 782px){
  html, body{
    width:100% !important;
    max-width:100% !important;
    overflow-x:hidden !important;
  }
  .site-header.premium-header,
  .site-header{
    width:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
    background:#0f172a !important;
  }
  .premium-nav-wrap,
  .nav-wrap,
  .site-header .premium-nav-wrap,
  .site-header .nav-wrap{
    width:100% !important;
    max-width:100% !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px !important;
    padding:12px 12px 14px !important;
    overflow:hidden !important;
  }
  .site-header .logo,
  .logo{
    width:100% !important;
    justify-content:center !important;
    text-align:center !important;
  }
  .logo-text{
    max-width:calc(100vw - 82px) !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }
  .main-navigation,
  .nav.main-navigation,
  nav.nav.main-navigation,
  .site-header .nav{
    order:2 !important;
    width:100% !important;
    max-width:390px !important;
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:7px !important;
    align-items:stretch !important;
    justify-content:center !important;
    margin:0 auto !important;
    padding:0 !important;
    overflow-x:hidden !important;
    overflow-y:visible !important;
    white-space:normal !important;
    -webkit-overflow-scrolling:auto !important;
  }
  .main-navigation a,
  .nav.main-navigation a,
  nav.nav.main-navigation a,
  .site-header .nav a{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    min-height:34px !important;
    padding:7px 5px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    white-space:normal !important;
    overflow:hidden !important;
    overflow-wrap:normal !important;
    word-break:normal !important;
    hyphens:none !important;
    font-size:11.2px !important;
    line-height:1.05 !important;
    letter-spacing:-.02em !important;
    border-radius:999px !important;
    border:1px solid rgba(212,175,55,.58) !important;
    background:rgba(255,255,255,.075) !important;
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;
  }
  .header-actions{
    order:3 !important;
    width:100% !important;
    justify-content:center !important;
  }
}
@media only screen and (max-width: 360px){
  .main-navigation,
  .nav.main-navigation,
  nav.nav.main-navigation,
  .site-header .nav{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    max-width:330px !important;
  }
  .main-navigation a,
  .nav.main-navigation a,
  nav.nav.main-navigation a,
  .site-header .nav a{
    font-size:11.5px !important;
    min-height:32px !important;
  }
}


/* MOBILE HAMBURGER MENU - CROSS BROWSER FINAL */
.mobile-menu-toggle { display: none; }

@media (max-width: 768px) {
  html, body { max-width: 100%; overflow-x: hidden !important; }

  .site-header { position: sticky; top: 0; z-index: 9999; }

  .header-top-strip { padding: 8px 12px !important; }
  .header-top-inner {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0 !important;
  }
  .header-top-inner span { display: none !important; }
  .header-top-inner a {
    display: inline-flex !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 900 !important;
    text-decoration: none !important;
  }

  .premium-nav-wrap,
  .nav-wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 16px !important;
    overflow: visible !important;
  }

  .logo {
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
  }
  .site-header .custom-logo,
  .site-header img.custom-logo,
  .site-header .logo img,
  .site-header .custom-logo-link img {
    max-width: 36px !important;
    max-height: 36px !important;
    width: 36px !important;
    height: 36px !important;
    object-fit: contain !important;
    display: block !important;
  }
  .logo-text {
    display: block !important;
    color: #ffffff !important;
    font-size: 1.02rem !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
  }

  .mobile-menu-toggle {
    -webkit-appearance: none !important;
    appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: auto !important;
    min-width: 92px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    border: 1px solid rgba(212,175,55,.85) !important;
    border-radius: 999px !important;
    background: #d4af37 !important;
    color: #07111f !important;
    font-weight: 900 !important;
    font-size: 0.95rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
    box-shadow: none !important;
  }
  .hamburger-lines {
    display: inline-flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 18px !important;
  }
  .hamburger-lines span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #07111f !important;
  }

  .main-navigation,
  .nav {
    grid-column: 1 / -1 !important;
    display: none !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    flex-wrap: nowrap !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    margin: 8px 0 0 !important;
    padding: 10px 0 2px !important;
    border-top: 1px solid rgba(212,175,55,.28) !important;
  }
  .site-header.mobile-menu-open .main-navigation,
  .site-header.mobile-menu-open .nav {
    display: flex !important;
  }
  .main-navigation a,
  .nav a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(212,175,55,.55) !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,.06) !important;
    color: #ffffff !important;
    font-size: 0.98rem !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    text-align: left !important;
    text-decoration: none !important;
    white-space: normal !important;
  }
  .main-navigation a:hover,
  .nav a:hover,
  .main-navigation a:focus,
  .nav a:focus {
    background: rgba(212,175,55,.18) !important;
    color: #ffffff !important;
  }

  .header-actions {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin: 8px 0 0 !important;
  }
  .header-phone { display: none !important; }
  .schedule-now-btn {
    width: 100% !important;
    max-width: 320px !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    background: #d4af37 !important;
    color: #07111f !important;
    text-decoration: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-menu-toggle { display: none !important; }
}

/* FINAL MOBILE HAMBURGER MENU OVERRIDE - makes Safari/Chrome/Edge/Firefox match */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; max-width: 100% !important; }

  .site-header.premium-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
    background: #0f172a !important;
    border-bottom: 3px solid #d4af37 !important;
    padding: 0 !important;
  }

  .header-top-strip { padding: 0 !important; }
  .header-top-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 14px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
  .header-top-inner span { display: none !important; }
  .header-top-inner a {
    font-size: 0.98rem !important;
    font-weight: 900 !important;
    color: #fff !important;
  }

  .premium-nav-wrap,
  .site-header .nav-wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    padding: 14px 16px 18px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    align-items: center !important;
    gap: 12px !important;
    box-sizing: border-box !important;
  }

  .site-header .logo {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .site-header .custom-logo,
  .site-header img.custom-logo,
  .site-header .logo img,
  .site-header .custom-logo-link img {
    height: 44px !important;
    max-height: 44px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .site-header .logo-text {
    display: block !important;
    color: #fff !important;
    font-size: 1.32rem !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    min-width: 156px !important;
    min-height: 48px !important;
    margin: 2px auto 0 !important;
    padding: 12px 20px !important;
    border: 2px solid rgba(212,175,55,.72) !important;
    border-radius: 999px !important;
    background: #111827 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.20) !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }

  .hamburger-lines {
    width: 22px !important;
    height: 16px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex: 0 0 auto !important;
  }
  .hamburger-lines span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #d4af37 !important;
  }
  .mobile-menu-label { display: inline-block !important; color: #fff !important; }

  .site-header .main-navigation,
  .site-header .main-navigation.nav,
  .site-header .nav,
  #primary-navigation {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    padding: 8px 0 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    overflow: visible !important;
    white-space: normal !important;
  }

  .site-header.mobile-menu-open .main-navigation,
  .site-header.mobile-menu-open .main-navigation.nav,
  .site-header.mobile-menu-open .nav,
  .site-header.mobile-menu-open #primary-navigation {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .site-header .main-navigation a,
  .site-header .main-navigation.nav a,
  .site-header .nav a,
  #primary-navigation a {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 13px 14px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(212,175,55,.42) !important;
    background: #1f2937 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    text-align: center !important;
    font-size: 1rem !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    white-space: normal !important;
  }

  .header-actions {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
  }
  .header-actions .header-phone { display: none !important; }
  .header-actions .schedule-now-btn {
    width: min(320px, 88vw) !important;
    min-height: 54px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    padding: 14px 22px !important;
    border-radius: 999px !important;
    background: #d4af37 !important;
    color: #0f172a !important;
    font-size: 1.25rem !important;
    font-weight: 950 !important;
    text-decoration: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-menu-toggle { display: none !important; }
  .site-header .main-navigation,
  .site-header .main-navigation.nav,
  .site-header .nav,
  #primary-navigation {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* Move homepage inspector image above the About / Meet Your Inspector section */
.hero-grid-text-only{
  grid-template-columns:1fr !important;
  max-width:980px;
  text-align:left;
}
.hero-grid-text-only .hero-copy{
  max-width:900px;
}
.home-about-photo-strip{
  background:#f8fafc;
  padding:54px 0 0;
}
.home-about-photo-card{
  max-width:760px;
  margin:0 auto -24px;
  border-radius:24px;
  padding:10px;
  background:#ffffff;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 18px 42px rgba(15,23,42,.16);
  position:relative;
  z-index:2;
}
.home-about-photo-card img{
  display:block;
  width:100%;
  height:auto;
  max-height:640px;
  object-fit:cover;
  object-position:center top;
  border-radius:18px;
}
@media (max-width:768px){
  .home-about-photo-strip{padding:34px 0 0;}
  .home-about-photo-card{max-width:92%; margin-bottom:-12px; border-radius:18px; padding:8px;}
  .home-about-photo-card img{border-radius:14px; max-height:none;}
}


/* MECCA FINAL 9.5 MOBILE HEADER: one hamburger menu, no exposed nav tabs */
@media (max-width:768px){
  html,body{max-width:100%!important;overflow-x:hidden!important;}
  .site-header.premium-header{background:#0f172a!important;border-bottom:3px solid #d4af37!important;}
  .site-header .premium-nav-wrap,.site-header .nav-wrap{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:12px!important;width:100%!important;max-width:100%!important;padding:14px 16px 18px!important;box-sizing:border-box!important;overflow:visible!important;}
  .site-header .logo{display:flex!important;flex-direction:column!important;align-items:center!important;text-align:center!important;gap:8px!important;width:100%!important;}
  .site-header .logo-text{font-size:1.24rem!important;color:#fff!important;font-weight:950!important;text-align:center!important;}
  .site-header #primary-navigation,.site-header .main-navigation,.site-header .nav.main-navigation{display:none!important;visibility:hidden!important;height:0!important;max-height:0!important;overflow:hidden!important;}
  .site-header .mobile-menu-toggle{display:none!important;}
  .site-header .mecca-mobile-menu{display:block!important;visibility:visible!important;opacity:1!important;width:min(340px,92vw)!important;margin:0 auto!important;height:auto!important;max-height:none!important;overflow:visible!important;position:relative!important;z-index:1000000!important;}
  .site-header .mecca-mobile-menu summary{list-style:none!important;-webkit-appearance:none!important;appearance:none!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;width:100%!important;min-height:52px!important;padding:13px 20px!important;border:2px solid rgba(212,175,55,.9)!important;border-radius:999px!important;background:#d4af37!important;color:#0f172a!important;font-size:1.08rem!important;font-weight:950!important;box-sizing:border-box!important;}
  .site-header .mecca-mobile-menu summary::-webkit-details-marker{display:none!important;}
  .site-header .mecca-hamburger-icon{display:inline-flex!important;flex-direction:column!important;gap:4px!important;width:22px!important;}
  .site-header .mecca-hamburger-icon span{display:block!important;width:22px!important;height:3px!important;background:#0f172a!important;border-radius:999px!important;}
  .site-header .mecca-mobile-menu-links{display:none!important;flex-direction:column!important;gap:8px!important;width:100%!important;margin-top:10px!important;padding:10px!important;border-radius:18px!important;background:#0b1220!important;box-sizing:border-box!important;}
  .site-header .mecca-mobile-menu[open] .mecca-mobile-menu-links{display:flex!important;}
  .site-header .mecca-mobile-menu-links a{display:flex!important;align-items:center!important;justify-content:center!important;width:100%!important;min-height:44px!important;padding:12px 14px!important;border-radius:13px!important;border:1px solid rgba(212,175,55,.45)!important;background:#1f2937!important;color:#fff!important;text-decoration:none!important;text-align:center!important;font-size:1rem!important;font-weight:900!important;box-sizing:border-box!important;}
  .site-header .header-actions{width:100%!important;display:flex!important;justify-content:center!important;margin:0!important;}
}
@media (min-width:769px){.site-header .mecca-mobile-menu{display:none!important;}.site-header #primary-navigation{display:flex!important;visibility:visible!important;height:auto!important;max-height:none!important;}}


/* ==========================================================
   MECCA FINAL PATCH - Safari mobile + desktop thermal images
   Added 2026-05-30
   ========================================================== */
html, body { max-width: 100%; overflow-x: clip; }
@supports not (overflow: clip) { html, body { overflow-x: hidden; } }
.site-header, .site-header * { box-sizing: border-box; }
img, video, iframe { max-width: 100%; height: auto; }

/* Desktop-only thermal showcase: consistent, clean crop. Mobile stays controlled by existing mobile rules. */
@media (min-width: 851px) {
  .mecca-thermal-showcase .mecca-thermal-feature-photo {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border-radius: 24px;
  }
  .mecca-thermal-showcase .mecca-thermal-feature-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    object-position: center center;
  }
  .mecca-thermal-example-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch !important;
  }
  .mecca-thermal-example-card {
    overflow: hidden !important;
    border-radius: 22px !important;
    background: #fff !important;
  }
  .mecca-thermal-example-card img {
    display: block !important;
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .mecca-thermal-example-card:nth-child(3) img {
    object-position: center center !important;
  }
}

/* Safari/iPhone mobile header fix: no side-scroll, real hamburger/dropdown, no hidden links off-screen. */
@media screen and (max-width: 782px) {
  html, body, #page, .site, .site-header, .premium-header {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .site-header.premium-header {
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }
  .site-header .premium-nav-wrap,
  .site-header .nav-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: max(14px, env(safe-area-inset-left)) !important;
    padding-right: max(14px, env(safe-area-inset-right)) !important;
    overflow: visible !important;
  }
  .site-header .logo,
  .site-header .header-actions,
  .site-header .mecca-mobile-menu,
  .site-header .mecca-mobile-menu-links,
  .site-header .schedule-now-btn {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .site-header .mecca-mobile-menu {
    display: block !important;
    width: 100% !important;
    max-width: 340px !important;
    overflow: visible !important;
  }
  .site-header .mecca-mobile-menu summary {
    width: 100% !important;
    -webkit-user-select: none !important;
    user-select: none !important;
  }
  .site-header .mecca-mobile-menu-links a {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
  .site-header #primary-navigation {
    display: none !important;
    width: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
  }
  .hero, .section, .container {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}


/* =========================================================
   MECCA FINAL MOBILE MENU RESET
   Purpose: one clean mobile hamburger menu across Safari,
   Chrome, Edge, and Firefox. This overrides older menu fixes.
   ========================================================= */
.site-header.mecca-clean-header .mecca-menu-checkbox,
.site-header.mecca-clean-header .mecca-menu-button,
.site-header.mecca-clean-header .mecca-mobile-menu-panel {
  display: none !important;
}

@media (min-width: 769px) {
  .site-header.mecca-clean-header .premium-nav-wrap {
    width: min(1280px, 94%) !important;
    min-height: 74px !important;
    padding: 8px 0 !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 18px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .site-header.mecca-clean-header #primary-navigation {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
  }
  .site-header.mecca-clean-header #primary-navigation::-webkit-scrollbar { display: none !important; }
  .site-header.mecca-clean-header #primary-navigation a {
    display: inline-flex !important;
    width: auto !important;
    min-height: auto !important;
    padding: 9px 8px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: #fff !important;
    font-size: .82rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
  }
}

@media (max-width: 768px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100% !important;
  }

  .site-header.mecca-clean-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999999 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    background: #0f172a !important;
    border-bottom: 3px solid #d4af37 !important;
    transform: none !important;
  }

  .site-header.mecca-clean-header .header-top-strip {
    display: block !important;
    background: #070d1a !important;
    padding: 0 !important;
  }
  .site-header.mecca-clean-header .header-top-inner {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 9px 14px !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .site-header.mecca-clean-header .header-top-inner span { display: none !important; }
  .site-header.mecca-clean-header .header-top-inner a {
    color: #ffffff !important;
    font-size: .98rem !important;
    font-weight: 900 !important;
    text-decoration: none !important;
  }

  .site-header.mecca-clean-header .premium-nav-wrap,
  .site-header.mecca-clean-header .nav-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px max(14px, env(safe-area-inset-right)) 14px max(14px, env(safe-area-inset-left)) !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    min-height: 0 !important;
    background: #111827 !important;
    overflow: visible !important;
  }

  .site-header.mecca-clean-header .logo {
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 7px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-decoration: none !important;
  }
  .site-header.mecca-clean-header .custom-logo,
  .site-header.mecca-clean-header img.custom-logo,
  .site-header.mecca-clean-header .logo img,
  .site-header.mecca-clean-header .custom-logo-link img {
    width: auto !important;
    height: 42px !important;
    max-height: 42px !important;
    max-width: 90vw !important;
    object-fit: contain !important;
    display: block !important;
  }
  .site-header.mecca-clean-header .logo-text {
    display: block !important;
    color: #ffffff !important;
    font-size: 1.13rem !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    text-align: center !important;
  }

  /* Hide every old/open navigation system on mobile. */
  .site-header.mecca-clean-header #primary-navigation,
  .site-header.mecca-clean-header .main-navigation,
  .site-header.mecca-clean-header .nav.main-navigation,
  .site-header.mecca-clean-header .mobile-menu-toggle,
  .site-header.mecca-clean-header .mecca-mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .site-header.mecca-clean-header .mecca-menu-checkbox {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
  }
  .site-header.mecca-clean-header .mecca-menu-button {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: min(340px, 100%) !important;
    min-height: 52px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding: 13px 20px !important;
    border: 2px solid rgba(212,175,55,.95) !important;
    border-radius: 999px !important;
    background: #d4af37 !important;
    color: #0f172a !important;
    font-size: 1.08rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.22) !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-user-select: none !important;
    user-select: none !important;
  }
  .site-header.mecca-clean-header .mecca-menu-bars {
    display: inline-flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 22px !important;
    flex: 0 0 22px !important;
  }
  .site-header.mecca-clean-header .mecca-menu-bars span {
    display: block !important;
    width: 22px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #0f172a !important;
  }

  .site-header.mecca-clean-header .mecca-mobile-menu-panel {
    order: 3 !important;
    display: none !important;
    width: min(360px, 100%) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding: 10px !important;
    border: 1px solid rgba(212,175,55,.35) !important;
    border-radius: 18px !important;
    background: #0b1220 !important;
    flex-direction: column !important;
    gap: 8px !important;
    overflow: visible !important;
  }
  .site-header.mecca-clean-header .mecca-menu-checkbox:checked ~ .mecca-mobile-menu-panel {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .site-header.mecca-clean-header .mecca-mobile-menu-panel a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 12px 14px !important;
    box-sizing: border-box !important;
    border-radius: 13px !important;
    border: 1px solid rgba(212,175,55,.45) !important;
    background: #1f2937 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header.mecca-clean-header .header-actions {
    order: 4 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .site-header.mecca-clean-header .header-phone { display: none !important; }
  .site-header.mecca-clean-header .schedule-now-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(320px, 100%) !important;
    min-height: 52px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding: 13px 20px !important;
    border-radius: 999px !important;
    background: #d4af37 !important;
    color: #0f172a !important;
    text-decoration: none !important;
    font-size: 1.13rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
  }
}

/* =========================================================
   FINAL OVERRIDE 2026-05-30: MOBILE HEADER + PRICING VISIBILITY
   Fixes the visible flaw shown in Safari/WordPress mobile preview.
   Desktop layout is untouched.
   ========================================================= */
@media screen and (max-width: 782px) {
  html, body { width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }

  .site-header.mecca-clean-header {
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #0f172a !important;
    color: #ffffff !important;
    border-bottom: 3px solid #d4af37 !important;
    z-index: 99999 !important;
  }

  .site-header.mecca-clean-header .header-top-strip {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    background: #070d1a !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-header.mecca-clean-header .header-top-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 11px 16px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .site-header.mecca-clean-header .header-top-inner span { display: none !important; }
  .site-header.mecca-clean-header .header-top-inner a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    background: transparent !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .site-header.mecca-clean-header .premium-nav-wrap,
  .site-header.mecca-clean-header .nav-wrap {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 15px 16px 18px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    background: #111827 !important;
    text-align: center !important;
  }

  .site-header.mecca-clean-header .logo {
    order: 1 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 7px !important;
    text-decoration: none !important;
  }

  .site-header.mecca-clean-header .logo img,
  .site-header.mecca-clean-header .custom-logo,
  .site-header.mecca-clean-header img.custom-logo,
  .site-header.mecca-clean-header .custom-logo-link img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: 44px !important;
    max-height: 44px !important;
    max-width: 80px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }

  .site-header.mecca-clean-header .logo-text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    font-size: 1.2rem !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .site-header.mecca-clean-header #primary-navigation,
  .site-header.mecca-clean-header .main-navigation,
  .site-header.mecca-clean-header .nav.main-navigation {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .site-header.mecca-clean-header .mecca-menu-checkbox {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .site-header.mecca-clean-header .mecca-menu-button {
    order: 2 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: min(340px, 100%) !important;
    min-height: 52px !important;
    margin: 2px auto 0 !important;
    padding: 14px 22px !important;
    box-sizing: border-box !important;
    border: 2px solid #d4af37 !important;
    border-radius: 999px !important;
    background: #d4af37 !important;
    color: #0f172a !important;
    font-size: 1.05rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    text-align: center !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.20) !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .site-header.mecca-clean-header .mecca-menu-bars,
  .site-header.mecca-clean-header .mecca-menu-bars span {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .site-header.mecca-clean-header .mecca-menu-bars {
    width: 22px !important;
    flex: 0 0 22px !important;
  }
  .site-header.mecca-clean-header .mecca-menu-bars span {
    width: 22px !important;
    height: 3px !important;
    margin: 0 0 4px !important;
    border-radius: 999px !important;
    background: #0f172a !important;
  }
  .site-header.mecca-clean-header .mecca-menu-bars span:last-child { margin-bottom: 0 !important; }

  .site-header.mecca-clean-header .mecca-mobile-menu-panel {
    order: 3 !important;
    display: none !important;
    width: min(360px, 100%) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(212,175,55,.45) !important;
    border-radius: 18px !important;
    background: #0b1220 !important;
    flex-direction: column !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  .site-header.mecca-clean-header .mecca-menu-checkbox:checked ~ .mecca-mobile-menu-panel {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    pointer-events: auto !important;
  }

  .site-header.mecca-clean-header .mecca-mobile-menu-panel a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 12px 14px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(212,175,55,.45) !important;
    border-radius: 13px !important;
    background: #1f2937 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }

  .site-header.mecca-clean-header .header-actions {
    order: 4 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .site-header.mecca-clean-header .header-phone { display: none !important; }
  .site-header.mecca-clean-header .schedule-now-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(320px, 100%) !important;
    min-height: 52px !important;
    margin: 0 auto !important;
    padding: 14px 22px !important;
    border-radius: 999px !important;
    background: #d4af37 !important;
    color: #0f172a !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.18) !important;
  }

  .pricing-page-section .pricing-summary-card,
  .pricing-mobile-fix-summary {
    background: #0f172a !important;
    color: #ffffff !important;
    border-radius: 22px !important;
    padding: 24px 18px !important;
    margin: 0 0 28px !important;
    box-shadow: 0 14px 35px rgba(15,23,42,.18) !important;
    text-align: left !important;
  }
  .pricing-page-section .pricing-summary-card h2,
  .pricing-mobile-fix-summary h2 {
    color: #ffffff !important;
    font-size: 2rem !important;
    line-height: 1.12 !important;
    margin: 0 0 16px !important;
    text-shadow: none !important;
  }
  .pricing-page-section .pricing-benefits,
  .pricing-mobile-fix-summary .pricing-benefits {
    color: #f8edc2 !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    margin: 0 0 16px !important;
  }
  .pricing-page-section .pricing-summary-card .btn,
  .pricing-mobile-fix-summary .btn {
    width: 100% !important;
    max-width: 100% !important;
    margin: 8px 0 0 !important;
  }

  .pricing-page-section .pricing-card {
    background: #ffffff !important;
    border: 1px solid rgba(15,23,42,.10) !important;
    border-radius: 22px !important;
    padding: 20px 16px !important;
    box-shadow: 0 12px 30px rgba(15,23,42,.10) !important;
  }
}


/* =========================================================
   MECCA FINAL 10/10 POLISH - DO NOT REMOVE
   One clean mobile header/menu, pricing contrast, and browser-safe thermal crops.
   ========================================================= */
@media screen and (max-width:900px), (hover:none) and (pointer:coarse){
  html, body { max-width:100% !important; overflow-x:hidden !important; -webkit-text-size-adjust:100% !important; }
  .site-header.mecca-clean-header{display:block!important;visibility:visible!important;opacity:1!important;background:#0f172a!important;border-bottom:4px solid #d4af37!important;overflow:visible!important;z-index:999!important;}
  .site-header.mecca-clean-header .header-top-strip{display:block!important;background:#070d1c!important;color:#fff!important;}
  .site-header.mecca-clean-header .header-top-inner{display:flex!important;justify-content:center!important;align-items:center!important;padding:10px 14px!important;text-align:center!important;}
  .site-header.mecca-clean-header .header-top-inner span{display:none!important;}
  .site-header.mecca-clean-header .header-top-inner a{color:#fff!important;background:transparent!important;text-decoration:none!important;font-size:17px!important;font-weight:950!important;padding:0!important;margin:0!important;border:0!important;box-shadow:none!important;}
  .site-header.mecca-clean-header .premium-nav-wrap,.site-header.mecca-clean-header .nav-wrap{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:flex-start!important;width:100%!important;max-width:100%!important;background:#111827!important;padding:14px 16px 16px!important;gap:12px!important;box-sizing:border-box!important;overflow:visible!important;}
  .site-header.mecca-clean-header .logo{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;text-align:center!important;gap:7px!important;width:100%!important;text-decoration:none!important;}
  .site-header.mecca-clean-header .logo img,.site-header.mecca-clean-header img.custom-logo,.site-header.mecca-clean-header .custom-logo-link img{display:block!important;width:auto!important;height:50px!important;max-width:90px!important;max-height:50px!important;object-fit:contain!important;margin:0 auto!important;}
  .site-header.mecca-clean-header .logo-text{display:block!important;color:#fff!important;font-size:21px!important;font-weight:950!important;line-height:1.1!important;text-align:center!important;}
  .site-header.mecca-clean-header .main-navigation,.site-header.mecca-clean-header #primary-navigation{display:none!important;visibility:hidden!important;opacity:0!important;height:0!important;overflow:hidden!important;pointer-events:none!important;}
  .site-header.mecca-clean-header .mecca-menu-checkbox,.site-header.mecca-clean-header .mecca-menu-button{display:none!important;}
  .site-header.mecca-clean-header .mecca-mobile-details{display:block!important;visibility:visible!important;opacity:1!important;width:min(340px,100%)!important;margin:0 auto!important;}
  .site-header.mecca-clean-header .mecca-mobile-details summary{display:flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;list-style:none!important;-webkit-appearance:none!important;appearance:none!important;width:100%!important;min-height:52px!important;padding:14px 22px!important;background:#d4af37!important;color:#0f172a!important;border:2px solid #d4af37!important;border-radius:999px!important;font-size:18px!important;font-weight:950!important;line-height:1!important;box-shadow:0 8px 20px rgba(0,0,0,.2)!important;cursor:pointer!important;box-sizing:border-box!important;}
  .site-header.mecca-clean-header .mecca-mobile-details summary::-webkit-details-marker{display:none!important;}
  .site-header.mecca-clean-header .mecca-menu-bars{display:block!important;width:22px!important;flex:0 0 22px!important;}
  .site-header.mecca-clean-header .mecca-menu-bars span{display:block!important;width:22px!important;height:3px!important;margin:0 0 4px!important;border-radius:999px!important;background:#0f172a!important;}
  .site-header.mecca-clean-header .mecca-menu-bars span:last-child{margin-bottom:0!important;}
  .site-header.mecca-clean-header .mecca-mobile-menu-panel{display:flex!important;flex-direction:column!important;gap:8px!important;width:100%!important;margin:10px auto 0!important;padding:10px!important;border:1px solid rgba(212,175,55,.45)!important;border-radius:18px!important;background:#0b1220!important;box-sizing:border-box!important;}
  .site-header.mecca-clean-header .mecca-mobile-details:not([open]) .mecca-mobile-menu-panel{display:none!important;}
  .site-header.mecca-clean-header .mecca-mobile-menu-panel a{display:flex!important;align-items:center!important;justify-content:center!important;width:100%!important;min-height:44px!important;padding:12px 14px!important;background:#1f2937!important;color:#fff!important;border:1px solid rgba(212,175,55,.45)!important;border-radius:13px!important;text-decoration:none!important;text-align:center!important;font-size:16px!important;font-weight:900!important;line-height:1.15!important;box-sizing:border-box!important;}
  .site-header.mecca-clean-header .header-actions{display:flex!important;width:100%!important;align-items:center!important;justify-content:center!important;margin:0!important;padding:0!important;}
  .site-header.mecca-clean-header .header-phone{display:none!important;}
  .site-header.mecca-clean-header .schedule-now-btn{display:flex!important;align-items:center!important;justify-content:center!important;width:min(320px,100%)!important;min-height:52px!important;padding:14px 22px!important;background:#d4af37!important;color:#0f172a!important;border-radius:999px!important;text-decoration:none!important;font-size:19px!important;font-weight:950!important;line-height:1!important;box-sizing:border-box!important;}

  .pricing-hero-updated{background:linear-gradient(135deg,#0f172a 0%,#143a5a 52%,#7f1d1d 100%)!important;color:#fff!important;padding:42px 0 34px!important;opacity:1!important;}
  .pricing-hero-updated *{color:#fff!important;opacity:1!important;text-shadow:none!important;}
  .pricing-page-section{background:#f8fafc!important;color:#0f172a!important;padding:28px 0 46px!important;}
  .pricing-page-section .container,.pricing-page-container{width:100%!important;max-width:100%!important;padding-left:18px!important;padding-right:18px!important;box-sizing:border-box!important;}
  .pricing-page-section .pricing-summary-card,.pricing-mobile-fix-summary{background:#0f172a!important;color:#fff!important;border:1px solid rgba(212,175,55,.35)!important;border-radius:22px!important;padding:24px 18px!important;margin:0 0 30px!important;box-shadow:0 14px 35px rgba(15,23,42,.18)!important;text-align:left!important;}
  .pricing-page-section .pricing-summary-card h2{color:#fff!important;font-size:32px!important;line-height:1.12!important;margin:0 0 16px!important;letter-spacing:-.8px!important;text-shadow:none!important;}
  .pricing-page-section .pricing-benefits,.pricing-page-section .pricing-benefits span{color:#f8edc2!important;font-size:18px!important;line-height:1.55!important;opacity:1!important;text-shadow:none!important;}
  .pricing-page-section .pricing-summary-card .btn{display:flex!important;align-items:center!important;justify-content:center!important;width:100%!important;min-height:54px!important;background:#d4af37!important;color:#0f172a!important;border-radius:16px!important;font-size:19px!important;font-weight:950!important;text-decoration:none!important;}
  .pricing-page-section .pricing-card{background:#fff!important;color:#0f172a!important;border:1px solid rgba(15,23,42,.10)!important;border-radius:22px!important;padding:20px 16px!important;margin:0 0 30px!important;box-shadow:0 12px 30px rgba(15,23,42,.10)!important;}
  .pricing-page-section .pricing-card *{opacity:1!important;text-shadow:none!important;}
  .pricing-page-section .pricing-label{display:block!important;background:#fff7cc!important;color:#0f172a!important;border:1px solid rgba(212,175,55,.35)!important;border-radius:999px!important;padding:8px 10px!important;font-size:15px!important;font-weight:950!important;text-transform:uppercase!important;letter-spacing:.08em!important;line-height:1.2!important;text-align:center!important;margin:0 0 14px!important;}
  .pricing-page-section .pricing-card h2{color:#0f172a!important;font-size:28px!important;line-height:1.14!important;}
  .pricing-page-section .pricing-card p{color:#334155!important;font-size:16px!important;line-height:1.5!important;}
  .pricing-page-section .pricing-table-wrap{overflow:hidden!important;border-radius:16px!important;box-shadow:0 8px 22px rgba(15,23,42,.10)!important;background:#fff!important;}
  .pricing-page-section .pricing-table{width:100%!important;min-width:0!important;table-layout:fixed!important;border-collapse:collapse!important;background:#fff!important;}
  .pricing-page-section .pricing-table th,.pricing-page-section .pricing-table td{padding:12px 10px!important;font-size:14px!important;line-height:1.25!important;word-break:normal!important;}
  .pricing-page-section .pricing-table th{background:#0f172a!important;color:#fff!important;font-weight:950!important;}
  .pricing-page-section .pricing-table td{color:#0f172a!important;}
  .pricing-page-section .pricing-table th:first-child,.pricing-page-section .pricing-table td:first-child{width:58%!important;}
  .pricing-page-section .pricing-table th:last-child,.pricing-page-section .pricing-table td:last-child{width:42%!important;text-align:right!important;white-space:nowrap!important;font-weight:900!important;}
}
@media screen and (min-width:901px) and (hover:hover){
  .site-header.mecca-clean-header .mecca-mobile-details{display:none!important;}
}
.mecca-thermal-feature-photo,.mecca-thermal-example-card{overflow:hidden!important;border-radius:22px!important;background:#fff!important;}
.mecca-thermal-feature-photo img,.mecca-thermal-example-card>img{display:block!important;width:100%!important;height:100%!important;min-height:0!important;max-height:none!important;object-fit:cover!important;-o-object-fit:cover!important;border:0!important;}
.mecca-thermal-feature-photo{height:420px!important;}
.mecca-thermal-example-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:24px!important;align-items:stretch!important;}
.mecca-thermal-example-card{display:flex!important;flex-direction:column!important;}
.mecca-thermal-example-card>img{height:230px!important;min-height:230px!important;max-height:230px!important;flex:0 0 230px!important;}
.mecca-thermal-example-card:nth-child(1)>img{object-position:center center!important;}
.mecca-thermal-example-card:nth-child(2)>img{object-position:center center!important;}
.mecca-thermal-example-card:nth-child(3)>img{object-position:center center!important;}
@media screen and (max-width:900px){
  .mecca-thermal-feature-photo{height:230px!important;}
  .mecca-thermal-example-grid{grid-template-columns:1fr!important;gap:22px!important;}
  .mecca-thermal-example-card>img{height:222px!important;min-height:222px!important;max-height:222px!important;flex-basis:222px!important;}
}
@media screen and (min-width:701px) and (max-width:1100px){
  .mecca-thermal-example-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}

/* =========================================================
   VERIFIED FINAL MOBILE MENU OVERRIDE - DO NOT REMOVE
   Fixes old rules that hide all <nav> elements on mobile.
   ========================================================= */
@media screen and (max-width: 900px) {
  .site-header.mecca-clean-header details#mecca-mobile-nav-2026 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: min(330px, 92vw) !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 54px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow: visible !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 2147483647 !important;
  }

  .site-header.mecca-clean-header details#mecca-mobile-nav-2026 summary {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
    min-height: 54px !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 14px 22px !important;
    background: #d4af37 !important;
    color: #0f172a !important;
    border: 2px solid #d4af37 !important;
    border-radius: 999px !important;
    font-size: 1.12rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: center !important;
    list-style: none !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.22) !important;
  }

  .site-header.mecca-clean-header details#mecca-mobile-nav-2026 summary::-webkit-details-marker {
    display: none !important;
  }

  .site-header.mecca-clean-header details#mecca-mobile-nav-2026 summary::before {
    content: '☰' !important;
    display: inline-block !important;
    font-size: 1.35rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
  }

  .site-header.mecca-clean-header details#mecca-mobile-nav-2026:not([open]) nav#mecca-mobile-nav-panel-2026 {
    display: none !important;
  }

  .site-header.mecca-clean-header details#mecca-mobile-nav-2026[open] nav#mecca-mobile-nav-panel-2026 {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    margin: 10px auto 0 !important;
    padding: 10px !important;
    background: #0b1220 !important;
    border: 1px solid rgba(212,175,55,.55) !important;
    border-radius: 18px !important;
    overflow: visible !important;
    pointer-events: auto !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.28) !important;
  }

  .site-header.mecca-clean-header details#mecca-mobile-nav-2026[open] nav#mecca-mobile-nav-panel-2026 a {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 45px !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    background: #1f2937 !important;
    color: #ffffff !important;
    border: 1px solid rgba(212,175,55,.45) !important;
    border-radius: 13px !important;
    text-decoration: none !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    overflow: visible !important;
    pointer-events: auto !important;
  }
}


/* =========================================================
   CHROME-SAFE MOBILE MENU FINAL FIX
   Uses a real button + hidden nav panel. Overrides old details/nav rules.
   ========================================================= */
@media screen and (max-width: 900px) {
  .site-header.mecca-clean-header #mecca-mobile-nav-2026.mecca-mobile-menu-real {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: min(330px, 92vw) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 2147483647 !important;
    overflow: visible !important;
    pointer-events: auto !important;
  }

  .site-header.mecca-clean-header #mecca-mobile-menu-button-2026.mecca-mobile-menu-button-real {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 14px 22px !important;
    background: #d4af37 !important;
    color: #0f172a !important;
    border: 2px solid #d4af37 !important;
    border-radius: 999px !important;
    font: 950 18px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    text-align: center !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.22) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
  }

  .site-header.mecca-clean-header #mecca-mobile-menu-button-2026 .mecca-mobile-menu-icon {
    display: inline-block !important;
    font-size: 24px !important;
    line-height: 1 !important;
    color: #0f172a !important;
  }

  .site-header.mecca-clean-header #mecca-mobile-nav-panel-2026.mecca-mobile-nav-panel-real[hidden] {
    display: none !important;
  }

  .site-header.mecca-clean-header #mecca-mobile-nav-panel-2026.mecca-mobile-nav-panel-real.is-open,
  .site-header.mecca-clean-header #mecca-mobile-nav-panel-2026.mecca-mobile-nav-panel-real:not([hidden]) {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 10px auto 0 !important;
    padding: 10px !important;
    background: #0b1220 !important;
    border: 1px solid rgba(212,175,55,.55) !important;
    border-radius: 18px !important;
    overflow: visible !important;
    pointer-events: auto !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.28) !important;
    box-sizing: border-box !important;
  }

  .site-header.mecca-clean-header #mecca-mobile-nav-panel-2026.mecca-mobile-nav-panel-real a {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 45px !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    background: #1f2937 !important;
    color: #ffffff !important;
    border: 1px solid rgba(212,175,55,.45) !important;
    border-radius: 13px !important;
    text-decoration: none !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    overflow: visible !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
  }
}

@media screen and (min-width: 901px) {
  .site-header.mecca-clean-header #mecca-mobile-nav-2026.mecca-mobile-menu-real {
    display: none !important;
  }
}


/* MECCA REAL MOBILE MENU FINAL OVERRIDE - fixes missing/non-opening menu across Chrome/Safari/Edge/Firefox */
@media screen and (max-width:900px){
  body .site-header.mecca-clean-header div#mecca-mobile-nav-2026.mecca-mobile-menu-real{display:block!important;visibility:visible!important;opacity:1!important;width:min(330px,92vw)!important;max-width:100%!important;margin:0 auto!important;padding:0!important;position:relative!important;z-index:2147483647!important;overflow:visible!important;height:auto!important;min-height:54px!important;pointer-events:auto!important;}
  body .site-header.mecca-clean-header button#mecca-mobile-menu-button-2026.mecca-mobile-menu-button-real{display:flex!important;visibility:visible!important;opacity:1!important;align-items:center!important;justify-content:center!important;gap:12px!important;width:100%!important;min-height:54px!important;height:auto!important;margin:0!important;padding:14px 22px!important;background:#d4af37!important;color:#0f172a!important;border:2px solid #d4af37!important;border-radius:999px!important;font-size:1.12rem!important;font-weight:950!important;line-height:1!important;text-align:center!important;-webkit-appearance:none!important;appearance:none!important;cursor:pointer!important;box-shadow:0 8px 20px rgba(0,0,0,.22)!important;pointer-events:auto!important;}
  body .site-header.mecca-clean-header div#mecca-mobile-nav-panel-2026.mecca-mobile-nav-panel-real{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important;height:auto!important;max-height:none!important;overflow:visible!important;}
  body .site-header.mecca-clean-header div#mecca-mobile-nav-panel-2026.mecca-mobile-nav-panel-real.is-open{display:flex!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important;flex-direction:column!important;gap:8px!important;width:100%!important;margin:10px auto 0!important;padding:10px!important;background:#0b1220!important;border:1px solid rgba(212,175,55,.55)!important;border-radius:18px!important;box-shadow:0 14px 30px rgba(0,0,0,.28)!important;}
  body .site-header.mecca-clean-header div#mecca-mobile-nav-panel-2026.mecca-mobile-nav-panel-real a{display:flex!important;visibility:visible!important;opacity:1!important;align-items:center!important;justify-content:center!important;width:100%!important;min-height:45px!important;height:auto!important;margin:0!important;padding:12px 14px!important;background:#1f2937!important;color:#ffffff!important;border:1px solid rgba(212,175,55,.45)!important;border-radius:13px!important;text-decoration:none!important;text-align:center!important;font-size:1rem!important;font-weight:900!important;line-height:1.15!important;white-space:normal!important;pointer-events:auto!important;}
}


/* =========================================================
   MECCA DESKTOP POLISH PASS - 2026-05-30
   Desktop-only cleanup. Keeps the final mobile menu untouched.
   ========================================================= */
@media screen and (min-width: 901px) {
  html { scroll-behavior: smooth; }
  body {
    background: #f8fafc;
    color: #111827;
  }

  .container {
    width: min(1180px, calc(100% - 56px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .site-header + main,
  main#main-content {
    background: #ffffff;
  }

  .section {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }

  .section.light {
    background: #f6f8fb !important;
  }

  .section-heading {
    max-width: 820px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 34px !important;
    text-align: center;
  }

  .section-heading h2,
  .lead-magnet-card h2,
  .cta-panel h2,
  .reviews-section h2,
  .about-copy h2 {
    letter-spacing: -0.035em;
  }

  .hero {
    padding: 92px 0 78px !important;
    min-height: 0 !important;
    background:
      radial-gradient(circle at top right, rgba(212,175,55,.18), transparent 34%),
      linear-gradient(135deg, rgba(15,23,42,.97), rgba(127,23,23,.88)) !important;
  }

  .hero-grid.hero-grid-text-only {
    display: block !important;
    max-width: 980px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .hero-copy {
    max-width: 900px !important;
    margin: 0 auto !important;
  }

  .hero h1 {
    max-width: 920px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(3rem, 5vw, 5rem) !important;
    line-height: .96 !important;
  }

  .hero p,
  .hero-lead {
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 1.22rem !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .btn,
  .schedule-now-btn,
  .nav-cta {
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease !important;
  }

  .btn:hover,
  .schedule-now-btn:hover,
  .nav-cta:hover {
    transform: translateY(-1px);
  }

  .trust-bar.trust-bar-premium {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    max-width: 980px !important;
    margin: 32px auto 0 !important;
  }

  .trust-item {
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 15px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    color: #ffffff !important;
    backdrop-filter: blur(8px);
  }

  .above-fold-proof {
    padding: 34px 0 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb;
  }

  .proof-grid {
    display: grid !important;
    grid-template-columns: 1.25fr repeat(3, 1fr) !important;
    gap: 18px !important;
    align-items: stretch !important;
  }

  .proof-card,
  .card,
  .review-card,
  .contact-card,
  .home-about-photo-card,
  .lead-magnet-card,
  .cta-panel {
    border: 1px solid rgba(15,23,42,.08) !important;
    box-shadow: 0 16px 36px rgba(15,23,42,.08) !important;
  }

  .proof-card {
    border-radius: 18px !important;
    padding: 22px !important;
    background: #ffffff !important;
  }

  .home-about-photo-strip {
    padding: 64px 0 0 !important;
    background: #ffffff !important;
  }

  .home-about-photo-card {
    max-width: 560px !important;
    margin: 0 auto !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    background: #111827 !important;
  }

  .home-about-photo-card img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 620px !important;
    object-fit: cover !important;
  }

  .about-section {
    padding-top: 48px !important;
  }

  .about-grid {
    display: block !important;
    max-width: 900px !important;
    text-align: center !important;
  }

  .about-copy {
    max-width: 820px !important;
    margin: 0 auto !important;
  }

  .badges {
    justify-content: center !important;
  }

  .cards,
  .reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch !important;
  }

  .card,
  .review-card {
    border-radius: 22px !important;
    padding: 28px !important;
    background: #ffffff !important;
  }

  .card:hover,
  .review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(15,23,42,.12) !important;
  }

  .service-link-card {
    text-decoration: none !important;
  }

  .lead-magnet-card,
  .cta-panel {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 28px !important;
    border-radius: 28px !important;
    padding: 40px !important;
  }

  .reviews-section {
    background: #ffffff !important;
  }

  .reviews-section > .container > .kicker,
  .reviews-section > .container > h2,
  .reviews-section > .container > .section-intro {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .review-card p {
    line-height: 1.7 !important;
  }

  .contact-section {
    background: #f6f8fb !important;
  }

  .cta-panel {
    background: linear-gradient(135deg, #111827, #7f1d1d) !important;
    color: #ffffff !important;
  }

  .cta-panel p,
  .cta-panel h2,
  .cta-panel .phone {
    color: #ffffff !important;
  }

  .pricing-table-wrap {
    max-width: 940px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media screen and (min-width: 901px) and (max-width: 1180px) {
  .cards,
  .reviews-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .lead-magnet-card,
  .cta-panel {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .cta-actions {
    justify-content: center !important;
  }
}
