/* Free Consultation Form Styles */

.fcf-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.fcf-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.fcf-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
}

.fcf-bismillah {
    font-size: 18px;
    font-style: italic;
    margin: 10px 0;
}

.fcf-intro {
    font-size: 14px;
    margin: 10px 0 0 0;
}

.fcf-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fcf-section {
    border: 2px solid #667eea;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    background: #f8f9ff;
}

.fcf-section legend {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
    padding: 0 10px;
    background: white;
}

.fcf-field {
    margin-bottom: 20px;
}

.fcf-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.fcf-field input[type="text"],
.fcf-field input[type="tel"],
.fcf-field input[type="number"],
.fcf-field select,
.fcf-field textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.fcf-field input:focus,
.fcf-field select:focus,
.fcf-field textarea:focus {
    outline: none;
    border-color: #667eea;
}

.fcf-field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.fcf-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fcf-radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.fcf-radio-group input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

.fcf-submit-section {
    text-align: center;
    margin-top: 30px;
}

.fcf-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fcf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.fcf-note {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.fcf-success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.fcf-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fcf-container {
        padding: 10px;
    }
    
    .fcf-form {
        padding: 20px;
    }
    
    .fcf-section {
        padding: 15px;
    }
    
    .fcf-field-group {
        grid-template-columns: 1fr;
    }
    
    .fcf-header h2 {
        font-size: 22px;
    }
}