/**
 * Sub0401 - 상담 및 견적문의 페이지 스타일
 */

/* ==========================================================================
   1. Hero Image Section
   ========================================================================== */
.hero-image-section {
    padding: 80px 0 0;
    background-color: #ffffff;
}

.hero-image {
    width: 100%;
    height: 386px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   2. Form Section
   ========================================================================== */
.form-section {
    padding: 80px 0 120px;
    background-color: #ffffff;
}

/* Page Title */
.page-title-wrapper {
    margin-bottom: 40px;
}

.page-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    color: #2d2d2d;
    margin: 0;
}

/* ==========================================================================
   3. Inquiry Form
   ========================================================================== */
/* Form 컴포넌트는 components.css에 정의되어 있습니다 */
/* Info Box 컴포넌트는 components.css에 정의되어 있습니다 */

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ==========================================================================
   4. Responsive
   ========================================================================== */

@media screen and (max-width: 1200px) {
    .page-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 1024px) {
    .hero-image-section {
        padding: 40px 0 0;
    }

    .hero-image {
        height: 300px;
    }

    .form-section {
        padding: 60px 0 120px;
    }

    .page-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .hero-image-section {
        padding: 30px 0 0;
    }

    .hero-image {
        height: 240px;
        border-radius: 12px;
    }

    .form-section {
        padding: 40px 0 80px;
    }

    .page-title-wrapper {
        margin-bottom: 30px;
    }

    .page-title {
        font-size: 26px;
    }

    .inquiry-form {
        gap: 12px;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 22px;
    }
}
