/* 24/7 Breakdown Services Page Styles */

.breakdown-services-page .hero {
    position: relative;
    background-image: url('../images/services-002.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 22px;
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Center all h2 and add styles */
.breakdown-services-page h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin: 0 auto 20px;
    border-bottom: 3px solid #D50505;
    display: inline-block;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.breakdown-services-page h2:hover {
    color: #D50505;
}

/* Service Details Section */
.service-details {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.service-details p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-details p:hover {
    transform: scale(1.05);
    color: #333;
}

/* Call Button Styling */
.call-button-container {
    margin-top: 20px;
    text-align: center;
}

.call-button {
    display: inline-block;
    background-color: #D50505; /* Button color */
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.call-button:hover {
    background-color: #a00404; /* Darker hover color */
    transform: scale(1.05); /* Slight zoom effect on hover */
    text-decoration: none; /* Ensure no underline */
}

.call-button:active {
    background-color: #7b0303; /* Active state color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: scale(0.98); /* Slight shrink on click */
}

/* Key Benefits Section */
.key-benefits {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.key-benefits ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.key-benefits li {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.key-benefits li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #D50505;
    font-weight: bold;
    transition: color 0.3s ease;
}

.key-benefits li:hover {
    color: #D50505;
    transform: translateX(10px);
}

.key-benefits li:hover:before {
    color: #333;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        padding: 20px;
    }

    .service-details, .key-benefits {
        padding: 40px 10px;
    }

    .key-benefits ul {
        text-align: center;
    }

    .key-benefits li {
        text-align: center;
        padding-left: 0;
    }

    .key-benefits li:before {
        display: none;
    }
}
