/* Journey Lead Capture Form Styles */
.journey-container {
    min-height: 100vh;
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, #1a2533 0%, #0f1823 100%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.form-card {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, rgba(37, 51, 67, 0.6), rgba(32, 43, 56, 0.7));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.6s ease;
}

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

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.form-header p {
    color: rgba(244, 244, 244, 0.7);
    font-size: 1rem;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    color: var(--gold-start);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: rgba(15, 24, 35, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--off-white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-start);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder {
    color: rgba(244, 244, 244, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

.form-group select option {
    background: #1a2533;
    color: var(--off-white);
    padding: 0.5rem;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border-color: var(--gold-start);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--navy);
    font-weight: bold;
    font-size: 0.9rem;
}

.checkbox-label {
    font-size: 1rem;
    color: var(--off-white);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

/* Submit Button */
.btn-submit {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1.25rem;
    font-size: 1rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold-start);
    margin-bottom: 1.5rem;
}

.success-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: rgba(244, 244, 244, 0.7);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .journey-container {
        padding: 8rem 1rem 3rem;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-header h1 {
        font-size: 1.75rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 1rem;
    }
}
