.shared-contact-form {
    background: #ffffff;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.shared-contact-form-container {
    width: 100%;
    max-width: 800px;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.shared-contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.shared-contact-form-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--builders-primary-dark);
    margin-bottom: 12px;
}

.shared-contact-form-desc {
    font-size: 16px;
    color: #64748b;
}

.shared-native-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shared-form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.shared-form-row--two {
    flex-direction: row;
}

@media (max-width: 600px) {
    .shared-form-row--two {
        flex-direction: column;
    }
    
    .shared-contact-form {
        padding: 60px 20px;
    }
    
    .shared-contact-form-container {
        padding: 40px 20px;
    }
}

.shared-form-field {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shared-form-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--builders-primary-dark);
    margin-bottom: 8px;
}

.shared-form-field label span {
    color: #ef4444;
}

.shared-form-field input,
.shared-form-field textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
}

.shared-form-field input:focus,
.shared-form-field textarea:focus {
    outline: none;
    border-color: var(--builders-primary);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.shared-form-submit {
    margin-top: 10px;
    text-align: center;
}

.shared-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--builders-gradient-primary);
    color: var(--builders-accent);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shared-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--builders-shadow-glow);
}
