
 /* ===== PAGE WRAPPER ===== */
        .page-wrapper {
            max-width: 860px;
            margin: 0 auto;
            padding: 40px 40px 80px;
        }

        /* BACK BUTTON */
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--navy);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            margin-bottom: 24px;
            transition: gap 0.2s;
        }
        .back-btn:hover { gap: 10px; }

        /* PAGE TITLE */
        .page-title-block {
            text-align: center;
            margin-bottom: 36px;
        }

        .page-title-block .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(56,82,180,0.08);
            color: var(--navy);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 100px;
            border-left: 3px solid var(--orange);
            margin-bottom: 14px;
        }

        .page-title-block h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(26px, 4vw, 38px);
            color: var(--dark);
            margin-bottom: 10px;
        }

        .page-title-block h1 span { color: var(--navy); }

        .page-title-block p {
            font-size: 14.5px;
            color: var(--gray);
            line-height: 1.7;
            max-width: 520px;
            margin: 0 auto;
        }

        /* STEP INDICATOR */
        .steps-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 36px;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .step-circle {
            width: 34px; height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            border: 2px solid rgba(56,82,180,0.2);
            color: var(--gray);
            background: white;
            transition: all 0.3s;
        }

        .step-item.active .step-circle {
            background: linear-gradient(135deg, var(--navy), var(--blue));
            border-color: var(--navy);
            color: white;
            box-shadow: 0 4px 12px rgba(56,82,180,0.3);
        }

        .step-item.done .step-circle {
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            border-color: var(--orange);
            color: white;
        }

        .step-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray);
        }

        .step-item.active .step-label { color: var(--navy); }
        .step-item.done .step-label { color: var(--orange); }

        .step-line {
            width: 48px;
            height: 2px;
            background: rgba(56,82,180,0.15);
            margin: 0 6px;
            border-radius: 2px;
        }

        .step-line.done { background: linear-gradient(90deg, var(--orange), var(--yellow)); }

        /* ===== FORM SECTIONS ===== */
        .form-section{
    background:white;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 4px 20px rgba(56,82,180,0.08);
    border:1px solid rgba(56,82,180,0.07);

    opacity:1;
    transform:none;

        }

        .form-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 22px 28px;
            background: linear-gradient(135deg, rgba(56,82,180,0.04), rgba(94,122,196,0.04));
            border-bottom: 1px solid rgba(56,82,180,0.08);
        }

        .section-letter {
            width: 36px; height: 36px;
            min-width: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 800;
            color: white;
            font-family: 'Playfair Display', serif;
        }

        .section-header-text h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
        }

        .section-header-text p {
            font-size: 12.5px;
            color: var(--gray);
            margin-top: 2px;
        }

        .section-body {
            padding: 28px;
        }

        /* ===== FORM GRID ===== */
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-grid.single { grid-template-columns: 1fr; }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .form-group.full { grid-column: 1 / -1; }

        label {
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        label .required {
            color: var(--orange);
            font-size: 15px;
            line-height: 1;
        }

        .input-wrap {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
            pointer-events: none;
            z-index: 1;
        }

        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="tel"],
        select,
        textarea {
            width: 100%;
            padding: 12px 14px 12px 42px;
            border: 2px solid rgba(56,82,180,0.14);
            border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px;
            color: var(--dark);
            background: var(--light-gray);
            transition: all 0.25s;
            outline: none;
            appearance: none;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="password"]:focus,
        input[type="tel"]:focus,
        select:focus,
        textarea:focus {
            border-color: var(--navy);
            background: white;
            box-shadow: 0 0 0 4px rgba(56,82,180,0.08);
        }

        input.error { border-color: #ef4444; background: #fff5f5; }
        input.success { border-color: #10b981; background: #f0fdf4; }

        input::placeholder { color: #b0b8c9; }

        .input-hint {
            font-size: 11.5px;
            color: var(--gray);
            margin-top: 2px;
        }

        .input-error-msg {
            font-size: 11.5px;
            color: #ef4444;
            display: none;
        }

        .input-error-msg.show { display: block; }

        /* Password toggle */
        .pwd-toggle {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 17px;
            color: var(--gray);
            z-index: 1;
            padding: 2px;
        }

        /* Password strength */
        .pwd-strength {
            margin-top: 6px;
        }

        .pwd-strength-bar {
            height: 4px;
            border-radius: 4px;
            background: rgba(56,82,180,0.1);
            overflow: hidden;
        }

        .pwd-strength-fill {
            height: 100%;
            border-radius: 4px;
            width: 0%;
            transition: width 0.3s, background 0.3s;
        }

        .pwd-strength-label {
            font-size: 11px;
            font-weight: 600;
            margin-top: 4px;
            color: var(--gray);
        }

        /* Select custom */
        select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 42px;
            cursor: pointer;
        }

        /* Textarea */
        textarea {
            resize: vertical;
            min-height: 90px;
            padding-top: 14px;
            line-height: 1.6;
        }

        /* ===== MAP PLACEHOLDER ===== */
.map-full{
    grid-column: 1 / -1;
}

#map{
    width:100%;
    height:450px;
    border-radius:20px;
    margin-top:12px;
    overflow:hidden;
    border:2px solid rgba(56,82,180,0.12);
    box-shadow:0 8px 30px rgba(56,82,180,0.08);
}

.page-wrapper{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}
        .map-section {
            margin-top: 20px;
        }

        .map-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .map-label .map-tip {
            font-size: 12px;
            color: var(--gray);
            font-weight: 400;
        }

        .map-container {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #e8edf8 0%, #d0d8f0 100%);
            border-radius: 14px;
            border: 2px dashed rgba(56,82,180,0.25);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: border-color 0.25s;
        }

        .map-container:hover { border-color: var(--navy); }
        .map-container.selected { border-style: solid; border-color: var(--navy); }

        /* fake map grid */
        .map-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(56,82,180,0.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(56,82,180,0.07) 1px, transparent 1px);
            background-size: 36px 36px;
        }

        .map-road-h { position: absolute; left: 0; right: 0; height: 16px; background: rgba(255,255,255,0.65); }
        .map-road-h.r1 { top: 28%; }
        .map-road-h.r2 { top: 62%; }
        .map-road-v { position: absolute; top: 0; bottom: 0; width: 16px; background: rgba(255,255,255,0.65); }
        .map-road-v.v1 { left: 22%; }
        .map-road-v.v2 { left: 68%; }

        .map-inner {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            z-index: 2;
        }

        .map-pin-btn {
            font-size: 38px;
            filter: drop-shadow(0 4px 6px rgba(56,82,180,0.25));
            transition: transform 0.2s;
        }

        .map-container:hover .map-pin-btn { transform: scale(1.15) translateY(-4px); }
        .map-container.selected .map-pin-btn { animation: bounce-pin 2s ease-in-out infinite; }

        @keyframes bounce-pin {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .map-click-label {
            background: white;
            border: 1px solid rgba(56,82,180,0.15);
            color: var(--navy);
            font-size: 12.5px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 100px;
            box-shadow: 0 3px 12px rgba(56,82,180,0.12);
        }

        .map-selected-label {
            background: var(--navy);
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 100px;
            display: none;
        }

        .map-container.selected .map-click-label { display: none; }
        .map-container.selected .map-selected-label { display: block; }

        /* ===== UPLOAD ===== */
        .upload-group {
            margin-bottom: 20px;
        }

        .upload-group:last-of-type { margin-bottom: 0; }

        .upload-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 6px;
            display: block;
        }

        .upload-sublabel {
            font-size: 12px;
            color: var(--gray);
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .upload-area {
            border: 2px dashed rgba(56,82,180,0.25);
            border-radius: 14px;
            background: var(--light-gray);
            padding: 22px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.25s;
            position: relative;
        }

        .upload-area:hover,
        .upload-area.drag-over {
            border-color: var(--navy);
            background: rgba(56,82,180,0.04);
        }

        .upload-area.has-file {
            border-color: #10b981;
            background: #f0fdf4;
        }

        .upload-area input[type="file"] {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
            width: 100%;
            height: 100%;
            padding: 0;
            border: none;
            background: none;
            z-index: 2;
        }

        .upload-icon { font-size: 28px; margin-bottom: 8px; }

        .upload-text {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .upload-subtext {
            font-size: 12px;
            color: var(--gray);
        }

        .upload-btn-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-top: 12px;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            color: white;
            font-size: 13px;
            font-weight: 600;
            padding: 9px 20px;
            border-radius: 10px;
            pointer-events: none;
            transition: all 0.2s;
        }

        .upload-area:hover .upload-btn-label {
            box-shadow: 0 4px 12px rgba(56,82,180,0.3);
        }

        .upload-area.has-file .upload-btn-label {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .file-preview {
            display: none;
            margin-top: 14px;
            gap: 10px;
            flex-wrap: wrap;
        }

        .file-preview.show { display: flex; }

        .file-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            background: white;
            border: 1px solid rgba(16,185,129,0.3);
            border-radius: 10px;
            padding: 7px 13px;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--dark);
        }

        .file-chip .chip-icon { font-size: 18px; }

        .file-chip .chip-remove {
            background: none;
            border: none;
            cursor: pointer;
            color: #ef4444;
            font-size: 16px;
            padding: 0;
            line-height: 1;
        }

        /* ===== CHECKBOX ===== */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 18px 20px;
            background: rgba(56,82,180,0.04);
            border-radius: 12px;
            border: 1.5px solid rgba(56,82,180,0.1);
            margin-bottom: 28px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .checkbox-group:hover { border-color: var(--navy); background: rgba(56,82,180,0.06); }
        .checkbox-group.checked { border-color: #10b981; background: rgba(16,185,129,0.05); }

        .custom-checkbox {
            width: 22px; height: 22px;
            min-width: 22px;
            border-radius: 6px;
            border: 2px solid rgba(56,82,180,0.3);
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            margin-top: 1px;
            transition: all 0.2s;
        }

        .checkbox-group.checked .custom-checkbox {
            background: #10b981;
            border-color: #10b981;
            color: white;
        }

        .checkbox-group input[type="checkbox"] { display: none; }

        .checkbox-text {
            font-size: 13.5px;
            color: var(--dark);
            line-height: 1.6;
        }

        .checkbox-text a { color: var(--navy); font-weight: 600; text-decoration: none; }
        .checkbox-text a:hover { text-decoration: underline; }

        /* ===== SUBMIT BUTTON ===== */
        .submit-wrap {
            text-align: center;
        }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            color: white;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            padding: 16px 56px;
            border-radius: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 6px 24px rgba(56,82,180,0.3);
            position: relative;
            overflow: hidden;
            min-width: 260px;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
            transition: left 0.5s;
        }

        .btn-submit:hover::before { left: 100%; }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(56,82,180,0.4);
            background: linear-gradient(135deg, #2a3d9f, var(--navy));
        }

        .btn-submit:active { transform: translateY(-1px); }

        .btn-submit .btn-icon { font-size: 20px; }

        .submit-note {
            margin-top: 14px;
            font-size: 12.5px;
            color: var(--gray);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        /* ===== SUCCESS STATE ===== */
        .success-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10,20,50,0.7);
            backdrop-filter: blur(6px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .success-overlay.show { display: flex; }

        .success-card {
            background: white;
            border-radius: 24px;
            padding: 52px 44px;
            text-align: center;
            max-width: 440px;
            width: 90%;
            animation: popIn 0.4s cubic-bezier(0.22,1,0.36,1);
        }

        @keyframes popIn {
            from { opacity: 0; transform: scale(0.88); }
            to { opacity: 1; transform: scale(1); }
        }

        .success-icon {
            font-size: 64px;
            margin-bottom: 18px;
            animation: bounce-in 0.6s 0.2s both;
        }

        @keyframes bounce-in {
            0% { transform: scale(0); }
            60% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .success-card h2 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .success-card p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .success-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            color: white;
            font-size: 14px;
            font-weight: 700;
            padding: 13px 30px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .success-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(56,82,180,0.35); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .navbar { padding: 0 20px; }
            .navbar-links { display: none; }
            .hamburger { display: flex; }
            .breadcrumb-bar { padding: 12px 20px; }
            .page-wrapper { padding: 28px 16px 60px; }
            .form-grid { grid-template-columns: 1fr; }
            .form-group.full { grid-column: auto; }
            .section-body { padding: 20px 18px; }
            .section-header { padding: 18px 20px; }
            .steps-bar { gap: 0; }
            .step-label { display: none; }
            .step-line { width: 28px; }
            .btn-submit { width: 100%; }
            .success-card { padding: 36px 24px; }
        }
   


