﻿/* ==================== DETAILING HERO SECTION ==================== */
.detailing-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.detailing-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .detailing-hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
        z-index: 2;
    }

    .detailing-hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.85);
    }

.detailing-breadcrumb-nav {
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.detailing-breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

    .detailing-breadcrumb-link:hover,
    .detailing-breadcrumb-link.active {
        color: #ffffff;
    }

.detailing-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.detailing-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.detailing-hero-title {
    font-size: 46px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 1100px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: detailingFadeInUp 0.8s ease-out;
}

.detailing-hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 750px;
    line-height: 1.6;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    animation: detailingFadeInUp 0.8s ease-out 0.2s both;
}

@keyframes detailingFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .detailing-hero-title {
        font-size: 48px;
    }

    .detailing-hero-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .detailing-breadcrumb-nav {
        left: 40px;
    }

    .detailing-hero-content {
        padding: 0 40px;
    }

    .detailing-hero-title {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .detailing-hero-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .detailing-hero-section {
        min-height: 500px;
    }

    .detailing-breadcrumb-nav {
        left: 20px;
        font-size: 10px;
    }

    .detailing-breadcrumb-separator {
        font-size: 13px;
    }

    .detailing-hero-content {
        padding: 0 20px;
    }

    .detailing-hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .detailing-hero-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .detailing-hero-title {
        font-size: 28px;
    }

    .detailing-hero-subtitle {
        font-size: 13px;
    }
}
/* ==================== DETAILING INTRO SECTION WITH CURVED BOTTOM ==================== */
.detailing-intro-section {
    background-color: #f5f5f5;
    padding: 80px 0 100px 0;
    position: relative;
}

    /* Curved bottom border */
    .detailing-intro-section::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 80px;
        background: #f5f5f5;
        clip-path: ellipse(100% 100% at 50% 0%);
    }

.detailing-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.detailing-intro-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detailing-intro-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.detailing-intro-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
    margin: 0;
}

.detailing-intro-description {
    font-size: 15px;
    font-weight: 400;
    color: #555555;
    line-height: 1.8;
    margin: 0;
}

.detailing-intro-image {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

    .detailing-intro-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.detailing-intro-container:hover .detailing-intro-image img {
    transform: scale(1.05);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .detailing-intro-section {
        padding: 80px 0 90px 0;
    }

        .detailing-intro-section::after {
            height: 70px;
        }

    .detailing-intro-container {
        gap: 60px;
        padding: 0 60px;
    }

    .detailing-intro-title {
        font-size: 42px;
    }

    .detailing-intro-subtitle {
        font-size: 18px;
    }

    .detailing-intro-description {
        font-size: 14px;
    }

    .detailing-intro-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .detailing-intro-section {
        padding: 60px 0 80px 0;
    }

        .detailing-intro-section::after {
            height: 60px;
        }

    .detailing-intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .detailing-intro-title {
        font-size: 38px;
    }

    .detailing-intro-subtitle {
        font-size: 17px;
    }

    .detailing-intro-description {
        font-size: 14px;
    }

    .detailing-intro-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .detailing-intro-section {
        padding: 50px 0 70px 0;
    }

        .detailing-intro-section::after {
            height: 50px;
        }

    .detailing-intro-container {
        padding: 0 20px;
        gap: 30px;
    }

    .detailing-intro-content {
        gap: 20px;
    }

    .detailing-intro-title {
        font-size: 32px;
    }

    .detailing-intro-subtitle {
        font-size: 16px;
    }

    .detailing-intro-description {
        font-size: 13px;
    }

    .detailing-intro-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .detailing-intro-section {
        padding: 40px 0 60px 0;
    }

        .detailing-intro-section::after {
            height: 40px;
        }

    .detailing-intro-content {
        gap: 16px;
    }

    .detailing-intro-title {
        font-size: 28px;
    }

    .detailing-intro-subtitle {
        font-size: 15px;
    }

    .detailing-intro-description {
        font-size: 12px;
        line-height: 1.7;
    }

    .detailing-intro-image {
        height: 260px;
        border-radius: 12px;
    }
}

/* ==================== WHY CHOOSE SECTION ==================== */
.why-choose-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.why-choose-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 60px 0;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-feature-card {
    background-color: #3a3a3a;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    min-height: 280px;
}

    .service-feature-card:hover {
        transform: translateY(-8px);
        background-color: #444444;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

.service-icon {
    width: 56px;
    height: 56px;
    color: #ffffff;
    margin-bottom: 20px;
}

    .service-icon svg {
        width: 100%;
        height: 100%;
    }

.service-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.service-feature-description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .why-choose-container {
        padding: 0 60px;
    }

    .why-choose-title {
        font-size: 42px;
    }

    .why-choose-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .services-cards-grid {
        gap: 20px;
    }

    .service-feature-card {
        min-height: 260px;
    }
}

@media (max-width: 992px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-container {
        padding: 0 40px;
    }

    .why-choose-title {
        font-size: 36px;
    }

    .why-choose-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .service-feature-card {
        padding: 28px 20px;
        min-height: 240px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-feature-title {
        font-size: 18px;
    }

    .service-feature-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-container {
        padding: 0 20px;
    }

    .why-choose-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .why-choose-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-feature-card {
        padding: 24px 20px;
        min-height: 220px;
    }

    .service-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 16px;
    }

    .service-feature-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .service-feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .why-choose-title {
        font-size: 28px;
    }

    .why-choose-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .services-cards-grid {
        gap: 14px;
    }

    .service-feature-card {
        padding: 22px 18px;
        min-height: 200px;
        border-radius: 12px;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
    }

    .service-feature-title {
        font-size: 16px;
    }

    .service-feature-description {
        font-size: 12px;
        line-height: 1.5;
    }
}
/* ==================== WHY DETAILING SECTION ==================== */
.why-detailing-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.why-detailing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.why-detailing-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 60px 0;
    text-align: center;
}

.why-detailing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-detailing-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .feature-item:hover {
        transform: translateX(8px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.why-detailing-image {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

    .why-detailing-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.why-detailing-content:hover .why-detailing-image img {
    transform: scale(1.05);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .why-detailing-container {
        padding: 0 60px;
    }

    .why-detailing-title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .why-detailing-content {
        gap: 50px;
    }

    .why-detailing-image {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .why-detailing-section {
        padding: 60px 0;
    }

    .why-detailing-container {
        padding: 0 40px;
    }

    .why-detailing-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .why-detailing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-detailing-features {
        gap: 16px;
    }

    .feature-item {
        padding: 18px 20px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

        .feature-icon svg {
            width: 26px;
            height: 26px;
        }

    .feature-text {
        font-size: 15px;
    }

    .why-detailing-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .why-detailing-section {
        padding: 50px 0;
    }

    .why-detailing-container {
        padding: 0 20px;
    }

    .why-detailing-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .why-detailing-features {
        gap: 14px;
    }

    .feature-item {
        padding: 16px 18px;
        gap: 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

        .feature-icon svg {
            width: 24px;
            height: 24px;
        }

    .feature-text {
        font-size: 14px;
    }

    .why-detailing-image {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .why-detailing-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why-detailing-features {
        gap: 12px;
    }

    .feature-item {
        padding: 14px 16px;
        gap: 14px;
        border-radius: 10px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

        .feature-icon svg {
            width: 22px;
            height: 22px;
        }

    .feature-text {
        font-size: 13px;
    }

    .why-detailing-image {
        height: 320px;
        border-radius: 12px;
    }
}
/* ==================== DETAILING PROCESS SECTION ==================== */
.detailing-process-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.detailing-process-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.detailing-process-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.detailing-process-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 60px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.process-step-card {
    background-color: #3a3a3a;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    min-height: 280px;
}

    .process-step-card:hover {
        transform: translateY(-8px);
        background-color: #444444;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

.step-icon-wrapper {
    width: 56px;
    height: 56px;
    color: #ffffff;
    margin-bottom: 20px;
}

    .step-icon-wrapper svg {
        width: 100%;
        height: 100%;
    }

.step-number-badge {
    position: absolute;
    top: 32px;
    right: 24px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.step-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.step-card-description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1400px) {
    .detailing-process-container {
        padding: 0 60px;
    }

    .process-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .detailing-process-section {
        padding: 60px 0;
    }

    .detailing-process-container {
        padding: 0 40px;
    }

    .detailing-process-title {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .detailing-process-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .process-step-card {
        padding: 28px 20px;
        min-height: 260px;
    }

    .step-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .step-number-badge {
        font-size: 42px;
    }

    .step-card-title {
        font-size: 17px;
    }

    .step-card-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .detailing-process-section {
        padding: 50px 0;
    }

    .detailing-process-container {
        padding: 0 20px;
    }

    .detailing-process-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .detailing-process-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-step-card {
        padding: 24px 20px;
        min-height: 240px;
    }

    .step-icon-wrapper {
        width: 46px;
        height: 46px;
        margin-bottom: 16px;
    }

    .step-number-badge {
        font-size: 38px;
        top: 24px;
        right: 20px;
    }

    .step-card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .step-card-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .detailing-process-title {
        font-size: 28px;
    }

    .detailing-process-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .process-step-card {
        padding: 22px 18px;
        min-height: 220px;
        border-radius: 12px;
    }

    .step-icon-wrapper {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
    }

    .step-number-badge {
        font-size: 36px;
    }

    .step-card-title {
        font-size: 15px;
    }

    .step-card-description {
        font-size: 12px;
        line-height: 1.5;
    }
}
