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

:root {
    --red:        #CC0000;
    --red-dark:   #aa0000;
    --charcoal:   #222222;
    --mid-grey:   #555555;
    --light-grey: #F5F5F5;
    --white:      #FFFFFF;
    --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
    --shadow:     0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg:  0 12px 48px rgba(0,0,0,0.16);
    --radius:     6px;
    --radius-lg:  12px;
    --ease:       0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
}

h1, h2, h3, h4, .nav-links a, .btn, .section-label, .trust-item-text,
.footer-col h4, .contact-detail-title { font-family: 'Montserrat', sans-serif; }

h1 { font-size: clamp(34px, 5vw, 48px); font-weight: 700; line-height: 1.13; }
h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 600; line-height: 1.25; }
h3 { font-size: clamp(17px, 2.2vw, 21px); font-weight: 600; }
p  { color: var(--mid-grey); }

/* === LAYOUT UTILITIES === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.accent-line {
    display: block;
    width: 44px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 18px;
}

.section-heading          { margin-bottom: 52px; }
.section-heading h2       { color: var(--charcoal); margin-bottom: 12px; }
.section-heading p        { max-width: 560px; }
.section-heading.centered { text-align: center; }
.section-heading.centered .accent-line { margin-left: auto; margin-right: auto; }
.section-heading.centered p { margin: 0 auto; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(204,0,0,0.32);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
.btn-outline:hover {
    background: var(--red);
    color: var(--white);
}

.btn-emergency {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    font-size: 15px;
    padding: 16px 32px;
    animation: pulse-red 2.2s ease-in-out infinite;
}
.btn-emergency:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(204,0,0,0.45);
    animation: none;
}

@keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 0 0 rgba(204,0,0,0.4); }
    50%       { box-shadow: 0 0 0 10px rgba(204,0,0,0); }
}

/* === NAVIGATION === */
#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--ease);
}

#nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 24px;
}

.nav-inner > a img {
    height: 80px;
    width: auto;
    display: block;
}

.nav-inner .btn-primary { margin-left: 8px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.2px;
    position: relative;
    transition: color var(--ease);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}

.nav-links a:hover        { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
    content: ' ▼';
    font-size: 10px;
    margin-left: 4px;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 200px;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-content { display: block; }

.nav-dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background var(--ease);
}

.nav-dropdown-content a:last-child { border-bottom: none; }
.nav-dropdown-content a:hover { background: var(--light-grey); color: var(--red); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--ease);
}

#navMobile {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 96px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    padding: 20px 24px 28px;
    gap: 4px;
}
#navMobile.open { display: flex; }

#navMobile a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal);
    text-decoration: none;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: color var(--ease);
}
#navMobile a:last-child { border-bottom: none; padding-bottom: 0; }
#navMobile a:hover { color: var(--red); }
#navMobile .btn { margin-top: 10px; justify-content: center; }

.nav-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-grey);
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    transition: all var(--ease);
    white-space: nowrap;
}
.nav-call-btn i { color: #22c55e; font-size: 13px; }
.nav-call-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.nav-call-btn:hover i { color: var(--white); }

@media (max-width: 1080px) { .nav-call-btn span { display: none; } }
@media (max-width: 768px)  { .nav-call-btn { display: none; } }

.btn-nav-phone {
    justify-content: center;
    background: var(--light-grey);
    color: var(--charcoal);
    border-color: rgba(0,0,0,0.1);
}
.btn-nav-phone .fas { color: var(--red); }

/* === HERO (shared base) === */
#hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20,20,20,0.78) 0%,
        rgba(20,20,20,0.60) 60%,
        rgba(204,0,0,0.18) 100%
    );
    z-index: 1;
}

.hero-content { max-width: 680px; position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(204,0,0,0.14);
    border: 1px solid rgba(204,0,0,0.28);
    border-radius: 100px;
    padding: 6px 16px 6px 12px;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #ff6666;
}

#hero h1 { color: var(--white); margin-bottom: 14px; }
#hero h1 span { color: var(--red); }

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-tagline {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    font-style: italic;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.48);
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-phone-ring {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px;
    flex-shrink: 0;
}
.hero-phone-sup {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
    font-family: 'Montserrat', sans-serif;
}
.hero-phone a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: color var(--ease);
}
.hero-phone a:hover { color: var(--red); }

/* Hero slideshow (homepage) */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.hero-slide.active { opacity: 1; }

/* === TRUST BAR === */
#trust-bar { background: var(--red); }

.trust-inner {
    display: flex;
    align-items: stretch;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    flex: 1;
    color: white;
    border-right: 1px solid rgba(255,255,255,0.22);
}
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 18px; }
.trust-item-text { font-size: 13px; font-weight: 700; letter-spacing: 0.2px; }

/* === SERVICES (homepage) === */
#services { background: var(--light-grey); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--ease);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: rgba(204,0,0,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 22px;
    margin-bottom: 20px;
    transition: all var(--ease);
}
.service-card:hover .service-icon {
    background: var(--red);
    color: var(--white);
}

.service-card h3 { color: var(--charcoal); margin-bottom: 10px; font-size: 17px; }
.service-card p  { font-size: 14px; line-height: 1.65; }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    transition: gap var(--ease);
}
.service-link:hover { gap: 10px; }

/* === WHY CHOOSE US (homepage) === */
#why { background: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 44px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.08);
    transition: all var(--ease);
}
.why-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.why-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(204,0,0,0.07);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 26px;
    margin: 0 auto 22px;
    transition: all var(--ease);
}
.why-card:hover .why-icon {
    background: var(--red);
    color: var(--white);
}

.why-card h3 { color: var(--charcoal); margin-bottom: 12px; }
.why-card p  { font-size: 14px; }

/* === ABOUT === */
#about { background: var(--light-grey); }

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

.about-content h2 { color: var(--charcoal); margin-bottom: 16px; }
.about-content p  { margin-bottom: 18px; font-size: 15px; }

.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin: 24px 0 32px;
}

.about-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--mid-grey);
}
.about-check i { color: var(--red); flex-shrink: 0; }

.about-card-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-card-wrap img {
    max-width: 230px;
    width: 100%;
    margin-bottom: 20px;
}

.about-card-tagline {
    font-style: italic;
    color: var(--mid-grey);
    font-size: 15px;
    margin-bottom: 28px;
}

.about-stat-row {
    display: flex;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 24px;
}
.about-stat       { flex: 1; padding: 0 12px; border-right: 1px solid rgba(0,0,0,0.08); }
.about-stat:last-child { border-right: none; }
.about-stat-num   { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 700; color: var(--red); }
.about-stat-lbl   { font-size: 11px; color: var(--mid-grey); margin-top: 4px; }

/* === TESTIMONIALS === */
#testimonials { background: var(--white); }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.testi-card {
    background: var(--light-grey);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
}

.testi-stars  { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote  { font-size: 44px; line-height: 1; color: var(--red); opacity: 0.5; font-family: Georgia, serif; margin-bottom: 12px; }
.testi-text   { font-size: 14px; color: var(--mid-grey); line-height: 1.75; margin-bottom: 24px; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: white;
    flex-shrink: 0;
}
.testi-name     { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--charcoal); }
.testi-location { font-size: 12px; color: var(--mid-grey); margin-top: 2px; }

/* === SERVICE AREA (homepage) === */
#service-area {
    background: var(--charcoal);
    background-image: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, transparent 55%);
}

#service-area .section-label { color: #ff7070; }
#service-area h2             { color: var(--white); }
#service-area .section-heading p { color: rgba(255,255,255,0.58); }

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
    margin-top: 40px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    transition: all var(--ease);
}
.area-item i { color: var(--red); font-size: 13px; flex-shrink: 0; }
.area-item:hover {
    background: rgba(204,0,0,0.14);
    border-color: rgba(204,0,0,0.36);
    color: white;
}
a.area-item { text-decoration: none; cursor: pointer; }

.area-note {
    margin-top: 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.area-note a { color: var(--red); text-decoration: none; }
.area-note a:hover { text-decoration: underline; }

/* === CONTACT / QUOTE (homepage) === */
#contact { background: var(--light-grey); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 68px;
    align-items: start;
}

.contact-info h2 { color: var(--charcoal); margin-bottom: 14px; }
.contact-info > p { margin-bottom: 36px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
}
.contact-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 17px;
    flex-shrink: 0;
}
.contact-detail-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--mid-grey);
    margin-bottom: 4px;
}
.contact-detail-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
}
.contact-detail-val a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color var(--ease);
}
.contact-detail-val a:hover { color: var(--red); }
.contact-detail-val.small {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
}

.quote-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.quote-form h3 { color: var(--charcoal); margin-bottom: 12px; font-size: 20px; }
.quote-form > p { font-size: 14px; color: var(--mid-grey); margin-bottom: 28px; }

.booking-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(204,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 30px;
}

.booking-desc { max-width: 360px; margin: 0 auto; }

.btn-booking { font-size: 15px; padding: 16px 36px; }

.booking-call {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 24px;
}

.booking-call-hint { font-size: 13px; color: var(--mid-grey); }

.booking-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--charcoal);
    text-decoration: none;
    transition: color var(--ease);
}
.booking-phone:hover { color: var(--red); }
.booking-phone .fas { color: var(--red); margin-right: 8px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--charcoal);
    background: var(--white);
    appearance: none;
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(204,0,0,0.09);
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 14px; margin-top: 4px; }

.form-note { text-align: center; font-size: 12px; color: var(--mid-grey); margin-top: 12px; }
.form-note i { margin-right: 4px; }

#formSuccess { display: none; text-align: center; padding: 40px 0; }
.success-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #22c55e;
}
#formSuccess h3 { color: var(--charcoal); margin-bottom: 8px; }

/* === OVERVIEW (service pages) === */
#overview { background: var(--white); }

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.overview-content h2 { color: var(--charcoal); margin-bottom: 16px; }
.overview-content p  { margin-bottom: 16px; font-size: 15px; }

.emergency-box {
    background: #fff5f5;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border-left: 4px solid var(--red);
}

.emergency-box h3 {
    color: var(--charcoal);
    margin-bottom: 20px;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-box h3 i { color: var(--red); }

.emergency-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.emergency-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--mid-grey);
}

.emergency-list li i {
    color: var(--red);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* === RESPONSE STEPS (emergency page) === */
#response { background: var(--light-grey); }

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}

.response-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--ease);
    text-align: center;
}

.response-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
}

.response-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.response-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.response-card h3 { color: var(--charcoal); margin-bottom: 10px; }
.response-card p  { font-size: 14px; line-height: 1.7; }

/* === COVERAGE BAND (service pages) === */
#coverage {
    background: var(--charcoal);
    background-image: linear-gradient(135deg, rgba(204,0,0,0.12) 0%, transparent 60%);
}

.coverage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.coverage-content h2 { color: var(--white); margin-bottom: 14px; }
.coverage-content p  { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 28px; }

.coverage-inner .area-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
}

#coverage .section-label      { color: rgba(255,255,255,0.55); }
#schedule .section-label       { color: #ff7070; }
#smart-upgrade .section-label  { color: #ff7070; }

.contact-emergency { color: var(--red); font-weight: 600; }

.btn-mt-sm         { margin-top: 8px; }
.btn-mt            { margin-top: 28px; }
.area-item-static  { cursor: default; }
.cta-start         { justify-content: flex-start; }

/* Content-section CTA button spacing */
.content-cta .btn + .btn { margin-left: 16px; }

/* Reviews / generic text CTA band */
.text-cta { text-align: center; margin-top: 48px; }
.text-cta p { margin-bottom: 24px; }

/* City landing page intro section */
.intro-text     { max-width: 800px; }
.intro-p        { font-size: 16px; margin-top: 12px; }
.intro-p-lg     { font-size: 16px; margin-top: 16px; }
.nearby-intro   { margin-bottom: 24px; }
.area-note-text { margin-top: 20px; font-size: 14px; color: var(--mid-grey); }
.link-red       { color: var(--red); text-decoration: none; font-weight: 600; }

/* === PHONE CTA (service pages) === */
#phone-cta {
    background: var(--red);
    padding: 80px 0;
    text-align: center;
}

.phone-cta-sup {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
}

#phone-cta h2 { color: var(--white); margin-bottom: 8px; }

.phone-number-large {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 24px auto 32px;
    text-decoration: none;
}

.phone-number-large i {
    font-size: 28px;
    color: rgba(255,255,255,0.85);
}

.phone-number-large span {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
}

.phone-cta-note {
    color: rgba(255,255,255,0.70);
    font-size: 15px;
    margin-bottom: 32px;
}

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === FAQ === */
#faq-section { background: var(--light-grey); }

.faq-header { margin-bottom: 56px; }
.faq-header p { font-size: 15px; color: var(--mid-grey); margin-top: 12px; }

.faq-list { display: flex; flex-direction: column; gap: 48px; }

.faq-category-title {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}
.faq-category-title i { color: var(--red); }

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 8px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal);
    cursor: pointer;
    text-align: left;
    transition: color var(--ease);
}
.faq-question:hover { color: var(--red); }

.faq-icon {
    color: var(--red);
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--red); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-cost-list {
    list-style: none;
    padding: 8px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-cost-list li {
    font-size: 15px;
    color: var(--mid-grey);
    line-height: 1.7;
    padding-left: 16px;
    border-left: 3px solid var(--red);
}
.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--mid-grey);
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.faq-cta p { font-size: 16px; font-weight: 600; color: var(--charcoal); margin: 0; flex: 1 1 100%; }

/* === GALLERY === */
#gallery {
    padding: 80px 0 96px;
    background: var(--white);
}

.gallery-header { margin-bottom: 48px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--light-grey);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,20,20,0);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { background: rgba(20,20,20,0.38); }

.gallery-item-overlay i {
    color: var(--white);
    font-size: 28px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay i { opacity: 1; }

/* === LIGHTBOX === */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10,10,10,0.92);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

#lightbox.open { display: flex; }

#lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity var(--ease);
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: var(--white);
    font-size: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--ease);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* === CTA BAND === */
#cta {
    background: var(--red);
    padding: 64px 0;
    text-align: center;
}

#cta h2 { color: var(--white); margin-bottom: 12px; }
#cta p   { color: rgba(255,255,255,0.85); margin-bottom: 28px; }

/* === CONTENT SECTION (about / reviews / city pages) === */
.content-section {
    background: var(--white);
    padding: 60px 0;
}

.content-section h2 {
    color: var(--charcoal);
    margin-bottom: 20px;
}

.content-section h3 {
    color: var(--charcoal);
    margin: 32px 0 14px;
}

.content-section p {
    margin-bottom: 16px;
    font-size: 16px;
}

.content-section ul {
    margin: 0 0 20px 20px;
    color: var(--mid-grey);
    font-size: 15px;
    line-height: 1.8;
}

/* Inline testimonial quote */
.content-quote {
    border-left: 4px solid var(--red);
    background: var(--light-grey);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 32px 0;
}
.content-quote p    { font-style: italic; margin-bottom: 10px; font-size: 15px; }
.content-quote cite { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--charcoal); }

/* Service checklist grid */
.content-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
    margin: 16px 0 28px;
}
.content-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--mid-grey);
}
.content-check-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; font-size: 13px; }
.problem-list { list-style: none; padding-left: 0; }
.problem-list i { color: var(--red); }
.content-check-item a { color: var(--charcoal); font-weight: 600; text-decoration: none; transition: color var(--ease); }
.content-check-item a:hover { color: var(--red); }

@media (max-width: 540px) { .content-check-grid { grid-template-columns: 1fr; } }

/* Repair process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 8px; font-size: 17px; }
.process-step p { font-size: 14px; color: var(--mid-grey); }
@media (max-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* === FOOTER === */
#footer {
    background: #181818;
    color: rgba(255,255,255,0.55);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo-wrap {
    display: inline-block;
    background: white;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
}
.footer-logo-wrap img { max-width: 190px; width: 100%; display: block; }

.footer-tagline {
    font-style: italic;
    font-size: 13px;
    color: rgba(255,255,255,0.42);
    line-height: 1.5;
    margin-bottom: 22px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--ease);
}
.footer-social a:hover { background: var(--red); color: white; }

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    transition: color var(--ease);
}
.footer-links a:hover { color: var(--red); }

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
}
.footer-contact-row i  { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-contact-row a  { color: rgba(255,255,255,0.52); text-decoration: none; transition: color var(--ease); }
.footer-contact-row a:hover { color: var(--red); }
.footer-contact-row span { color: rgba(255,255,255,0.52); }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a {
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    transition: color var(--ease);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* === RESPONSIVE === */
@media (max-width: 1020px) {
    .about-grid    { grid-template-columns: 1fr; gap: 44px; }
    .contact-grid  { grid-template-columns: 1fr; gap: 44px; }
    .overview-grid { grid-template-columns: 1fr; gap: 40px; }
    .coverage-inner { grid-template-columns: 1fr; gap: 44px; }
    .coverage-inner .area-grid { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
    .footer-top    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .nav-links, .nav-links + .btn { display: none; }
    .nav-toggle { display: flex; }
    .trust-inner { flex-wrap: wrap; }
    .trust-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }
    .trust-item:nth-child(5),
    .trust-item:nth-child(6) { border-bottom: none; }
    .about-checks  { grid-template-columns: 1fr; }
    .form-row      { grid-template-columns: 1fr; }
    .area-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer-top    { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 540px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    h1 { font-size: 28px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .trust-item { flex: 0 0 100%; }
    .quote-form { padding: 28px 20px; }
    .phone-number-large span { font-size: 28px; }
}


/* ============================================================
   SERVICE PAGE UNIFORMITY — shared styles across all pages
   ============================================================ */

/* Section backgrounds */
#repair-types, #spring-types, #door-styles, #opener-types,
#benefits, #signs, #process { background: var(--light-grey); }

#schedule, #smart-upgrade, #warranty {
    background: var(--charcoal);
    background-image: linear-gradient(135deg, rgba(204,0,0,0.12) 0%, transparent 60%);
}

/* Right-side overview boxes */
.warning-box, .problem-box, .checklist-box {
    background: #fff5f5;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border-left: 4px solid var(--red);
}
.warning-box h3, .problem-box h3, .checklist-box h3 {
    color: var(--charcoal);
    margin-bottom: 20px;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.warning-box h3 i, .problem-box h3 i, .checklist-box h3 i { color: var(--red); }

/* Shared list style for overview boxes */
.warning-list, .checklist {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.warning-list li, .checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--mid-grey);
}
.warning-list li i, .checklist li i {
    color: var(--red);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Icon card grids */
.types-grid, .styles-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 48px;
}
.type-card, .style-card, .benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--ease);
    text-align: center;
}
.type-card::before, .style-card::before, .benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
}
.type-card:hover, .style-card:hover, .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.type-icon, .style-icon, .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(204,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 24px;
    margin: 0 auto 20px;
}
.type-card h3, .style-card h3, .benefit-card h3 { margin-bottom: 10px; font-size: 16px; }
.type-card p, .style-card p, .benefit-card p { font-size: 14px; color: var(--mid-grey); line-height: 1.7; }
.type-tag {
    display: inline-block;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--red);
    border: 1px solid var(--red);
    border-radius: 20px;
    padding: 3px 12px;
    margin-top: 14px;
}

/* Schedule section (dark background) */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.schedule-content h2 { color: var(--white); margin-bottom: 16px; }
.schedule-content p { font-size: 15px; margin-bottom: 28px; color: rgba(255,255,255,0.65); }
#signs .schedule-content h2 { color: #222222; }
#signs .schedule-content p { color: #222222; }
.schedule-cards { display: flex; flex-direction: column; gap: 16px; }
.schedule-card {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 20px 24px;
    border-left: 4px solid var(--red);
}
.schedule-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.schedule-card p { font-size: 14px; color: #222222; margin: 0; }
#schedule .schedule-card p { color: rgba(255,255,255,0.7); }

/* Smart upgrade / brands section (opener page, dark background) */
.smart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.smart-content h2 { color: var(--white); margin-bottom: 16px; }
.smart-content p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.smart-brands h3 { color: var(--white); margin-bottom: 20px; }
.brand-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.brand-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 600; }
.brand-item i { color: var(--red); font-size: 13px; }

/* Warranty band (new door page, dark background) */
.warranty-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}
.warranty-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 42px;
    flex-shrink: 0;
}
.warranty-content h2 { color: var(--white); margin-bottom: 14px; }
.warranty-content p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 28px; }

/* Responsive for new sections */
@media (max-width: 900px) {
    .schedule-grid, .smart-grid { grid-template-columns: 1fr; gap: 40px; }
    .warranty-inner { grid-template-columns: 1fr; text-align: center; }
    .warranty-icon-wrap { margin: 0 auto; }
    .cta-start { justify-content: center; }
}
@media (max-width: 768px) {
    .types-grid, .styles-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .types-grid, .styles-grid, .benefits-grid { grid-template-columns: 1fr; }
    .brand-list { grid-template-columns: 1fr; }
}
