         .apply-section { padding: 70px 10%; background: var(--off-white); }

        .apply-card {
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.08);
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }

        .apply-card-header {
            background: linear-gradient(135deg, #0d3320, #1a5c35);
            padding: 40px 48px;
            color: #fff;
            text-align: center;
        }

        .apply-card-header .fee-badge {
            display: inline-block;
            background: var(--secondary-gold);
            color: #1a1a1a;
            font-weight: 800;
            font-size: 0.95rem;
            padding: 8px 22px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

        .apply-card-header h1 { font-size: 1.7rem; margin-bottom: 6px; }
        .apply-card-header p { opacity: 0.8; font-size: 0.95rem; }

        .apply-card-body { padding: 44px 48px; }

        .part-title {
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #fff;
            background: var(--primary-green);
            padding: 10px 18px;
            border-radius: 8px;
            margin: 36px 0 24px;
            display: inline-block;
        }

        .part-title:first-child { margin-top: 0; }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

        .fg {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }

        .fg label {
            font-size: 0.78rem;
            font-weight: 700;
            color: #555;
            margin-bottom: 7px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .fg input, .fg select, .fg textarea {
            padding: 13px 16px;
            border: 2px solid #e8e8e8;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #333;
            background: #fafafa;
            transition: border-color 0.3s;
            outline: none;
        }

        .fg input:focus, .fg select:focus, .fg textarea:focus {
            border-color: var(--primary-green);
            background: #fff;
        }

        .fg textarea { min-height: 80px; resize: vertical; }

        .fg.span2 { grid-column: span 2; }

        /* Radio / Checkbox groups */
        .radio-group, .check-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 4px;
        }

        .radio-group label, .check-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #333;
            text-transform: none;
            letter-spacing: 0;
            cursor: pointer;
            background: #f4f4f4;
            padding: 10px 18px;
            border-radius: 50px;
            border: 2px solid #e8e8e8;
            transition: all 0.25s;
        }

        .radio-group input, .check-group input { display: none; }

        .radio-group label:has(input:checked),
        .check-group label:has(input:checked),
        .radio-group label.selected {
            border-color: var(--primary-green);
            background: #e8f5ee;
            color: var(--primary-green);
            font-weight: 700;
        }

        /* Hear about us */
        .hear-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }

        /* Declaration */
        .declaration-box {
            background: #f9f9f9;
            border: 2px solid #e0e0e0;
            border-radius: 14px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .declaration-box p {
            font-size: 0.95rem;
            color: #444;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .declaration-box .agree-label {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            color: #333;
        }

        .declaration-box .agree-label input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary-green);
            cursor: pointer;
        }

        .note-bar {
            background: #fff8e1;
            border-left: 4px solid var(--secondary-gold);
            border-radius: 0 10px 10px 0;
            padding: 14px 18px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #7a5c00;
            margin-bottom: 28px;
        }

        /* Signature Pad */
        .signature-wrapper {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .signature-wrapper label {
            font-size: 0.85rem;
            font-weight: 700;
            color: #444;
            text-transform: uppercase;
        }

        .signature-pad-container {
            border: 2px dashed #ccc;
            border-radius: 12px;
            background: #fff;
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 160px;
        }

        .signature-pad-container canvas {
            width: 100%;
            height: 100%;
            cursor: crosshair;
            touch-action: none; /* Crucial for mobile drawing */
        }

        .signature-tools {
            display: flex;
            justify-content: flex-end;
            margin-top: 8px;
        }

        .btn-clear-sig {
            background: transparent;
            border: none;
            color: #d32f2f;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .btn-clear-sig:hover {
            background: #fee2e2;
        }

        .btn-apply-submit {
            width: 100%;
            padding: 17px;
            background: linear-gradient(135deg, var(--primary-green), #2d8a4e);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 800;
            cursor: pointer;
            letter-spacing: 0.04em;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-apply-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(34,120,70,0.35);
        }

        /* Hear-about buttons */
        .hear-btn {
            padding: 11px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            background: #f4f4f4;
            font-family: 'Inter', sans-serif;
            font-size: 0.92rem;
            font-weight: 500;
            color: #444;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }

        .hear-btn:hover {
            border-color: var(--primary-green);
            background: #f0fdf4;
            color: var(--primary-green);
        }

        .hear-btn.active {
            border-color: var(--primary-green);
            background: var(--primary-green);
            color: #fff;
            font-weight: 700;
        }

        /* Success */
        .apply-success {
            display: none;
            text-align: center;
            padding: 60px 40px;
            animation: fadeUp 0.5s ease;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .apply-success .tick {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), #2d8a4e);
            color: #fff;
            font-size: 2.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 10px 30px rgba(34,120,70,0.3);
        }

        .apply-success h2 { font-size: 1.8rem; color: var(--dark); margin-bottom: 12px; }
        .apply-success p  { color: var(--text-light); font-size: 1rem; line-height: 1.7; max-width: 480px; margin: 0 auto; }

        .error-toast {
            display: none;
            padding: 14px 18px;
            background: #fff1f2;
            border: 2px solid #fca5a5;
            border-radius: 10px;
            color: #b91c1c;
            font-size: 0.9rem;
            text-align: center;
            margin-bottom: 16px;
        }

        .apply-card-header h1 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 12px;
            background: linear-gradient(to right, #ffffff, #ff9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }


        /* Apply-page top bar */
        .apply-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 10%;
            background: #fff;
            border-bottom: 2px solid #eee;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

        .apply-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .apply-brand img {
            height: 42px;
        }

        .apply-brand-text {
            font-size: 1rem;
            font-weight: 800;
            color: var(--primary-green);
            line-height: 1.2;
        }

        .apply-brand-text span {
            display: block;
            font-size: 0.72rem;
            font-weight: 500;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .btn-back-home {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border: 2px solid var(--primary-green);
            border-radius: 50px;
            color: var(--primary-green);
            font-family: 'Inter', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            text-decoration: none;
            transition: background 0.25s, color 0.25s;
        }

        .btn-back-home:hover {
            background: var(--primary-green);
            color: #fff;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            overflow-y: auto;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #f4f4f4;
            margin: 30px auto;
            padding: 0;
            border-radius: 16px;
            width: 90%;
            max-width: 850px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            animation: modalSlide 0.4s ease;
        }

        @keyframes modalSlide {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-header {
            padding: 20px 30px;
            background: var(--primary-green);
            color: #fff;
            border-radius: 16px 16px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 { color: #fff; margin: 0; font-size: 1.4rem; }

        .close-modal {
            color: #fff;
            font-size: 28px;
            font-weight: bold;
            background: none;
            border: none;
            cursor: pointer;
        }

        .modal-body {
            padding: 30px;
            background: #e5e5e5;
            max-height: 70vh;
            overflow-y: auto;
            text-align: center;
        }

        #pdf-preview-container {
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin: 0 auto;
            display: inline-block;
        }

        #pdf-preview-container img {
            max-width: 100%;
            display: block;
        }

        .modal-footer {
            padding: 20px 30px;
            background: #fff;
            border-radius: 0 0 16px 16px;
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }

        .btn-cancel {
            padding: 12px 24px;
            background: #eee;
            color: #444;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
        }

        .btn-send {
            padding: 12px 30px;
            background: var(--primary-green);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
        }

        .btn-send:hover { background: #1a5c35; }
        .btn-cancel:hover { background: #ddd; }
