* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Cairo";
    src: url("/ste/fonts/Cairo-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Cairo";
    src: url("/ste/fonts/Cairo-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}
html, body {
    font-family: "Cairo", sans-serif;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #006F96 0%, #004d6b 50%, #003347 100%);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 144, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 111, 150, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header-card {
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 40px;
    text-align: center;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.header-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF9013 0%, #006F96 100%);
}

.logo-container {
    margin-bottom: 25px;
}

.logo-container img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.header-title {
    font-size: 32px;
    font-weight: 800;
    color: #006F96;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-subtitle {
    font-size: 18px;
    color: #FF9013;
    font-weight: 600;
    margin-bottom: 5px;
}

.header-location {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.form-card {
    background: white;
    padding: 50px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.progress-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.progress-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e0e0e0;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
    transition: all 0.3s;
}

.progress-step.active .progress-step-circle {
    background: linear-gradient(135deg, #FF9013, #ff7700);
    border-color: #FF9013;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 144, 19, 0.4);
}

.progress-step.completed .progress-step-circle {
    background: linear-gradient(135deg, #006F96, #004d6b);
    border-color: #006F96;
    color: white;
}

.progress-step-label {
    font-size: 13px;
    color: #999;
    font-weight: 600;
}

.progress-step.active .progress-step-label,
.progress-step.completed .progress-step-label {
    color: #333;
}

.section {
    margin-bottom: 45px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.section-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FF9013, #ff7700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    box-shadow: 0 4px 12px rgba(255, 144, 19, 0.3);
}

.section-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #006F96;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-group {
    position: relative;
}

label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

label .required {
    color: #FF9013;
    margin-right: 3px;
    font-size: 16px;
}

.input-wrapper {
    position: relative;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
    background: #fafafa;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #FF9013;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 144, 19, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-option,
.checkbox-option {
    flex: 1;
    min-width: 150px;
}

.radio-option label,
.checkbox-option label {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
    font-weight: 500;
    margin: 0;
}

.radio-option input:checked + label,
.checkbox-option input:checked + label {
    border-color: #FF9013;
    background: rgba(255, 144, 19, 0.08);
    color: #FF9013;
}

.radio-option input,
.checkbox-option input {
    display: none;
}

.radio-option label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s;
}

.radio-option input:checked + label::before {
    border-color: #FF9013;
    background: #FF9013;
    box-shadow: inset 0 0 0 3px white;
}

.info-box {
    background: linear-gradient(135deg, #fff8f0 0%, #fff4e6 100%);
    border-right: 4px solid #FF9013;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(255, 144, 19, 0.1);
}

.info-box-title {
    font-weight: 700;
    color: #FF9013;
    margin-bottom: 10px;
    font-size: 16px;
}

.info-box p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.file-upload-area {
    border: 3px dashed #FF9013;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.file-upload-area:hover {
    background: linear-gradient(135deg, #fff4e6 0%, #fff8f0 100%);
    border-color: #ff7700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 144, 19, 0.2);
}

.file-upload-area input[type="file"] {
    display: none;
}

.file-upload-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.file-upload-text {
    font-size: 16px;
    font-weight: 600;
    color: #FF9013;
    margin-bottom: 8px;
}

.file-upload-hint {
    font-size: 13px;
    color: #999;
}

.submit-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.terms-checkbox {
    margin-bottom: 25px;
}

.terms-checkbox label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.6;
}

.terms-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-left: 12px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.submit-btn {
    background: linear-gradient(135deg, #FF9013 0%, #ff7700 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 144, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 144, 19, 0.4);
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.note {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    font-weight: 400;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .header-card,
    .form-card {
        padding: 25px;
    }

    .header-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 18px;
    }

    .progress-indicator {
        flex-direction: column;
        gap: 15px;
    }

    .progress-indicator::before {
        display: none;
    }

    .logo-container img {
        max-width: 200px;
    }
}

/* File list styling */
.file-list {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 8px;
}

.file-item:last-child {
    margin-bottom: 0;
}

.file-item-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #006F96, #004d6b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    color: white;
    font-size: 18px;
}

.file-item-name {
    flex: 1;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th,
.results-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e8eef2;
    text-align: right;
    font-size: 14px;
}

.results-table thead th {
    color: #006F96;
    font-weight: 800;
}

.results-table tbody tr:hover {
    background: #f7fbfd;
}

.results-table a {
    color: #006F96;
    font-weight: 800;
    text-decoration: none;
}

.file-remove {
    border: 0;
    background: #ffe8e8;
    color: #b91c1c;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.file-upload-area {
    position: relative;
    display: block;
    cursor: pointer;
}

.file-input-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.documents-hidden {
    position: fixed;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
}

.btn-back {
    background: white;
    border: 1px solid #e6eef2;
    color: #006F96;
}

.btn-back:hover {
    background: #f7fbfd;
}




