/* category_footer.css */

.category-footer {
    margin: 50px auto;
    font-family: 'Noto Sans KR', sans-serif;
    background: #fff;
}

.category-footer .footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.category-footer .header-wrap {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.category-footer .icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #EFF6FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.category-footer .icon-wrap:hover {
    transform: translateY(-2px);
}

.category-footer .category-icon {
    width: 28px;
    height: 28px;
    color: #2563EB;
}

.category-footer .title {
    font-size: 26px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.category-footer .description {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

.category-footer .services-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 35px;
    max-width: 700px;
}

.category-footer .service-tag {
    background: #F0F7FF;
    color: #2563EB;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.category-footer .service-tag:hover {
    background: #2563EB;
    color: #fff;
    transform: translateY(-1px);
}

.category-footer .buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.category-footer .contact-button {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.category-footer .button-icon {
    width: 22px;
    height: 22px;
}

.category-footer .phone-button {
    background: #fff;
    color: #2563EB;
    border: 2px solid #BFDBFE;
}

.category-footer .phone-button:hover {
    background: #EFF6FF;
    border-color: #2563EB;
    transform: translateY(-2px);
}

.category-footer .estimate-button {
    background: #2563EB;
    color: #fff;
    border: 2px solid #2563EB;
}

.category-footer .estimate-button:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.category-footer .website-button {
    background: #F3F4F6;
    color: #4B5563;
    border: 2px solid #E5E7EB;
}

.category-footer .website-button:hover {
    background: #E5E7EB;
    transform: translateY(-2px);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .category-footer .footer-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .category-footer .title {
        font-size: 22px;
        padding: 0 10px;
    }

    .category-footer .description {
        font-size: 15px;
        padding: 0 15px;
    }

    .category-footer .services-wrap {
        padding: 0 10px;
    }

    .category-footer .contact-button {
        flex: 100%;
        max-width: none;
    }

    .category-footer .icon-wrap {
        width: 50px;
        height: 50px;
    }

    .category-footer .category-icon {
        width: 24px;
        height: 24px;
    }
}

/* 접근성 및 포커스 상태 */
.category-footer .contact-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

/* 프린트 스타일 */
@media print {
    .category-footer {
        margin: 20px 0;
        box-shadow: none;
    }

    .category-footer .footer-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .category-footer .contact-button {
        border: 1px solid #ccc;
        color: #000;
        background: none;
    }
}