/* Smart Contact Us - Modern Styles */

.scu-form-wrapper {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: inherit;
    color: #333;
}

.scu-header {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
}

.scu-description {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.scu-form-group {
    margin-bottom: 1.5rem;
}

.scu-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}

.scu-form-group .required {
    color: #e74c3c;
}

.scu-form-group input[type="text"],
.scu-form-group input[type="email"],
.scu-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #f9f9f9;
}

.scu-form-group input:focus,
.scu-form-group textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
    background: #fff;
}

.scu-form-submit {
    margin-top: 2rem;
}

.scu-form-submit button {
    width: 100%;
    padding: 1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.scu-form-submit button:hover {
    background-color: #2980b9;
}

.scu-form-submit button:active {
    transform: translateY(1px);
}

.scu-form-submit button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.scu-response {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    display: none;
    font-size: 0.95rem;
}

.scu-response.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.scu-response.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.scu-recaptcha {
    margin: 1.5rem 0;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .scu-form-wrapper {
        padding: 1.5rem;
    }
}
