/* Contact Form Styles */
.cfb-contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cfb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cfb-form-group {
    display: flex;
    flex-direction: column;
}

.cfb-form-group.cfb-full-width {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.cfb-form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.875rem;
}

.cfb-form-group input,
.cfb-form-group select,
.cfb-form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.cfb-form-group input:focus,
.cfb-form-group select:focus,
.cfb-form-group textarea:focus {
    outline: none;
    border-color: #f05222;
    box-shadow: 0 0 0 3px rgba(240, 82, 34, 0.1);
}

.cfb-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.cfb-form-submit {
    text-align: center;
    margin-top: 2rem;
}

.cfb-submit-btn {
    background: #f05222;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(240, 82, 34, 0.3);
}

.cfb-submit-btn:hover {
    background: #d84315;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(240, 82, 34, 0.4);
}

/* Success Message */
.cfb-success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.cfb-success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    stroke-width: 3;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0.5rem;
}

.cfb-success-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cfb-success-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cfb-submit-another-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cfb-submit-another-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Error Message */
.cfb-error-message {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.cfb-error-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    stroke-width: 3;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0.5rem;
}

.cfb-error-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cfb-error-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cfb-error-content li {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cfb-form-row {
        grid-template-columns: 1fr;
    }
    
    .cfb-contact-form {
        padding: 1rem;
        margin: 1rem;
    }
    
    .cfb-success-message,
    .cfb-error-message {
        padding: 1.5rem;
        margin: 1rem;
    }
}