/* Module: ps_personalized_service - Styles CSS */

.personalized-service-module {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-inline: 60px !important;
}

/* Section Performance/Exception */
.performance-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.performance-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.car-container-overhead {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    bottom: 13%;
    left: 15%;
}

.car-image-overhead {
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.performance-title {
    position: relative;
    }

.title-image-overhead {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.exception-title {
    font-family: 'Arial', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, #d4af37 0%, #b8941f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Service */
.service-section {
    margin-top: 100px;
    background: #3735355e;
    border-radius: 30px;
    padding: 60px 0;
    position: relative;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-header {
    margin-bottom: 30px;
}

.service-title {
    margin: 0 0 30px 0;
    line-height: 1.1;
    width: 100%;
}

.title-line-1 {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.title-line-2 {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #826857;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-description {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

.service-features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.service-feature {
    flex: 1;
    min-width: 250px;
    text-align: center;
    border-radius: 8px;
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.feature-title {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    text-align: start;
    font-weight: 700;
    color: #826857;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {

    .performance-title,
    .exception-title {
        font-size: 2.5rem;
    }

    .car-image {
        width: 200px;
    }

    .title-line-1,
    .title-line-2 {
        font-size: 1.8rem;
    }

    .service-features {
        flex-direction: column;
        gap: 20px;
    }

    .service-feature {
        min-width: auto;
    }
}

@media (max-width: 480px) {

    .performance-title,
    .exception-title {
        font-size: 2rem;
    }

    .car-image {
        width: 150px;
    }

    .title-line-1,
    .title-line-2 {
        font-size: 1.4rem;
    }

    .service-description {
        font-size: 1rem;
    }
}