/* ==========================
   UPLOAD-DOCUMENTS FORM — page-specific styles
   Loaded by /upload-documents/index.html
   Shared form styles live in /forms.css
   ========================== */

/* ══════════ UPDATE DOCUMENTS — page-specific only ══════════ */
        .upd-step {
            display: none;
        }

        .upd-step.active {
            display: block;
        }

        .upd-step1-intro {
            font-family: 'Vectora Roman';
            font-size: 18px;
            text-align: left;
            margin-bottom: 28px;
        }

        .upd-step2-intro {
            font-family: 'Vectora Roman';
            font-size: 18px;
            text-align: left;
            margin-bottom: 24px;
            line-height: 1.4;
        }

        .upd-mtd-note {
            font-family: 'Vectora Roman';
            font-size: 14px;
            line-height: 1.5;
            color: #000;
            margin: 18px 0 24px;
            text-align: left;
        }

        .upd-mtd-note u {
            text-decoration: underline;
        }

        .upd-additional-label {
            font-family: 'Vectora Roman';
            font-size: 16px;
            text-align: center;
            color: #000;
            margin: 0 0 8px;
        }

        /* UPLOAD FIELDS */
        .upload-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }

        .upload-label {
            font-family: 'Vectora Roman';
            font-size: 16px;
            font-weight: 500;
            color: #000;
        }

        .upload-minimal {
            display: block;
            width: 100%;
            cursor: pointer;
        }

        .upload-box {
            background: #f5f7fa;
            border: 0 solid #e0e6ee;
            border-radius: 6px;
            padding: 14px 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-family: 'Vectora Light';
            font-size: 15px;
            color: #798494;
            transition: all 0.2s ease;
        }

        .upload-icon {
            width: 15px;
            height: 15px;
            stroke-width: 2;
            color: #798494;
            opacity: 0.7;
        }

        .upload-minimal:hover .upload-box {
            background: #dadfe6;
            color: #000;
        }

        .upload-box.has-file {
            color: #000;
            background: #eaf5e0;
        }

        .upload-box.error {
            background: #fbeae6;
            color: #cc4b37;
        }

        /* Submit disclaimer */
        .submit-disclaimer {
            font-family: 'Vectora Light';
            font-size: 12px;
            text-align: justify;
            margin-top: 32px;
            margin-bottom: 24px;
        }

        .submit-disclaimer a {
            color: #6ab235;
            font-weight: 700;
            -webkit-text-stroke: 0.5px;
            text-decoration: underline;
        }

        /* Thank You page */
        .upd-thank-you {
            max-width: 700px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }

        .upd-thank-you h2 {
            font-family: 'Vectora Black';
            font-size: 38px;
            letter-spacing: -0.05em;
            color: #6ab235;
            margin-bottom: 28px;
            text-align: center;
        }

        .upd-thank-you p {
            font-family: 'Vectora Roman';
            font-size: 17px;
            line-height: 1.7;
            text-align: center;
            margin-bottom: 24px;
        }

        .upd-phone {
            font-family: 'Vectora Bold' !important;
            font-size: 26px !important;
            letter-spacing: -0.03em;
            color: #6ab235;
            margin-bottom: 32px !important;
        }

        .upd-phone a {
            color: #6ab235;
            text-decoration: none;
        }

        /* Mobile */
        @media (max-width: 600px) {
            .application-row {
                grid-template-columns: 1fr !important;
            }
        }
