/* ============================================
   CREATE STARTUP PAGE STYLES
   Modern Multi-Step Form with Progress Tracking
   ============================================ */

/* Section */
.create-startup-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 1rem 4rem;
}

.create-startup-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.header-text {
    flex: 1;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.page-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.header-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* AI Helper Card */
.ai-helper-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.ai-helper-icon {
    font-size: 3rem;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ai-helper-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.ai-helper-content p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0 0 1.5rem 0;
}

/* AI Instruction Steps */
.ai-instruction-steps {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ai-step {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-num {
    width: 28px;
    height: 28px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.ai-note {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-top: 1rem;
    font-size: 0.9rem;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}

/* AI Thinking Panel */
.ai-thinking-panel {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    color: white;
    text-align: center;
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.ai-thinking-panel.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.ai-brain-container {
    margin-bottom: 1.5rem;
}

.ai-brain-icon {
    font-size: 4rem;
    animation: pulse-brain 2s infinite;
}

@keyframes pulse-brain {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.ai-brain-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0 0 0;
}

.ai-thinking-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thinking-dots {
    display: inline-flex;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.thinking-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: thinking-bounce 1.4s infinite;
}

.thinking-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.thinking-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes thinking-bounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateY(-10px);
        opacity: 0.7;
    }
}

.ai-progress-container {
    margin-top: 1.5rem;
}

.ai-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.ai-progress-fill {
    height: 100%;
    background: white;
    border-radius: 10px;
    width: 0%;
    transition: width 8s ease-in-out;
}

/* Input with AI Button */
.input-with-ai {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.input-with-ai .form-input {
    flex: 1;
}

.btn-ai-magic {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.btn-ai-magic:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-ai-magic:disabled {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.ai-icon {
    font-size: 1.2rem;
}

.ai-text {
    font-size: 0.95rem;
}

/* Main Form */
.startup-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

.progress-step.active .step-label {
    color: #667eea;
    font-weight: 700;
}

.progress-step.completed .step-number {
    background: #10b981;
    color: white;
}

.progress-step.completed .step-number::before {
    content: '✓';
}

.progress-step.completed .step-label {
    color: #10b981;
}

.progress-line {
    width: 100px;
    height: 3px;
    background: #e2e8f0;
    position: relative;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.step-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.step-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.step-header p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label.required::after {
    content: '*';
    color: #ef4444;
    margin-left: 0.25rem;
}

.label-icon {
    font-size: 1.1rem;
}

.form-input,
.form-select {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #1a202c !important;
}

/* Override industrial.css dark theme styles */
.create-startup-section .form-input,
.create-startup-section .form-select,
.create-startup-section .form-control,
.create-startup-section textarea,
.create-startup-section .ql-editor {
    color: #1a202c !important;
    background: white !important;
    font-weight: 400 !important;
    box-shadow: none;
    border: 2px solid #e2e8f0;
}
.create-startup-section .form-input:focus,
.create-startup-section .form-select:focus,
.create-startup-section .form-control:focus,
.create-startup-section textarea:focus {
    background: white !important;
    color: #1a202c !important;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}
.create-startup-section .form-select option {
    color: #1a202c !important;
    background: white !important;
}
.create-startup-section .ql-editor.ql-blank::before {
    color: #94a3b8 !important;
}
.create-startup-section .ql-toolbar {
    background: #fafbfc !important;
    border-color: #e2e8f0 !important;
}
.create-startup-section .ql-container {
    border-color: #e2e8f0 !important;
}

.form-select {
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
}

.form-select option {
    color: #1a202c;
    background: white;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-select {
    cursor: pointer;
}

/* Field Hints and Errors */
.field-hint {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

/* Character Counter */
.char-counter {
    margin-top: 0.5rem;
    text-align: right;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.char-counter #charCount {
    transition: color 0.3s ease;
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 500;
    min-height: 20px;
}

/* Form Notice */
.form-notice {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 0.5rem 0;
}

.notice-content p {
    font-size: 0.9rem;
    color: #1e40af;
    margin: 0;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
}

.btn-previous,
.btn-next,
.btn-submit {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-previous {
    background: #f1f5f9;
    color: #475569;
}

.btn-previous:hover {
    background: #e2e8f0;
    transform: translateX(-3px);
}

.btn-next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-left: auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-next:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

.btn-submit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    margin-left: auto;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-spinner {
    font-size: 1.2rem;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    max-width: 550px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin: 0 0 0.75rem 0;
}

.modal-subtitle {
    font-size: 1rem;
    color: #64748b;
    text-align: center;
    margin: 0 0 2rem 0;
}

/* Credential Card */
.credential-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

.credential-item label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credential-item > span,
.password-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    font-family: 'Courier New', monospace;
}

.password-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.copy-btn {
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #5568d3;
    transform: scale(1.05);
}

/* Modal Warning */
.modal-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #92400e;
}

.modal-warning span:first-child {
    font-size: 1.25rem;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-modal-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-modal-secondary {
    background: #f1f5f9;
    color: #475569;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-modal-secondary:hover {
    background: #e2e8f0;
}

/* Quill Editor Customization */
.ql-container {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border: 2px solid #e2e8f0;
    border-top: none;
}

.ql-toolbar {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border: 2px solid #e2e8f0;
    border-bottom: none;
    background: #f8fafc;
}

.ql-editor {
    min-height: 200px;
    font-size: 1rem;
    color: #1a202c;
}

.ql-editor.ql-blank::before {
    color: #94a3b8;
    font-style: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .ai-helper-card {
        flex-direction: column;
        text-align: center;
    }

    .ai-helper-content h3 {
        font-size: 1.25rem;
    }

    .ai-instruction-steps {
        flex-direction: column;
    }

    .ai-step {
        width: 100%;
    }

    .input-with-ai {
        flex-direction: column;
    }

    .btn-ai-magic {
        width: 100%;
        justify-content: center;
    }

    .startup-form {
        padding: 2rem 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .progress-indicator {
        gap: 0.5rem;
    }

    .progress-line {
        width: 50px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .step-navigation {
        flex-direction: column;
    }

    .btn-previous,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
        margin-left: 0 !important;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .create-startup-section {
        padding: 1rem 0.5rem 2rem;
    }

    .page-header {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .ai-helper-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .startup-form {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .step-header h2 {
        font-size: 1.5rem;
    }

    .progress-step {
        gap: 0.25rem;
    }

    .step-label {
        display: none;
    }
}

/* ============================================
   EVENT APPLICATION BANNER
   ============================================ */
.event-application-banner {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0;
}

.event-banner-image {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.event-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    display: none;
}

.event-info-content {
    padding: 1.25rem 1.5rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    word-break: break-word;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-description {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 576px) {
    .event-application-banner {
        flex-direction: column;
    }
    .event-banner-image {
        width: 100%;
        height: 120px;
    }
}

.alert-info, .alert-warning, .alert-error {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* ============================================
   CHECKBOX STYLING
   ============================================ */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    background: white;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #334155;
    line-height: 1.5;
}

.checkbox-text strong {
    color: #1e293b;
}

/* ============================================
   TERMS & PRIVACY POLICY CHECKBOX
   ============================================ */

.terms-group {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.terms-checkbox-label {
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.terms-checkbox-label:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.terms-checkbox-label input[type="checkbox"]:checked ~ .checkbox-text {
    color: #1e293b;
}

.terms-checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.terms-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #667eea;
    transition: all 0.2s ease;
}

.terms-link:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.required-star {
    color: #ef4444;
    font-weight: 700;
    margin-left: 2px;
}

.terms-group .field-error {
    margin-left: 2.5rem;
}
