/*
  Registration Page — Light of the World
  daftar.css
*/

/* ─── Hero ────────────────────────────────────────────────── */
.reg-hero {
    position: relative;
    background: linear-gradient(150deg, #0a1628 0%, #0e3e7a 50%, #1558b0 100%);
    padding-top: calc(var(--nav-height) + 70px);
    padding-bottom: 90px;
    color: var(--white);
    overflow: hidden;
}

.reg-hero-bg {
    position: absolute; inset: 0;
    background: url('../assets/images/about-training.jpg') center/cover;
    opacity: 0.06;
}

.reg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.rs { position: absolute; border-radius: 50%; filter: blur(80px); }
.rs-1 { top: -10%; right: 10%; width: 400px; height: 400px; background: rgba(212, 160, 23, 0.2); }
.rs-2 { bottom: -15%; left: -5%; width: 350px; height: 350px; background: rgba(21, 88, 176, 0.25); }

.reg-hero-content { position: relative; z-index: 1; }

.reg-hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 680px;
}

.reg-hero-content > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    line-height: 1.8;
}

/* ─── Progress Steps ──────────────────────────────────────── */
.progress-bar-section {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 5;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 16px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.15);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.progress-step span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.progress-step.active .step-circle {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(21, 88, 176, 0.3);
}

.progress-step.active span { color: var(--text-primary); }

.progress-step.done .step-circle {
    background: #16a34a;
    border-color: #16a34a;
    color: white;
}

.progress-step.done span { color: #16a34a; }

.progress-line {
    width: 60px;
    height: 2px;
    background: rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

.progress-line.filled { background: #16a34a; }

/* ─── Main ────────────────────────────────────────────────── */
.reg-main {
    padding: 80px 0 100px;
    background: var(--bg-color);
}

.reg-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

/* ─── Form Wrapper ────────────────────────────────────────── */
.reg-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}

.form-step-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.form-step-header > i {
    font-size: 2.5rem;
    color: var(--blue-primary);
    flex-shrink: 0;
}

.form-step-header h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.form-step-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Shared Form Styles */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.form-group label .req,
.job-field label .req { color: #e53e3e; margin-left: 2px; }
.form-row { display: flex; gap: 16px; }
.form-row.two-col > * { flex: 1; }

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper > i {
    position: absolute;
    left: 14px;
    font-size: 1.1rem;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    transition: all 0.2s ease;
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(21, 88, 176, 0.1);
}

.input-wrapper input.error,
.input-wrapper textarea.error,
.select-wrapper.error select,
.select-wrapper select.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.input-wrapper.error,
.select-wrapper.error {
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 60px;
}

.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.select-wrapper > i:first-child {
    position: absolute;
    left: 14px;
    font-size: 1.1rem;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}

.select-wrapper select {
    width: 100%;
    padding: 12px 40px 12px 42px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.select-wrapper select:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(21, 88, 176, 0.1);
}

.select-caret {
    position: absolute;
    right: 14px;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
}

/* Program Selection Cards */
.program-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.program-option {
    display: flex;
    cursor: pointer;
}

.program-option input { 
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.program-option-card {
    display: flex;
    flex: 1;
    gap: 14px;
    align-items: center;
    padding: 20px 16px;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    background: var(--white);
}

.program-option-card:hover {
    border-color: var(--blue-primary);
    background: var(--blue-subtle);
}

.program-option input:checked + .program-option-card {
    border-color: var(--blue-primary);
    background: var(--blue-subtle);
    box-shadow: 0 0 0 3px rgba(21, 88, 176, 0.08);
}

.poc-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.poc-icon.blue { background: var(--blue-light); color: var(--blue-primary); }
.poc-icon.gold { background: #fef3c7; color: #d97706; }

.program-option-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.program-option-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.next-btn, .back-step-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(0,0,0,0.12);
    color: var(--text-secondary);
}

.btn-outline:hover { border-color: var(--blue-primary); color: var(--blue-primary); }

/* Loading Spin Animation */
.spin {
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Review Card */
.review-card {
    background: var(--bg-color);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    margin-bottom: 24px;
}

.review-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.review-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.review-section h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--blue-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.review-row span { font-size: 0.85rem; color: var(--text-muted); }
.review-row strong { font-size: 0.85rem; color: var(--text-primary); text-align: right; max-width: 60%; }
.review-row strong.review-long-text { text-align: left; max-width: 100%; display: block; margin-top: 4px; color: var(--text-secondary); }

/* File Upload */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--blue-subtle);
    border: 2px dashed rgba(21, 88, 176, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    background: var(--blue-light);
    border-color: var(--blue-primary);
}

.file-label i {
    font-size: 2.5rem;
    color: var(--blue-primary);
    opacity: 0.7;
}

.file-label-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.file-label-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.photo-preview {
    position: relative;
    width: 120px;
    height: 150px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: var(--shadow-sm);
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Checkbox Modern Fix */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    user-select: none;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(21, 88, 176, 0.04);
    border: 1px solid rgba(21, 88, 176, 0.1);
    transition: all 0.2s ease;
}

.checkbox-container:hover {
    background: rgba(21, 88, 176, 0.08);
    border-color: var(--blue-primary);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0; width: 0;
}

.custom-checkbox {
    height: 22px;
    width: 22px;
    background-color: var(--white);
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: 6px;
    flex-shrink: 0; /* Important: prevent squashing */
    position: relative;
    transition: all 0.2s ease;
    margin-top: 2px;
    display: block; /* Ensure box model consistency */
    pointer-events: none;
}

.checkbox-container:hover input ~ .custom-checkbox {
    border-color: var(--blue-primary);
}

.checkbox-container input:checked ~ .custom-checkbox {
    background-color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .custom-checkbox:after {
    display: block;
}

.label-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Submit Actions */
.submit-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-wa {
    background: #16a34a;
    color: white;
    border: 2px solid #16a34a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.btn-wa:hover { background: #15803d; border-color: #15803d; transform: translateY(-1px); }

/* ─── Expand Form Elements ────────────────────────────────── */
.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

.field-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.dynamic-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.dynamic-row {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.remove-row-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.remove-row-btn:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fecaca;
    transform: rotate(90deg);
}

/* Hide remove button on first row */
.dynamic-rows .dynamic-row:first-child .remove-row-btn {
    display: none !important;
}

.job-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.job-row-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px 20px;
}

.job-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.job-field.full {
    grid-column: span 3;
}

/* Removed old job-field flex rules that caused overlap */

.job-field.check-field {
    flex: 0 0 auto;
    padding-bottom: 10px;
}

.job-field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

/* Standard input-wrapper will handle input styling */

/* Utility */
.hidden {
    display: none !important;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
}

.modal-content.crop-modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    animation: modalUp 0.3s ease-out;
}

.crop-container {
    max-height: 400px;
    overflow: hidden;
    background: #000;
}

.crop-container img {
    max-width: 100%;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    background: #f8fafc;
    border-top: 1px solid #eee;
}

.btn-add {
    background: #f1f5f9;
    color: var(--blue-dark);
    border: 1px dashed var(--blue-primary);
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add:hover {
    background: var(--blue-subtle);
}

.health-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
    background: #fff4f4;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #fee2e2;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #450a0a;
    cursor: pointer;
}

.check-item input {
    cursor: pointer;
    accent-color: #dc2626;
}

/* Success */
.reg-success {
    text-align: center;
    padding: 48px 20px;
}

.reg-success .success-icon {
    font-size: 4.5rem;
    color: #16a34a;
    margin-bottom: 20px;
}

.reg-success h3 { font-size: 1.6rem; color: var(--text-primary); margin-bottom: 12px; }
.reg-success > p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }

/* ─── Aside ───────────────────────────────────────────────── */
.reg-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--nav-height) + 20px);
}

.aside-section {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
}

.aside-section h3 {
    font-size: 1.1rem;
    color: var(--blue-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

/* Requirements List */
.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.req-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.req-list li i {
    color: #16a34a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Program Info Cards */
.program-info-card {
    border: 1.5px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm);
    padding: 18px 16px;
    margin-bottom: 12px;
}

.program-info-card:last-of-type { margin-bottom: 0; }

.pic-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.pic-badge.blue { background: var(--blue-light); color: var(--blue-primary); }
.pic-badge.gold { background: #fef3c7; color: #d97706; }

.program-info-card strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.program-info-card > p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.program-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-info-card ul li {
    font-size: 0.78rem;
    color: var(--text-secondary);
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.program-info-card ul li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--blue-primary);
    font-weight: 700;
}

/* Verse & Contact Aside — reuse from donasi */
.verse-aside {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    color: white;
}

.verse-aside i { font-size: 2rem; color: var(--gold); opacity: 0.8; display: block; margin-bottom: 12px; }
.verse-aside blockquote { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.9); margin-bottom: 12px; }
.verse-aside cite { font-size: 0.78rem; font-style: normal; font-weight: 700; color: var(--gold-bright); letter-spacing: 0.04em; }

.contact-aside p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.65; }
.contact-aside-list { display: flex; flex-direction: column; gap: 10px; }

.contact-aside-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border-radius: var(--radius-sm);
    text-decoration: none; transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

.contact-aside-item.wa { background: #f0fdf4; border-color: #bbf7d0; }
.contact-aside-item.wa:hover { background: #dcfce7; }
.contact-aside-item.email { background: var(--blue-subtle); border-color: rgba(21,88,176,0.12); }
.contact-aside-item.email:hover { background: var(--blue-light); }
.contact-aside-item > i { font-size: 1.5rem; flex-shrink: 0; }
.contact-aside-item.wa > i { color: #16a34a; }
.contact-aside-item.email > i { color: var(--blue-primary); }
.contact-aside-item strong { display: block; font-size: 0.85rem; color: var(--text-primary); }
.contact-aside-item span { font-size: 0.78rem; color: var(--text-muted); }

/* Verse Thanks (success) */
.verse-thanks {
    background: var(--blue-subtle);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    text-align: left;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 28px;
    font-family: 'Libre Baskerville', serif;
}

.verse-thanks i { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 8px; }
.verse-thanks cite { display: block; margin-top: 12px; font-style: normal; font-size: 0.82rem; font-weight: 700; color: var(--gold-dark); font-family: 'Inter', sans-serif; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .reg-aside { position: static; }
}

@media (max-width: 900px) {
    .reg-grid { grid-template-columns: 1fr; gap: 40px; }
    .reg-form-wrapper { padding: 36px 28px; }
    .reg-hero-content h1 { font-size: 2.2rem; }
    .progress-step span { display: none; }
    .progress-step { padding: 8px 12px; }
}

@media (max-width: 600px) {
    .reg-form-wrapper { padding: 24px 18px; }
    .form-row.two-col { flex-direction: column; gap: 0; }
    .program-select { grid-template-columns: 1fr; }
    .submit-actions { flex-direction: column; }
    .submit-actions .btn-wa,
    .submit-actions .btn-primary,
    .submit-actions .btn-outline { width: 100%; justify-content: center; }
}

/* ─── Crop Modal ─────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.crop-modal-content {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.crop-modal-content h3 {
    margin: 0 0 8px 0;
    color: var(--navy);
}

.crop-modal-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.cropper-container {
    width: 100%;
    max-height: 50vh;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.cropper-container img {
    max-width: 100%;
    display: block;
}

.crop-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}
