/* Sub6 Contact Styles */

.contact-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 20px 150px;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.contact-header::before {
    content: '';
    display: block;
    width: 1px;
    height: 106px;
    background: #000;
    margin: 0 auto 70px;
}

.contact-title {
    font-size: 60px;
    font-weight: 800; /* ExtraBold */
    line-height: 1.3;
    color: #000;
    word-break: keep-all;
}

.contact-form {
    max-width: 1500px;
    margin: 0 auto clamp(100px, 10vw, 150px);
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0 50px;
}

.form-group {
    width: calc(50% - 25px);
    margin-bottom: 30px;
}

.form-group.full {
    width: 100%;
}

.form-label {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.form-label .required {
    color: #f00;
    margin-left: 5px;
}

.form-input {
    width: 100%;
    height: 80px;
    border: 1px solid #d1d1d1;
    border-radius: 15px;
    padding: 0 30px;
    font-size: 20px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #1f448e;
}

.form-input::placeholder {
    color: #aaa;
}

textarea.form-input {
    height: 300px;
    padding: 30px;
    resize: none;
}

.privacy-agree {
    margin-top: 20px;
    margin-bottom: 45px;
}

.privacy-label {
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.privacy-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    cursor: pointer;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    background: #1f448e;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #15336e;
}

/* Bottom Banner */
.contact-banner {
    position: relative;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    background: #333; /* Placeholder color */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contact-banner img.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.contact-banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.banner-desc {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
}

.badge-inquiry {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-title {
        font-size: 40px;
    }
    .form-group {
        width: 100%;
    }
    .banner-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .contact-wrap {
        padding: 60px 20px 100px;
    }
    .contact-title {
        font-size: 30px;
    }
    .form-input {
        height: 60px;
        font-size: 16px;
    }
    .contact-banner {
        height: 300px;
    }
    .banner-title {
        font-size: 30px;
    }
    .banner-desc {
        font-size: 18px;
    }
}