/* --- Global Form Container --- */
.form-container-premium {
    background: #ffffff;
    border-radius: 40px;
    padding: 0px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.header-line {
    width: 80px;
    height: 5px;
    background: var(--brand-teal);
    margin: 20px auto 50px;
    border-radius: 10px;
}

/* --- Section Titles --- */
.section-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0f172a;
    background: #f8fafc;
    padding: 15px 25px;
    margin: 50px 0 30px;
    display: flex;
    align-items: center;
}

/* --- Responsive Table  --- */
.table-responsive-custom {
    width: 100% !important;
    overflow-x: auto !important;
    display: block;
    -webkit-overflow-scrolling: touch;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
}

.table-custom {
    min-width: 800px;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e2e8f0 !important;
}

.table-custom thead { 
    background: #00563b;
    color: #fff; 
}

.table-custom th {
    padding: 15px !important;
    border: 1px solid #b5b5b5;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #00563b;
}

.table-custom td {
    padding: 0 !important;
    vertical-align: middle;
    border: 1px solid #e2e8f0;
}

/* --- Table Inputs --- */
.input-table {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.03);
    outline: none;
    border: none;
}

/* --- Main Form Controls --- */
.form-label-custom {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 10px;
    display: block;
}

.form-control-custom, .form-select-custom {
    border-radius: 15px;
    border: 1.5px solid #e2e8f0;
    padding: 14px 20px;
    width: 100%;
    font-size: 15px;
    transition: 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 5px rgba(0, 158, 179, 0.1);
    outline: none;
}

/* --- Buttons --- */
.btn-outline-teal {
    border: 2px solid var(--brand-teal);
    color: var(--brand-teal);
    font-weight: 800;
    border-radius: 50px;
    padding: 6px 25px;
    font-size: 12px;
    transition: 0.3s;
}

.btn-submit-luxury {
    background: #004d40;
    color: #fff;
    border: none;
    padding: 22px 80px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    transition: 0.5s;
    display: inline-block;
    cursor: pointer;
}

.btn-submit-luxury:hover {
    background: #198754;
    transform: translateY(-5px);
}

/* --- MOBILE MEDIA QUERY --- */
@media (max-width: 768px) {
    .form-container-premium {
        padding: 0px;
        border-radius: 20px;
        box-shadow: none;
    }
    
    .section-title {
        padding: 12px 15px;
        font-size: 12px;
    }

    .btn-submit-luxury {
        width: 100%;
        padding: 18px 20px;
        font-size: 14px;
    }
}