.enquiry-section {
    margin: 100px 0 15px 0;
}

.application-section{
    margin: 150px 0 50px 0;
    border: 1px solid grey;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
}

.print-container {
    width: 100%;
}

.form-card {
    width: 100%;
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 3px 10px -3px #1b3b4e;
    overflow: hidden;
}

/* header */
.form-header {
    background: #0b2f47;
    color: white;
    padding: 1.2rem 1.5rem;
}

.form-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}

.form-header h2 i {
    color: #ebf906;
}

/* form body */
.form-body {
    padding: 2.5rem;
}

.section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.15rem;
    font-weight: 650;
    color: #0f3a55;
    border-bottom: 3px solid #dae6f2;
    padding-bottom: 0.45rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: #e67e22;
    width: 1.8rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.field label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1e3b54;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field label i {
    width: 1.2rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #c2d6e8;
    border-radius: 18px;
    font-size: 0.95rem;
    background: #f9fdff;
    transition: 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #1f618d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 100, 150, 0.15);
    background: white;
}

.radio-group {
    background: #f2f9ff;
    border: 1.5px solid #c2d6e8;
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.upload-area {
    background: #f0f7fe;
    border-radius: 24px;
    padding: 1.2rem 1.5rem;
    border: 2px dashed #96b9d8;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.upload-area i {
    font-size: 2rem;
    color: #1e5a88;
}

.upload-area button i{
    font-size: 1rem;
}

.upload-area .file-hint {
    flex: 1;
    font-weight: 500;
    color: #15415e;
}

.upload-area .file-hint small {
    font-weight: 400;
    color: #386e96;
    display: block;
}

.fake-file-btn {
    background: white;
    border: 1.5px solid #1e5a88;
    color: #1e5a88;
    border-radius: 40px;
    padding: 0.5rem 1.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.1s;
}

.fake-file-btn:hover {
    background: #e3effa;
}

/* functional actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #0b2f47;
    border: none;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    box-shadow: 0 10px 20px -12px #052136;
    transition: 0.15s;
    border: 1px solid #1c5377;
}

.btn-primary:hover {
    background: #13486b;
    color: #ffffff;
    transform: scale(1.01);
}

.btn-secondary {
    background: white;
    border: 1.5px solid #a6c4e3;
    color: #17466b;
    padding: 0.5rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    gap: 0.6rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: 0.1s;
}

.btn-secondary:hover {
    background: #ecf5fc;
}

.btn-print {
    background: #1e5d3b;
    color: white;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: 0.15s;
    border: 1px solid #2e8553;
}

.btn-print:hover {
    background: #256f46;
}

.footnote {
    margin-top: 2rem;
    border-top: 1px solid #cbdae9;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    color: #386b91;
    font-size: 0.8rem;
}

/* hidden file input styling */
.real-file-input {
    display: none;
}

/* success message */
.toast-msg {
    background: #1f7a3d;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 60px;
    font-weight: 500;
    margin-bottom: 1.2rem;
    display: inline-block;
    box-shadow: 0 5px 14px rgba(0, 60, 20, 0.2);
}

@media (max-width:700px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .form-body {
        padding: 1.8rem;
    }
}

/* print specific (used in print window) */
@media print {
    .no-print {
        display: none;
    }

    .print-only {
        display: block;
    }
}