.hero-contacts {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.contact-info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-input {
    outline: none;
}

.contact-input:focus {
    border-color: #f97316 !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1) !important;
}

.contact-submit-btn {
    cursor: pointer;
    background-color: #f97316 !important;
    color: #ffffff !important;
    border: none !important;
}

.contact-submit-btn:hover {
    background-color: #ea580c !important;
}

.contact-submit-btn:active {
    transform: scale(0.98) !important;
}

#formStatus.success {
    color: #10b981;
}

#formStatus.error {
    color: #ef4444;
}

.map-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
}

@media (max-width: 768px) {
    .hero-contacts h1 {
        font-size: 2.5rem;
    }
    
    .hero-contacts p {
        font-size: 1rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem !important;
    }
}

