/* ===== Asia News Contact Section ===== */
.asia-contact-wrapper {
    padding: 60px 0;
    background: #fafafa;
}

.asia-contact-container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

.asia-contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.asia-contact-info {
    margin-bottom: 35px;
    line-height: 1.7;
    color: #444;
    font-size: 15px;
}

/* GRID */
.asia-news-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LEFT/RIGHT */
.asia-news-left-box label,
.asia-news-right-box label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/* TEXTAREA */
.asia-news-textarea {
    width: 100%;
    height: 180px;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 25px;
    resize: vertical;
    font-size: 15px;
    background: #fff;
}

/* FILE INPUT */
.asia-upload-label {
    margin-top: 10px;
}

.asia-upload-note {
    font-size: 13px;
    margin-bottom: 10px;
    color: #666;
}

.asia-file-wrapper {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 20px;
}

.asia-file-input {
    width: 100%;
    border: none;
}

/* CHECKBOX */
.asia-checkbox {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.3;
}

/* INPUT FIELDS */
.asia-input {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    background: #fff;
}

/* LOCATION BUTTON + INPUT */
.asia-location-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.asia-location-btn {
    padding: 12px 18px;
    background: #c8102e;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.asia-location-btn:hover {
    background: #a70f24;
}

/* RADIO OPTIONS */
.asia-credit-options label {
    display: block;
    margin-bottom: 8px;
}

/* SUBMIT BUTTON */
.asia-submit-btn {
    margin-top: 25px;
    background: #c8102e;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.asia-submit-btn:hover {
    background: #a70f24;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media(max-width: 992px) {
    .asia-news-form-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .asia-contact-title {
        font-size: 26px;
        text-align: center;
    }

    .asia-contact-info {
        text-align: center;
    }

    .asia-location-btn {
        width: 100%;
    }
}
