@charset "utf-8";
/***********************************************************
ct.css - Contact styling for Nepon TV
***********************************************************/
body.g_ct #g_subheader {
    background-color: #249ad8;
    color: #ffffff;
}

.ct_container {
    width: 1000px;
    margin: 40px auto 60px;
}

.ct_intro {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: center;
}

/* Contact List 2-Columns layout */
.contact_list_grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.contact_column {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact_column:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.contact_col_header {
    border-bottom: 2px solid #249ad8;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.contact_col_title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.contact_category_items {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
.contact_category_items li {
    padding: 10px 0;
    font-size: 15px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact_category_items li::before {
    content: '›';
    color: #249ad8;
    font-size: 18px;
    font-weight: bold;
}

/* Blue Contact Button specified by user */
.btn_contact_blue {
    display: block;
    width: 100%;
    background-color: #249ad8;
    color: #ffffff !important;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 14px 20px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(36, 154, 216, 0.35);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
    border: none;
}
.btn_contact_blue:hover {
    background-color: #1a7eb3;
    box-shadow: 0 6px 18px rgba(36, 154, 216, 0.5);
}

/* Interactive Contact Form Container */
.ct_form_wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.ct_form_header {
    margin-bottom: 30px;
    border-bottom: 2px solid #249ad8;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ct_form_header h3 {
    font-size: 22px;
    color: #0f172a;
    font-weight: 700;
    margin: 0;
}

.ct_policy_note {
    font-size: 13px;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 18px;
    border-radius: 4px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ct_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.ct_table tr {
    border-bottom: 1px solid #e2e8f0;
}
.ct_table th {
    width: 200px;
    padding: 16px 20px;
    background: #f8fafc;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    vertical-align: top;
}
.ct_table th .req {
    color: #e11d48;
    margin-left: 4px;
}
.ct_table td {
    padding: 14px 20px;
}
.ct_table input[type="text"],
.ct_table input[type="email"],
.ct_table textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 14px;
    color: #1e293b;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}
.ct_table input[type="text"]:focus,
.ct_table input[type="email"]:focus,
.ct_table textarea:focus {
    border-color: #249ad8;
    box-shadow: 0 0 0 3px rgba(36, 154, 216, 0.15);
}

.checkbox_group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.checkbox_group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
}
.checkbox_group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #249ad8;
}

.ct_form_btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.btn_form_submit {
    background-color: #249ad8;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 40px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn_form_submit:hover {
    background-color: #1a7eb3;
}
.btn_form_reset {
    background-color: #94a3b8;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn_form_reset:hover {
    background-color: #64748b;
}
