/* ===== CSS VARIABLES ===== */
:root {
    --brand-blue: #0040A8;
    --brand-blue-dark: #00338A;
    --accent-green: #00c853;
    --accent-green-dark: #009b3a;
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-light: #6b7280;
    --bg-white: #fff;
    --bg-light: #f9fafb;
    --border-light: #e5e7eb;
    --shadow: 0 8px 24px rgba(0,0,0,.08);
   }

/* ===== BASE & RESET ===== */
*, *::before, *::after { 
    box-sizing: border-box; 
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;

  max-width: 1000px;   /* keeps content readable */
  margin: 0 auto;      /* centers the whole page horizontally */
  border: 1px solid black; /* optional border for layout testing */
}


a { 
    color: #3B82F6; 
    text-decoration: none; 
}

a:hover { 
    color: var(--brand-blue-dark); 
    text-decoration: underline; 
}

img { 
    max-width: 100%; 
    display: block; 
}

.page { 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0 12px; 
}

/* ===== STICKY HEADER / NAVIGATION ===== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid #eee;
    backdrop-filter: saturate(180%) blur(6px);
    -webkit-backdrop-filter: saturate(180%) blur(6px);
}

.nav-inner {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 6px 16px;
    padding: 8px 16px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    max-width: 200px;
    height: auto;
}

@media (min-width: 768px) {
    .brand-logo { 
        max-width: 300px; 
    }
}

/* Primary Navigation */
.primary-nav {
    display: none;
    justify-self: end;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 28px;
}

@media (min-width: 768px) {
    .primary-nav { 
        display: flex; 
    }
}

.primary-nav a:not(.btn-call-inline),
.primary-nav .dropbtn {
    display: inline-block;
    font: inherit;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    line-height: 1.2;
}

.primary-nav a:hover:not(.btn-call-inline),
.primary-nav .dropbtn:hover,
.has-dropdown:focus-within .dropbtn {
    color: var(--brand-blue-dark);
}

/* Call to Action Button */
.btn-call-inline {
    background: var(--accent-green);
    color: var(--bg-white) !important;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    line-height: 1.2;
    margin-left: 10px;
    transition: background 0.2s ease;
}

.btn-call-inline:hover {
    background: var(--accent-green-dark);
}

/* Dropdown Menu */
.has-dropdown { 
    position: relative; 
}

.dropbtn { 
    font-weight: 600; 
    color: var(--text-secondary); 
}

.dropdown {
    position: absolute;
    top: 90%;
    left: 0;
    min-width: 220px;
    background: var(--bg-white);
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    padding: 8px;
    display: none;
    z-index: 2000;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--text-secondary);
    text-decoration: none;
}

.dropdown a:hover {
    background: #f8fafc;
    color: var(--brand-blue-dark);
}

/* Mobile Navigation */
.mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
    margin-left: auto;
    justify-self: end;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-secondary);
    display: block;
}

@media (min-width: 768px) {
    .mobile-toggle { 
        display: none; 
    }
}

.mobile-drawer {
    display: none;
    border-top: 1px solid #f1f1f1;
    background: var(--bg-white);
}

.mobile-drawer a,
.mobile-drawer .drawer-label {
    display: block;
    padding: 14px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid #f7f7f7;
}

.mobile-drawer .drawer-label {
    font-weight: 700;
    background: #f9fafb;
}

.mobile-drawer a.sub { 
    padding-left: 28px; 
}

.mobile-drawer a:hover {
    background: #f8fafc;
    color: var(--brand-blue-dark);
}

/* Scroll padding for sticky header */
html { 
    scroll-padding-top: 80px; 
}

/* ===== HERO SECTION ===== */
.hero-card {
    background-image: url('/images/chat-condensor.jpg');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    text-align: center; 
    padding: 14px 12px 12px; 
    border-radius: 8px; 
    margin: 10px auto 0; 
    max-width: 950px;
    color: var(--bg-white); 
    background-color: rgba(0,0,0,.35); 
    background-blend-mode: darken;
}

.hero-title {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-top: .3rem; 
    margin-bottom: .3rem;
    color: var(--bg-white);
}

.hero-card + .section-wrapper { 
    margin-top: 1rem; 
}



.promo-line { 
    font-size: 19px; 
    font-weight: 800; 
    color: #ffeb3b; 
    margin: 6px 0; 
}

.promo-line span { 
    color: var(--bg-white); 
}

.ads-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    text-align: left; 
    display: inline-block; 
}

.ads-list li { 
    font-size: 16px; 
    margin: 8px 0; 
}

.hero-cta { 
    margin: 18px 0 10px; 
}

.btn {
    display: inline-block; 
    margin: 8px; 
    padding: 14px 22px; 
    border-radius: 10px; 
    font-size: 16px; 
    font-weight: 800; 
    cursor: pointer; 
    text-decoration: none; 
    border: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

.btn-call { 
    background: var(--accent-green); 
    color: var(--bg-white); 
}

.btn-call:hover { 
    background: var(--accent-green-dark); 
}

.btn-schedule { 
    background: #ff9800; 
    color: var(--bg-white); 
}

.btn-schedule:hover { 
    background: #e68900; 
}

.btn-quote { 
    background: #facc15; 
    color: #1e3a8a; 
    position: relative; 
}

.btn-quote:hover { 
    background: #eab308; 
}

.btn-quote .preview-img {
    display: none; 
    position: absolute; 
    top: 120%; 
    left: 50%; 
    transform: translateX(-50%);
    width: 320px; 
    border: 1px solid #ccc; 
    background: var(--bg-white); 
    padding: 4px; 
    border-radius: 6px; 
    box-shadow: 0 6px 20px rgba(0,0,0,.12); 
    z-index: 9999;
}

.btn-quote:hover .preview-img { 
    display: block; 
}

.preview-img img { 
    max-width: 100%; 
    border-radius: 6px; 
}


/* ===== TRUST CARD ===== */
.trust-card {
    background-color: #F0F2F5;
   
    border-radius: 12px;
    padding: .03rem;
    max-width: 700px;
    margin: 0rem auto;
    text-align: center;
    box-shadow: var(--shadow);
}

.trust-card .section-title {
    font-size: clamp(1.25rem, 2.2vw + .4rem, 1.75rem);
    line-height: 1.0;
    margin-bottom: 0rem;
}

.trust-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: .5rem;
    color: #333;
}

/* Remove this if you want bigger logos */
/*
.trust-card img {
    height: auto;
    max-height: 48px;
    vertical-align: middle;
    margin-right: 6px;
}
*/

.trust-card .image-links img {
    max-height: none;
}

.google-ads-badges .image-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: .05rem;
}

.google-ads-badges .image-links img {
    width: clamp(140px, 22vw, 110px);
    height: auto;
    object-fit: contain;
    max-width: 100%;
}

.google-ads-badges .image-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
}


/* ===== INTRO SECTION ===== */
.section-wrapper .intro-card {
    max-width: 800px;
    margin: 10px auto 0;
    text-align: center;
    background: #dbeafe;
    border: 10px solid #d1d5db;
    padding: 5px 12px 12px; 
    border-radius: 8px;
}

.section-wrapper .intro-card h1, 
#page-title {
     font-family: "Times New Roman", Times, "Times Roman", serif;
    font-size: 1.5rem; 
    line-height: 1.25;
    font-weight: 700; 
    margin: 14px 0 6px; 
    color: var(--brand-blue); 
}

.section-wrapper .intro-card p {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #444;
    margin: 0 auto;
    max-width: 700px;
}

.section-wrapper .intro-card a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

.section-wrapper .intro-card a:hover {
    color: #003d80;
    text-decoration: underline;
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
    .section-wrapper .intro-card h1,
    #page-title {
        font-size: 1.5rem;   /* ~24px */
    }
    .section-wrapper .intro-card p {
        font-size: 1rem;     /* ~16px */
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    .section-wrapper .intro-card h1,
    #page-title {
        font-size: 1.3rem;   /* ~21px */
    }
    .section-wrapper .intro-card p {
        font-size: 0.95rem;  /* ~15px */
    }
}

.section-wrapper ul:not(.list),
.card ul:not(.list),
.contact ul:not(.list),
.text-center ul:not(.list) {
    display: block;
    list-style: none;
    padding-inline-start: 1.25rem;
    margin: .5rem 0 1rem;
    text-align: left;
}

.section-wrapper ul:not(.list) li,
.card ul:not(.list) li,
.contact ul:not(.list) li,
.text-center ul:not(.list) li {
    margin: .25rem 0;
}





/* ===== TESTIMONIALS ===== */
.rating-badge {
  display: flex;
  flex-direction: column;      /* ✅ stacks logo above stars */
  align-items: center;         /* ✅ centers horizontally */
  justify-content: center;
  background: #fff8dc;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid #f1e0a0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  margin: 20px auto;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-icon {
  width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
  border-radius: 6px;
  margin-bottom: 10px;

  /* ✅ Fix overflow shift */
  transform: scale(2.5);
  transform-origin: center;
  overflow: hidden;
  max-width: 100%;
  clip-path: inset(0 0 0 0);
  will-change: transform;
}

.section-wrapper,
.testimonials-card {
  overflow-x: hidden; /* ✅ Prevents the badge from pushing page sideways */
}



.testimonials-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem 1rem;
    max-width: 700px;
    margin: 2rem auto;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

.testimonials-card .section-title {
    font-size: clamp(1.25rem, 2.2vw + .4rem, 1.75rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.testimonials-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: .5rem;
    color: #333;
    background: var(--bg-light);
}

.testimonials-card img {
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
    background: var(--bg-light);
}

/* ===== PROBLEM SECTION ===== */
.problem-wrap {
    padding: 3rem 1rem;
    background: #f3f4f6;
    border-radius: 12px;
    margin: 2rem auto;
}

.problem-wrap .card-title {
    text-align: center;
    font-weight: 800;
    font-size: clamp(1.25rem, 1.2vw + 1rem, 1.8rem);
    margin: 0 0 1.25rem;
    color: var(--brand-blue);
}

.problem-wrap .problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 950px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .problem-wrap .problem-grid { 
        grid-template-columns: 1.2fr .8fr; 
    }
}

.problem-wrap .problem-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.problem-wrap .problem-list > li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.problem-wrap .problem-badge {
    width: 40px; 
    height: 40px;
    display: grid; 
    place-items: center;
    border-radius: 999px;
    background: #e0e7ff;
    color: var(--brand-blue-dark);
    font-size: 18px; 
    font-weight: 700;
}

.problem-wrap .problem-list h3 {
    margin: .1rem 0 .25rem;
    font-size: clamp(1.05rem, .6vw + .9rem, 1.25rem);
    line-height: 1.35;
    color: var(--text-primary);
}

.problem-wrap .problem-list p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.55;
}

.problem-wrap .problem-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.problem-wrap .problem-card img {
    display: block;
    max-width: 40%;
    height: auto;
    margin: 0 auto 10px;
}

.problem-wrap .problem-card h3 {
    margin: 0 0 6px;
    font-size: clamp(1.1rem, .5vw + 1rem, 1.3rem);
    color: #0f172a;
}

.problem-wrap .price {
    margin: 4px 0 10px;
}

.problem-wrap .price .big {
    display: block;
    font-size: clamp(2rem, 1.5vw + 1.5rem, 2.6rem);
    font-weight: 900;
    color: var(--brand-blue-dark);
    line-height: 1;
}

.problem-wrap .price .sub {
    display: block;
    color: var(--text-light);
    margin-top: 2px;
}

.problem-wrap .problem-card .problem-list {
    gap: 10px;
}

.problem-wrap .problem-card .problem-list > li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: .6rem .8rem;
    box-shadow: none;
}

.problem-wrap .problem-card .problem-list > li::before {
    content: "";
}

.problem-wrap .offer-btn {
    display: block;
    text-align: center;
    background: #dc2626;
    color: var(--bg-white);
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(220,38,38,.2);
    transition: transform .08s ease, background-color .15s ease, box-shadow .18s ease;
}

.problem-wrap .offer-btn:hover {
    background: #b71c1c;
    transform: translateY(-1px);
}

.problem-wrap .offer-btn:focus {
    outline: 2px solid #93c5fd; 
    outline-offset: 2px;
}

.problem-wrap .offer-foot {
    font-size: .9rem;
    color: var(--text-light);
    margin: .25rem 0 0;
}

@media (prefers-reduced-motion: reduce) {
    .problem-wrap .problem-list > li { 
        box-shadow: none; 
    }
    .problem-wrap .offer-btn { 
        transition: none; 
    }
}

/* ===== ABOUT CARD ===== */
.section-wrapper .card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.section-wrapper .card-title {
    text-align: center;
    font-weight: 800;
    font-size: clamp(1.15rem, 1.2vw + .9rem, 1.5rem);
    margin: 0 0 1rem;
}

.section-wrapper p {
    margin: .6rem 0;
    line-height: 1.65;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.section-wrapper figure {
    margin: 14px 0 0;
}

.section-wrapper .card-image-van {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 12px auto 0;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    border: 0;
    object-fit: cover;
}

.section-wrapper a:hover .card-image-van {
    transform: translateY(-1px);
    transition: transform .15s ease;
}

@media (min-width: 768px) {
    .section-wrapper .card { 
        height: 100%; 
    }
}

/* ===== WHY CHOOSE CARD ===== */
.section-wrapper .services-grid > .card:nth-child(2) {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.section-wrapper .services-grid > .card:nth-child(2) .card-title {
    text-align: center;
    font-weight: 800;
    font-size: clamp(1.15rem, 1.2vw + .9rem, 1.5rem);
    margin: 0 0 1rem;
}

.section-wrapper .services-grid > .card:nth-child(2) .list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.section-wrapper .services-grid > .card:nth-child(2) .list-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: .75rem;
    padding: .95rem 1rem;
    transition: box-shadow .18s ease, transform .06s ease, border-color .18s ease;
}

.section-wrapper .services-grid > .card:nth-child(2) .list-item:hover {
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
    transform: translateY(-1px);
    border-color: #dbe3ef;
}

.section-wrapper .services-grid > .card:nth-child(2) .list-icon {
    display: inline-grid;
    place-items: center;
    width: 36px; 
    height: 36px;
    border-radius: 999px;
    background: #e0e7ff;
    color: var(--brand-blue-dark);
    font-size: 18px;
    line-height: 1;
    flex: 0 0 36px;
}

.section-wrapper .services-grid > .card:nth-child(2) .list-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
}

.section-wrapper .services-grid > .card:nth-child(2) .list-text strong {
    font-weight: 600;
    color: #0f172a;
}

@media (prefers-reduced-motion: reduce) {
    .section-wrapper .services-grid > .card:nth-child(2) .list-item { 
        transition: none; 
    }
}

/* ===== TWO-UP CARDS ===== */
.section-wrapper .problem {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 768px) {
    .section-wrapper .problem { 
        grid-template-columns: 1fr 1fr; 
    }
}

.section-wrapper .problem .card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.section-wrapper .problem .card.text-center { 
    text-align: center; 
}

.section-wrapper .problem .card-image-tech {
    display: block;
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    margin-bottom: .5rem;
}

.section-wrapper .problem .card-title {
    font-weight: 800;
    font-size: clamp(1.15rem, 1.1vw + .95rem, 1.5rem);
    margin: .5rem 0 .25rem;
}

.section-wrapper .problem .card p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 .5rem;
}

.section-wrapper .problem .list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.section-wrapper .problem .list-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: .75rem;
    padding: .95rem 1rem;
    transition: box-shadow .18s ease, transform .06s ease, border-color .18s ease;
}

.section-wrapper .problem .list-item:hover {
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
    transform: translateY(-1px);
    border-color: #dbe3ef;
}

.section-wrapper .problem .list-icon {
    display: inline-grid;
    place-items: center;
    width: 36px; 
    height: 36px;
    border-radius: 999px;
    background: #e0e7ff;
    color: var(--brand-blue-dark);
    font-size: 18px;
    line-height: 1;
    flex: 0 0 36px;
}

.section-wrapper .problem .list-text {
    font-size: 1.06rem;
    font-weight: 600;
    color: var(--text-primary);
}

.section-wrapper .problem .list-text a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed #cbd5e1;
}

.section-wrapper .problem .list-text a:hover {
    border-bottom-color: var(--brand-blue-dark);
}

@media (prefers-reduced-motion: reduce) {
    .section-wrapper .problem .list-item { 
        transition: none; 
    }
}

/* ===== SPECIAL OFFERS ===== */
.section-wrapper .special-offer-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.75rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.section-wrapper .special-offer-card .card-title {
    text-align: center;
    font-weight: 800;
    font-size: clamp(1.15rem, 1.1vw + 1rem, 1.6rem);
    margin: 0 0 1rem;
}

.section-wrapper .special-offer-card .list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .9rem;
}

.section-wrapper .special-offer-card .list-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: .75rem;
    padding: .95rem 1rem;
    transition: box-shadow .18s ease, transform .06s ease, border-color .18s ease, background-color .15s ease;
}

.section-wrapper .special-offer-card .list-item:hover {
    background: #f8fafc;
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
    transform: translateY(-1px);
    border-color: #dbe3ef;
}

.section-wrapper .special-offer-card .list-icon {
    display: inline-grid;
    place-items: center;
    width: 36px; 
    height: 36px;
    border-radius: 999px;
    background: #fef9c3;
    color: #b45309;
    font-size: 18px;
    line-height: 1;
    flex: 0 0 36px;
}

.section-wrapper .special-offer-card .list-item--stack .list-stack {
    display: flex;
    flex-direction: column;
}

.section-wrapper .special-offer-card .list-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: .15rem;
}

.section-wrapper .special-offer-card .list-sub {
    color: var(--text-light);
    line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
    .section-wrapper .special-offer-card .list-item { 
        transition: none; 
    }
}

.section-wrapper .special-offer-btn:hover { 
    background: #b71c1c; 
}

.section-wrapper .special-offer-foot { 
    font-size: .85rem; 
    color: var(--text-light); 
    text-align: center; 
    margin: .6rem 0 0; 
}

/* ===== FAQ CARD ===== */
.faq-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.faq-card .section-title {
    font-size: clamp(1.25rem, 2.2vw + .4rem, 1.8rem);
    line-height: 1.2;
    text-align: center;
    margin: 0 0 1.25rem;
}

.faq-card h3,
.faq-card p {
    display: grid;
    grid-template-columns: 1.6rem 1fr;
    align-items: center;
    column-gap: .55rem;
    padding-left: 0;
    position: static;
}

.faq-card h3 {
    margin: 1.15rem 0 .35rem;
    border-top: 1px solid #eef2f7;
    padding-top: 1rem;
    line-height: 1.35;
}

.faq-card h3:first-of-type { 
    border-top: 0; 
    padding-top: 0; 
}

.faq-card h3::before,
.faq-card p::before {
    position: static;
    width: 1.35rem; 
    height: 1.35rem;
    display: grid; 
    place-items: center;
    border-radius: 999px;
    font-weight: 700; 
    font-size: .8rem;
}

.faq-card h3::before { 
    content: "Q"; 
    background: #e0e7ff; 
    color: var(--brand-blue-dark); 
}

.faq-card p::before { 
    content: "A"; 
    background: #dcfce7; 
    color: #166534; 
}

.faq-card p {
    margin: .25rem 0 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-card h3:hover,
.faq-card h3:focus { 
    color: var(--brand-blue-dark); 
}

.faq-card h3:focus {
    outline: 2px solid #93c5fd; 
    outline-offset: 2px;
}

/* ===== CONTACT SECTION ===== */
.section-wrapper .contact {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.75rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow);
}

.section-wrapper .contact .card-title {
    font-weight: 800;
    font-size: clamp(1.2rem, 1.1vw + 1rem, 1.6rem);
    margin: 0 0 .6rem;
}

.section-wrapper .contact p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin: .4rem 0;
}

.section-wrapper .contact a.cta {
    display: inline-block;
    margin: .5rem .35rem;
    padding: .85rem 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
    transition: transform .08s ease, box-shadow .18s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}

.section-wrapper .contact a.cta[href^="tel:"] {
    background: var(--accent-green);
    color: var(--bg-white);
    border: 2px solid var(--accent-green);
}

.section-wrapper .contact a.cta[href^="tel:"]:hover {
    background: var(--accent-green-dark);
    border-color: var(--accent-green-dark);
    transform: translateY(-1px);
}

.section-wrapper .contact a.cta:not([href^="tel:"]) {
    background: var(--brand-blue-dark);
    color: var(--bg-white);
    border: 2px solid var(--brand-blue-dark);
}

.section-wrapper .contact a.cta:not([href^="tel:"]):hover {
    background: var(--brand-blue-dark);
    color: var(--bg-white);
    transform: translateY(-1px);
}

.section-wrapper .contact a.cta:focus {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

.section-wrapper .contact p a:not(.cta) {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    font-weight: 600;
    color: var(--brand-blue-dark);
    text-decoration: none;
    transition: color .15s ease;
}

.section-wrapper .contact p a:not(.cta):hover {
    text-decoration: underline;
}

@media (max-width: 520px) {
    .section-wrapper .contact a.cta {
        display: block;
        width: 100%;
        max-width: 420px;
        margin: .5rem auto;
    }
}

.section-wrapper .contact .city-cloud {
    background: #eaf2fb;
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    padding: .9rem 1rem;
    margin: 1rem auto 0;
    max-width: 820px;
}

.section-wrapper .contact .cities {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.section-wrapper .contact .cities > li {
    display: flex;
    align-items: center;
    margin: .25rem .35rem;
    font-weight: 600;
}

.section-wrapper .contact .cities > li::before {
    content: "•";
    margin: 0 .45rem 0 0;
    color: rgba(0,0,0,.65);
}

.section-wrapper .contact .city-cloud a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color .15s ease;
}

.section-wrapper .contact .city-cloud a:hover {
    color: var(--brand-blue-dark);
    text-decoration: none;
}

.section-wrapper .contact .city-subcopy {
    margin: .6rem 0 0;
    color: #0f172a;
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.55;
}

@media (max-width: 520px) {
    .section-wrapper .contact .city-cloud { 
        padding: .8rem .85rem; 
    }
}

/* ===== GOOGLE MAPS ===== */
.map-container {
    position: relative;
    margin: 0 auto;
    max-width: 800px;
    width: 70%;
    padding-bottom: 26.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-title {
    font-weight: 800;
    font-size: clamp(1.2rem, 1.1vw + 1rem, 1.6rem);
    margin: 0 0 .6rem;
    text-align: center;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-container {
        width: 90%;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    padding: 2rem 1rem;
    text-align: center;
    color: var(--text-primary);
}

.footer-section {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 10px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.footer-logo {
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
}

footer h3 {
    margin: .35rem 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

footer p {
    margin: .4rem 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: .9rem;
    font-weight: 400;
}

footer a {
    color: var(--brand-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .15s ease, border-color .15s ease;
    font-size: 1.0rem;
}

footer a:hover {
    color: var(--brand-blue-dark);
    border-bottom-color: #cbd5e1;
}

footer a:focus {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

footer h3 a {
    font: inherit;
    font-size: 1.0rem;
}

.footer-payments {
    margin: 1rem auto .25rem;
}

.footer-payments .payment-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
}

.footer-payments .payment-icons p {
    margin: .25rem 0 0;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.footer-payments .payment-icons img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.08));
}

.footer-legal {
    font-size: .9rem;
    color: var(--text-light);
}

@media (max-width: 520px) {
    .footer-section { 
        padding: 1.25rem 1rem; 
    }
    .footer-logo { 
        max-width: 220px; 
    }
    footer h3 { 
        font-size: 1rem; 
    }
    footer h3 a {
        font-size: 1rem; 
    }
    footer a {
        font-size: .7rem; 
    }
    footer p { 
        font-size: .7rem; 
    }
    .footer-payments .payment-icons p {
        font-size: .7rem; 
    }
}

/* ===== MODALS ===== */
.service-backdrop {
    position: fixed; 
    inset: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: rgba(0,0,0,.55); 
    z-index: 11000; 
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
    padding: 20px;
    opacity: 0; 
    pointer-events: none; 
    transition: opacity .4s ease;
}

.service-backdrop.open { 
    opacity: 1; 
    pointer-events: auto; 
}

.service-backdrop.closing { 
    opacity: 0; 
    pointer-events: none; 
}

.service-card {
    position: relative; 
    width: 92vw; 
    max-width: 520px; 
    background: var(--bg-white); 
    border-radius: 12px; 
    padding: 18px 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,.25); 
    max-height: 90vh; 
    overflow-y: auto;
}

@media (max-width: 480px) {
    .service-card { 
        width: 95vw; 
        padding: 14px 16px; 
        font-size: .9rem; 
    }
    .service-card .service-row input,
    .service-card .service-row textarea,
    .service-card .service-row select { 
        font-size: 14px; 
        padding: 8px 10px; 
    }
    .service-card .service-btn { 
        font-size: 14px; 
        padding: 8px 12px; 
    }
}

.service-close { 
    position: absolute; 
    top: 10px; 
    right: 12px; 
    background: none; 
    border: 0; 
    font-size: 20px; 
    cursor: pointer; 
    color: var(--text-light); 
    transition: color .2s ease; 
}

.service-close:hover { 
    color: var(--text-primary); 
}

.service-title { 
    margin: 0 0 10px; 
    font-size: 20px; 
    font-weight: 800; 
    text-align: center; 
    color: var(--text-primary); 
}

.service-row { 
    margin: 10px 0; 
}

.service-row label { 
    display: block; 
    font-size: 14px; 
    margin: 0 0 6px; 
    color: var(--text-secondary); 
}

.service-row input, 
.service-row textarea, 
.service-row select {
    width: 100%; 
    padding: 10px 12px; 
    border: 1px solid #d1d5db; 
    border-radius: 8px; 
    outline: none; 
    font-size: 14px; 
    transition: border-color .2s, box-shadow .2s;
}

.service-row input:focus, 
.service-row textarea:focus, 
.service-row select:focus {
    border-color: #2563eb; 
    box-shadow: 0 0 0 2px rgba(37,99,235,.15);
}

.service-actions { 
    display: flex; 
    gap: 8px; 
    justify-content: center; 
    margin-top: 12px; 
}

.service-btn { 
    padding: 10px 16px; 
    border-radius: 8px; 
    border: 0; 
    cursor: pointer; 
    font-weight: 700; 
}

.service-btn.primary { 
    background: #2563eb; 
    color: var(--bg-white); 
}

.service-btn.primary:hover { 
    background: #1e40af; 
}

.service-btn.secondary { 
    background: #e5e7eb; 
    color: var(--text-primary); 
}

.service-note { 
    font-size: 13px; 
    color: #555; 
    text-align: center; 
    margin-top: 8px; 
}

.service-hidden { 
    display: none; 
}

.service-success { 
    color: #166534; 
    background: #dcfce7; 
    border: 1px solid #86efac; 
    padding: 10px; 
    border-radius: 8px; 
    text-align: center; 
}

.service-error { 
    color: #991b1b; 
    background: #fee2e2; 
    border: 1px solid #fecaca; 
    padding: 10px; 
    border-radius: 8px; 
    text-align: center; 
}

.visually-hidden { 
    position: absolute !important; 
    height: 1px; 
    width: 1px; 
    overflow: hidden; 
    clip-path: inset(50%); 
    white-space: nowrap; 
}

.no-scroll { 
    overflow: hidden; 
}

/* Blue CTA Bar */
.modal-cta { 
    text-align: center; 
    margin: 18px 0 0; 
}

.modal-cta-btn {
    display: inline-block; 
    background: var(--brand-blue-dark); 
    color: var(--bg-white); 
    padding: 14px 22px; 
    border-radius: 999px;
    font-weight: 800; 
    box-shadow: 0 8px 20px rgba(29,78,216,.25); 
    text-decoration: none;
}

.modal-cta-btn:hover { 
    background: #153ea8; 
}


/* ===== TYPOGRAPHY ===== */
h1, h2, h3, .section-title, .card-title {
    font-family: "Times New Roman", Times, "Times Roman", serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-blue);
}