/**
 * Special Cleaning Page Styles
 * 숨카(SUMCAR) - 특수크리닝 페이지
 */

/* ========================================
   Hero Section
   ======================================== */
.special-hero {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0E0E0E 0%, #1a1a1a 100%);
    z-index: 0;
}

.special-hero__overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.special-hero__content {
    text-align: center;
    max-width: 1000px;
}

.special-hero__subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #00B8C6;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 24px 0;
}

.special-hero__title {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.special-hero__description {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}


/* ========================================
   Preparing Section
   ======================================== */
.special-preparing {
    background: #FFFFFF;
    padding: 200px 24px;
}

.special-preparing__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.special-preparing__icon {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.special-preparing__title {
    font-size: 48px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.5;
}

.special-preparing__title-highlight {
    font-weight: 700;
    color: #000000;
}

.special-preparing__description {
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.8;
}


/* ========================================
   Tablet & Mobile Responsive
   ======================================== */
@media (max-width: 991px) {
    .special-hero {
        height: 380px;
    }

    .special-hero__subtitle {
        font-size: 16px;
    }

    .special-hero__title {
        font-size: 42px;
    }

    .special-hero__description {
        font-size: 18px;
    }

    .special-preparing {
        padding: 100px 24px;
    }

    .special-preparing__icon {
        width: 250px;
        height: 250px;
    }

    .special-preparing__title {
        font-size: 36px;
    }

    .special-preparing__description {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .special-hero {
        height: 320px;
    }

    .special-hero__subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .special-hero__title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .special-hero__description {
        font-size: 16px;
    }

    .special-preparing {
        padding: 80px 24px;
    }

    .special-preparing__icon {
        width: 200px;
        height: 200px;
    }

    .special-preparing__title {
        font-size: 28px;
    }

    .special-preparing__description {
        font-size: 16px;
    }
}
