/* PAGE: Repair Services */
/* Repair page-specific styles - follows home.css patterns */

/* ===================================================
   REPAIR HERO SECTION
   =================================================== */

.repair-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ===== RESPONSIVE BACKGROUND IMAGE ===== */
/* 
 * Using CSS background-image with media queries for optimal performance.
 * 
 * Path reference: This CSS file is at frontend/styles/pages/repair.css
 * Images are at: frontend/assets/images/
 * Relative path: ../../assets/images/
 * 
 * Breakpoint strategy (mobile-first approach reversed for desktop-first):
 * - Default (≥1920px): Full resolution repair-hero.jpg
 * - 1440-1919px: repair-hero-1536x720.jpg
 * - 768-1439px: repair-hero-1280x600.jpg  
 * - 480-767px: repair-hero-768x360.jpg
 * - <480px: repair-hero-480x225.jpg
 */
.repair-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    
    /* Background image */
    background-image: url('../../assets/images/repair-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay - Semi-transparent dark layer over background */
.repair-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 37, 77, 0.75);
    z-index: 2;
}

/* Hero Container - Main content wrapper */
.repair-hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 120px;
}

/* ===== HERO CONTENT ===== */
.repair-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
}

/* ===== HERO HEADING ===== */
.repair-hero-heading {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(28px, 4vw, 56px);
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
}

/* ===== HERO SUBTEXT ===== */
.repair-hero-subtext {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 48px;
    max-width: 800px;
}

/* ===== FEATURE ICONS ROW ===== */
.repair-hero-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 48px;
    max-width: 900px;
}

.repair-hero-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.repair-hero-features .feature-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.repair-hero-features .feature-icon i {
    font-size: 120px;
    color: #3DBF2B;
}

.repair-hero-features .feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.repair-hero-features .feature-title,
.repair-hero-features .feature-subtitle {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(16px, 2vw, 24px);
    color: #FFFFFF;
    line-height: 1.1;
}

/* ===== CTA BUTTONS ROW ===== */
.repair-hero-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.repair-hero-cta-buttons .btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 420px;
    height: 90px;
    font-family: 'Bowlby One', cursive;
    font-size: clamp(14px, 2vw, 24px);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 45px;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
    text-align: center;
    padding: 0 20px;
    min-height: 44px;
}

.repair-hero-cta-buttons .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.repair-hero-cta-buttons .btn-cta:active {
    transform: translateY(0);
}

.repair-hero-cta-buttons .btn-cta:focus-visible {
    outline: 3px solid #3DBF2B;
    outline-offset: 3px;
}

.repair-hero-cta-buttons .btn-cta-quote {
    background-color: #00254D;
}

.repair-hero-cta-buttons .btn-cta-quote:hover {
    background-color: #003366;
}

.repair-hero-cta-buttons .btn-cta-call {
    background-color: #D80000;
}

.repair-hero-cta-buttons .btn-cta-call:hover {
    background-color: #B50000;
}

/* ===== SATISFACTION SECTION ===== */
.repair-hero-satisfaction {
    display: flex;
    align-items: center;
    gap: 25px;
}

.repair-hero-satisfaction .satisfaction-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.repair-hero-satisfaction .satisfaction-icon i {
    font-size: 100px;
    color: #3DBF2B;
}

.repair-hero-satisfaction .satisfaction-text {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(18px, 2.5vw, 32px);
    color: #FFFFFF;
    margin: 0;
}


/* ===================================================
   REPAIR HERO RESPONSIVE STYLES
   =================================================== */

/* ===== 4K SCREENS (≥2560px) ===== */
@media screen and (min-width: 2560px) {
    .repair-hero-container {
        max-width: 85%;
        padding: 100px 150px;
    }
    
    .repair-hero {
        min-height: 800px;
    }
    
    .repair-hero-features {
        gap: 100px;
    }
    
    .repair-hero-features .feature-icon {
        width: 140px;
        height: 140px;
    }
    
    .repair-hero-satisfaction .satisfaction-icon {
        width: 120px;
        height: 120px;
    }
}

/* ===== LARGE DESKTOPS (1920-2559px) ===== */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
    .repair-hero-container {
        max-width: 1920px;
    }
    
    .repair-hero {
        min-height: 750px;
    }
}

/* ===== STANDARD DESKTOPS (1440-1919px) ===== */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .repair-hero {
        min-height: 650px;
    }
    
    .repair-hero-container {
        padding: 70px 100px;
    }
    
    .repair-hero-features {
        gap: 60px;
        margin-bottom: 40px;
    }
    
    .repair-hero-features .feature-icon {
        width: 100px;
        height: 100px;
    }
    
    .repair-hero-cta-buttons .btn-cta {
        width: 380px;
        height: 80px;
    }
    
    .repair-hero-cta-buttons {
        margin-bottom: 40px;
    }
    
    .repair-hero-satisfaction .satisfaction-icon {
        width: 90px;
        height: 90px;
    }
}

/* ===== LARGE TABLETS (1024-1439px) ===== */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .repair-hero {
        min-height: 600px;
    }
    
    .repair-hero-container {
        padding: 60px 60px;
    }
    
    .repair-hero-heading {
        margin-bottom: 16px;
    }
    
    .repair-hero-subtext {
        margin-bottom: 36px;
    }
    
    .repair-hero-features {
        gap: 50px;
        margin-bottom: 36px;
    }
    
    .repair-hero-features .feature-icon {
        width: 90px;
        height: 90px;
    }
    
    .repair-hero-cta-buttons {
        gap: 30px;
        margin-bottom: 36px;
    }
    
    .repair-hero-cta-buttons .btn-cta {
        width: 340px;
        height: 75px;
    }
    
    .repair-hero-satisfaction .satisfaction-icon {
        width: 80px;
        height: 80px;
    }
    
    .repair-hero-satisfaction {
        gap: 20px;
    }
}

/* ===== SMALL TABLETS (768-1023px) ===== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .repair-hero {
        min-height: 650px;
    }
    
    .repair-hero-container {
        padding: 50px 40px;
    }
    
    .repair-hero-heading {
        margin-bottom: 14px;
    }
    
    .repair-hero-subtext {
        margin-bottom: 30px;
    }
    
    .repair-hero-features {
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .repair-hero-features .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .repair-hero-features .feature-icon i {
        font-size: 60px;
    }
    
    .repair-hero-cta-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 450px;
        margin-bottom: 30px;
    }
    
    .repair-hero-cta-buttons .btn-cta {
        width: 100%;
        height: 70px;
        border-radius: 35px;
    }
    
    .repair-hero-satisfaction {
        flex-direction: column;
        gap: 15px;
    }
    
    .repair-hero-satisfaction .satisfaction-icon {
        width: 70px;
        height: 70px;
    }
    
    .repair-hero-satisfaction .satisfaction-text {
        text-align: center;
    }
}

/* ===== MOBILE (≤767px) ===== */
@media screen and (max-width: 767px) {
    .repair-hero {
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .repair-hero-container {
        padding: 40px 24px;
    }
    
    .repair-hero-heading {
        margin-bottom: 14px;
    }
    
    .repair-hero-subtext {
        margin-bottom: 28px;
    }
    
    .repair-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 28px;
        width: 100%;
    }
    
    .repair-hero-features .feature-item {
        width: 100%;
        max-width: 200px;
    }
    
    .repair-hero-features .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .repair-hero-features .feature-icon i {
        font-size: 55px;
    }
    
    .repair-hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-bottom: 28px;
    }
    
    .repair-hero-cta-buttons .btn-cta {
        width: 100%;
        height: 65px;
        border-radius: 32px;
        min-height: 48px;
    }
    
    .repair-hero-satisfaction {
        flex-direction: column;
        gap: 12px;
    }
    
    .repair-hero-satisfaction .satisfaction-icon {
        width: 65px;
        height: 65px;
    }
}

/* ===== SMALL MOBILE (≤375px) ===== */
@media screen and (max-width: 375px) {
    .repair-hero-container {
        padding: 35px 20px;
    }
    
    .repair-hero-heading {
        margin-bottom: 12px;
    }
    
    .repair-hero-subtext {
        margin-bottom: 24px;
    }
    
    .repair-hero-features {
        gap: 20px;
        margin-bottom: 24px;
        align-items: center;
    }
    
    .repair-hero-features .feature-item {
        max-width: 180px;
    }
    
    .repair-hero-features .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .repair-hero-features .feature-icon i {
        font-size: 50px;
    }
    
    .repair-hero-cta-buttons {
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .repair-hero-cta-buttons .btn-cta {
        height: 56px;
        border-radius: 28px;
    }
    
    .repair-hero-satisfaction .satisfaction-icon {
        width: 60px;
        height: 60px;
    }
}

/* ===== EXTRA SMALL MOBILE (≤320px) ===== */
@media screen and (max-width: 320px) {
    .repair-hero-container {
        padding: 30px 15px;
    }
    
    .repair-hero-heading {
        margin-bottom: 10px;
    }
    
    .repair-hero-subtext {
        margin-bottom: 20px;
    }
    
    .repair-hero-features {
        gap: 18px;
        margin-bottom: 20px;
        align-items: center;
    }
    
    .repair-hero-features .feature-item {
        max-width: 160px;
    }
    
    .repair-hero-features .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .repair-hero-features .feature-icon i {
        font-size: 45px;
    }
    
    .repair-hero-cta-buttons .btn-cta {
        height: 52px;
        padding: 0 15px;
    }
    
    .repair-hero-satisfaction .satisfaction-icon {
        width: 55px;
        height: 55px;
    }
}


/* ===================================================
   REPAIR SERVICES SECTION
   =================================================== */

.repair-services {
    width: 100%;
    background-color: #FFFFFF;
}

.repair-services-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
}

/* Section Title */
.repair-services-title {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #00254D;
    text-align: center;
    margin: 0;
    padding-top: 80px;
    padding-bottom: 60px;
}

/* Services Grid - Three columns */
.repair-services-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 0 70px;
    padding-bottom: 100px;
    flex-wrap: wrap;
}

/* ===== REPAIR SERVICE CARD BASE STYLES ===== */
.repair-service-card {
    position: relative;
    width: 380px;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 200ms ease, box-shadow 200ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.repair-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Card Icon */
.repair-service-card__icon {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background-color: rgba(61, 191, 43, 0.1);
    border-radius: 50%;
    padding: 10px;
}

.repair-service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Card Content */
.repair-service-card__content {
    width: 100%;
}

/* Card Title with Green Underline */
.repair-service-card__title {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    color: #00254D;
    margin: 0;
    padding-bottom: 12px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.repair-service-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #3DBF2B;
    border-radius: 2px;
}

/* Card List */
.repair-service-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.repair-service-card__list li {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(15px, 1.4vw, 17px);
    color: #333333;
    line-height: 1.6;
    padding: 7px 0;
    padding-left: 28px;
    position: relative;
}

.repair-service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-color: #3DBF2B;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}


/* ===================================================
   REPAIR SERVICES RESPONSIVE STYLES
   =================================================== */

/* ===== STANDARD DESKTOPS (1440-1919px) ===== */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .repair-services-grid {
        gap: 50px;
        padding: 0 60px;
        padding-bottom: 90px;
    }
    
    .repair-service-card {
        width: 360px;
        padding: 36px 28px;
    }
}

/* ===== LARGE TABLETS (1024-1439px) ===== */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .repair-services-title {
        padding-top: 70px;
        padding-bottom: 50px;
    }
    
    .repair-services-grid {
        gap: 40px;
        padding: 0 50px;
        padding-bottom: 80px;
    }
    
    .repair-service-card {
        width: 320px;
        padding: 32px 24px;
    }
    
    .repair-service-card__icon {
        width: 130px;
        height: 130px;
        margin-bottom: 20px;
    }
    
    .repair-service-card__icon img {
        width: 100%;
        height: 100%;
    }
}

/* ===== SMALL TABLETS (768-1023px) ===== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .repair-services-title {
        padding-top: 60px;
        padding-bottom: 45px;
    }
    
    .repair-services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 40px;
        padding-bottom: 70px;
    }
    
    .repair-service-card {
        width: 100%;
        padding: 30px 24px;
    }
    
    /* Third card spans full width */
    .repair-service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }
    
    .repair-service-card__icon {
        width: 120px;
        height: 120px;
        margin-bottom: 18px;
    }
    
    .repair-service-card__icon img {
        width: 100%;
        height: 100%;
    }
}

/* ===== MOBILE (≤767px) ===== */
@media screen and (max-width: 767px) {
    .repair-services-title {
        padding-top: 50px;
        padding-bottom: 35px;
    }
    
    .repair-services-grid {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        padding: 0 24px;
        padding-bottom: 60px;
    }
    
    .repair-service-card {
        width: 100%;
        max-width: 400px;
        padding: 28px 22px;
    }
    
    .repair-service-card__icon {
        width: 110px;
        height: 110px;
        margin-bottom: 16px;
    }
    
    .repair-service-card__icon img {
        width: 100%;
        height: 100%;
    }
    
    .repair-service-card__title {
        margin-bottom: 16px;
    }
    
    .repair-service-card__list li {
        padding: 6px 0;
        padding-left: 26px;
    }
    
    .repair-service-card__list li::before {
        width: 16px;
        height: 16px;
        background-size: 10px;
    }
}

/* ===== SMALL MOBILE (≤375px) ===== */
@media screen and (max-width: 375px) {
    .repair-services-title {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    
    .repair-services-grid {
        gap: 24px;
        padding: 0 20px;
        padding-bottom: 50px;
    }
    
    .repair-service-card {
        padding: 24px 18px;
    }
    
    .repair-service-card__icon {
        width: 100px;
        height: 100px;
        margin-bottom: 14px;
    }
    
    .repair-service-card__icon img {
        width: 100%;
        height: 100%;
    }
    
    .repair-service-card__title::after {
        width: 60px;
        height: 3px;
    }
}

/* ===== EXTRA SMALL MOBILE (≤320px) ===== */
@media screen and (max-width: 320px) {
    .repair-services-title {
        padding-top: 35px;
        padding-bottom: 25px;
    }
    
    .repair-services-grid {
        gap: 20px;
        padding: 0 15px;
        padding-bottom: 40px;
    }
    
    .repair-service-card {
        padding: 20px 15px;
    }
    
    .repair-service-card__icon {
        width: 90px;
        height: 90px;
        margin-bottom: 12px;
    }
    
    .repair-service-card__icon img {
        width: 100%;
        height: 100%;
    }
    
    .repair-service-card__list li {
        padding-left: 24px;
    }
    
    .repair-service-card__list li::before {
        width: 14px;
        height: 14px;
        background-size: 9px;
    }
}


/* ===================================================
   SIGNS YOU NEED HVAC REPAIR SECTION
   =================================================== */

.repair-signs {
    width: 100%;
    background-color: #F8F9FA;
}

.repair-signs-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 120px;
}

/* Section Title */
.repair-signs-title {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #00254D;
    text-align: center;
    margin: 0;
    margin-bottom: 60px;
}

/* Two-Column Grid */
.repair-signs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

/* Signs Column */
.repair-signs-column {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Individual Sign Item */
.repair-signs-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.repair-signs-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Warning Icon */
.repair-signs-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #D80000;
    font-size: 24px;
}

/* Sign Text */
.repair-signs-text {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
}

/* Reassurance Line */
.repair-signs-reassurance {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: #3DBF2B;
    text-align: center;
    margin: 0;
    padding-top: 20px;
}


/* ===================================================
   SIGNS SECTION RESPONSIVE STYLES
   =================================================== */

/* ===== STANDARD DESKTOPS (1440-1919px) ===== */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .repair-signs-container {
        padding: 70px 100px;
    }
    
    .repair-signs-grid {
        gap: 35px 60px;
    }
}

/* ===== LARGE TABLETS (1024-1439px) ===== */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .repair-signs-container {
        padding: 60px 80px;
    }
    
    .repair-signs-title {
        margin-bottom: 50px;
    }
    
    .repair-signs-grid {
        gap: 30px 50px;
        margin-bottom: 40px;
    }
    
    .repair-signs-item {
        padding: 14px 18px;
    }
    
    .repair-signs-icon {
        width: 32px;
        height: 32px;
        font-size: 22px;
    }
}

/* ===== SMALL TABLETS (768-1023px) ===== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .repair-signs-container {
        padding: 50px 40px;
    }
    
    .repair-signs-title {
        margin-bottom: 40px;
    }
    
    .repair-signs-grid {
        gap: 25px 40px;
        margin-bottom: 35px;
    }
    
    .repair-signs-column {
        gap: 14px;
    }
    
    .repair-signs-item {
        padding: 14px 16px;
        gap: 14px;
    }
    
    .repair-signs-icon {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}

/* ===== MOBILE (≤767px) - Single Column ===== */
@media screen and (max-width: 767px) {
    .repair-signs-container {
        padding: 45px 24px;
    }
    
    .repair-signs-title {
        margin-bottom: 35px;
    }
    
    .repair-signs-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 30px;
    }
    
    .repair-signs-column {
        gap: 12px;
    }
    
    .repair-signs-column:first-child {
        margin-bottom: 12px;
    }
    
    .repair-signs-item {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .repair-signs-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    
    .repair-signs-reassurance {
        padding-top: 15px;
    }
}

/* ===== SMALL MOBILE (≤375px) ===== */
@media screen and (max-width: 375px) {
    .repair-signs-container {
        padding: 40px 20px;
    }
    
    .repair-signs-title {
        margin-bottom: 30px;
    }
    
    .repair-signs-column {
        gap: 10px;
    }
    
    .repair-signs-item {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .repair-signs-icon {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}

/* ===== EXTRA SMALL MOBILE (≤320px) ===== */
@media screen and (max-width: 320px) {
    .repair-signs-container {
        padding: 35px 15px;
    }
    
    .repair-signs-title {
        margin-bottom: 25px;
    }
    
    .repair-signs-column {
        gap: 8px;
    }
    
    .repair-signs-item {
        padding: 10px 12px;
    }
    
    .repair-signs-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
}


/* ===================================================
   CTA BANNER SECTION
   =================================================== */

.cta-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ===== RESPONSIVE BACKGROUND IMAGE ===== */
.cta-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    
    /* Default: Large desktop (≥1920px) - Full size image */
    background-image: url('../../assets/images/blue-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Standard desktop (1440-1919px) */
@media screen and (max-width: 1919px) {
    .cta-banner-background {
        background-image: url('../../assets/images/blue-bg-1536x960.jpg');
    }
}

/* Tablet (768-1439px) */
@media screen and (max-width: 1439px) {
    .cta-banner-background {
        background-image: url('../../assets/images/blue-bg-1280x800.jpg');
    }
}

/* Mobile (480-767px) */
@media screen and (max-width: 767px) {
    .cta-banner-background {
        background-image: url('../../assets/images/blue-bg-768x480.jpg');
    }
}

/* Small mobile (<480px) */
@media screen and (max-width: 479px) {
    .cta-banner-background {
        background-image: url('../../assets/images/blue-bg-480x300.jpg');
    }
}

/* CTA Banner Container */
.cta-banner-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1920px;
    margin: 0 auto;
    padding: 85px 189px;
    text-align: center;
}

/* CTA Banner Heading */
.cta-banner-heading {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(26px, 5vw, 64px);
    line-height: 1.15;
    margin-bottom: 10px;
}

.cta-banner-heading .text-white {
    color: #FFFFFF;
}

.cta-banner-heading .text-green {
    color: #3DBF2B;
}

/* CTA Banner Button */
.btn-cta-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 720px;
    max-width: 100%;
    height: 80px;
    background-color: #E50000;
    color: #FFFFFF;
    font-family: 'Bowlby One', cursive;
    font-size: clamp(16px, 2.5vw, 22px);
    text-decoration: none;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
    min-height: 44px;
}

.btn-cta-banner:hover {
    background-color: #C50000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta-banner:active {
    transform: translateY(0);
}

.btn-cta-banner:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 3px;
}

/* ===== CTA BANNER RESPONSIVE STYLES ===== */

/* Large tablets (1024-1439px) */
@media screen and (max-width: 1439px) {
    .cta-banner-container {
        padding: 70px 120px;
    }
    
    .btn-cta-banner {
        width: 600px;
        height: 70px;
    }
}

/* Small tablets (768-1023px) */
@media screen and (max-width: 1023px) {
    .cta-banner-container {
        padding: 60px 80px;
    }
    
    .btn-cta-banner {
        width: calc(100% - 80px);
        max-width: 500px;
        height: 70px;
    }
}

/* Mobile (≤767px) */
@media screen and (max-width: 767px) {
    .cta-banner-container {
        padding: 50px 24px;
    }
    
    .btn-cta-banner {
        width: 100%;
        height: 70px;
        border-radius: 30px;
    }
}

/* Small mobile (≤375px) */
@media screen and (max-width: 375px) {
    .cta-banner-container {
        padding: 40px 20px;
    }
    
    .btn-cta-banner {
        height: 60px;
        border-radius: 25px;
    }
}

/* Extra small mobile (≤320px) */
@media screen and (max-width: 320px) {
    .cta-banner-container {
        padding: 35px 15px;
    }
    
    .btn-cta-banner {
        height: 56px;
        border-radius: 20px;
    }
}


/* ===================================================
   SERVICE AREAS SECTION
   =================================================== */

.service-areas {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Background Image */
.service-areas__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../../assets/images/blue-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive background images */
@media screen and (max-width: 1919px) {
    .service-areas__background {
        background-image: url('../../assets/images/blue-bg-1536x960.jpg');
    }
}

@media screen and (max-width: 1439px) {
    .service-areas__background {
        background-image: url('../../assets/images/blue-bg-1280x800.jpg');
    }
}

@media screen and (max-width: 767px) {
    .service-areas__background {
        background-image: url('../../assets/images/blue-bg-768x480.jpg');
    }
}

/* Dark Overlay for Readability */
.service-areas__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 37, 77, 0.5);
}

/* Content Container */
.service-areas__container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 100px;
}

/* ===== MAP WRAPPER ===== */
.service-areas__map-wrapper {
    flex-shrink: 0;
}

.service-areas__map {
    width: 720px;
    height: 720px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

/* Leaflet map overrides */
.service-areas__map .leaflet-container {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

/* ===== CONTENT COLUMN (Title + Cities) ===== */
.service-areas__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Title */
.service-areas__title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: #3DBF2B;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    margin-top: 53px;
    margin-bottom: 52px;
    letter-spacing: 0.02em;
}

/* Cities Grid - Two Columns */
.service-areas__cities {
    display: flex;
    gap: 220px;
}

/* Single Column of Cities */
.service-areas__column {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual City Item */
.service-areas__city {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    white-space: nowrap;
}


/* ===================================================
   SERVICE AREAS RESPONSIVE STYLES
   =================================================== */

/* ===== Large Desktop (≥1440px) ===== */
@media screen and (min-width: 1440px) {
    .service-areas__container {
        gap: 80px;
        padding: 80px 100px;
    }
    
    .service-areas__map {
        width: 720px;
        height: 720px;
    }
    
    .service-areas__cities {
        gap: 220px;
    }
}

/* ===== Standard Desktop (1280-1439px) ===== */
@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .service-areas__container {
        gap: 60px;
        padding: 70px 80px;
    }
    
    .service-areas__map {
        width: 600px;
        height: 600px;
    }
    
    .service-areas__cities {
        gap: 120px;
    }
}

/* ===== Small Desktop / Large Tablet (1024-1279px) ===== */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .service-areas__container {
        gap: 50px;
        padding: 60px 60px;
    }
    
    .service-areas__map {
        width: 500px;
        height: 500px;
    }
    
    .service-areas__title {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .service-areas__cities {
        gap: 80px;
    }
    
    .service-areas__column {
        gap: 10px;
    }
}

/* ===== Tablet (768-1023px) - Stacked Layout ===== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .service-areas__container {
        flex-direction: column;
        gap: 50px;
        padding: 60px 40px;
    }
    
    .service-areas__map-wrapper {
        width: 80%;
        max-width: 600px;
    }
    
    .service-areas__map {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }
    
    .service-areas__content {
        width: 100%;
        align-items: center;
    }
    
    .service-areas__title {
        margin-top: 0;
        margin-bottom: 40px;
    }
    
    .service-areas__cities {
        gap: 80px;
    }
    
    .service-areas__column {
        gap: 10px;
        align-items: center;
    }
    
    .service-areas__city {
        text-align: center;
    }
}

/* ===== Mobile (≤767px) - Single Column ===== */
@media screen and (max-width: 767px) {
    .service-areas__container {
        flex-direction: column;
        gap: 40px;
        padding: 50px 24px;
    }
    
    .service-areas__map-wrapper {
        width: 90%;
        max-width: 500px;
    }
    
    .service-areas__map {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        border-radius: 20px;
    }
    
    .service-areas__content {
        width: 100%;
    }
    
    .service-areas__title {
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .service-areas__cities {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: center;
    }
    
    .service-areas__column {
        gap: 8px;
        align-items: center;
        margin-bottom: 8px;
    }
    
    .service-areas__city {
        text-align: center;
    }
}

/* ===== Small Mobile (≤480px) ===== */
@media screen and (max-width: 480px) {
    .service-areas__container {
        padding: 40px 20px;
        gap: 30px;
    }
    
    .service-areas__map-wrapper {
        width: 95%;
    }
    
    .service-areas__map {
        border-radius: 15px;
    }
    
    .service-areas__title {
        margin-bottom: 25px;
    }
    
    .service-areas__column {
        gap: 6px;
    }
}

/* ===== Extra Small Mobile (≤375px) ===== */
@media screen and (max-width: 375px) {
    .service-areas__container {
        padding: 35px 16px;
        gap: 25px;
    }
    
    .service-areas__map-wrapper {
        width: 100%;
    }
    
    .service-areas__map {
        border-radius: 12px;
    }
    
    .service-areas__title {
        margin-bottom: 20px;
    }
    
    .service-areas__column {
        gap: 5px;
    }
}

/* ===== Ultra Small Mobile (≤320px) ===== */
@media screen and (max-width: 320px) {
    .service-areas__container {
        padding: 30px 12px;
        gap: 20px;
    }
    
    .service-areas__map {
        border-radius: 10px;
    }
    
    .service-areas__title {
        margin-bottom: 18px;
    }
}
