/* Contact Section Styles */
.contact-section-modern {
    background: transparent;
}

.badge.bg-gradient-primary {
    background: linear-gradient(135deg, #f7941d 0%, #ff8800 100%);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-modern {
    background: white;
    border: 1px solid rgba(247, 148, 29, 0.15);
    transition: all 0.3s ease;
}

.contact-form-modern:hover {
    box-shadow: 0 20px 40px rgba(247, 148, 29, 0.25) !important;
    transform: translateY(-5px);
    border-color: rgba(247, 148, 29, 0.3);
}

.contact-info-card {
    background: white;
    border: 1px solid rgba(247, 148, 29, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f7941d 0%, #ffb347 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(247, 148, 29, 0.2) !important;
    border-color: rgba(247, 148, 29, 0.3);
}

.contact-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(247, 148, 29, 0.2);
    transition: all 0.3s ease;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #f7941d 0%, #ff8800 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #f7941d 0%, #ffb347 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #ffb347 0%, #ffd280 100%);
}

.contact-info-card:hover .contact-icon-circle {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 24px rgba(247, 148, 29, 0.3);
}

.hover-primary:hover {
    color: #f7941d !important;
}

.transition-all {
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .contact-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-card {
        margin-bottom: 1rem;
    }
}
