/* Connect with Us Section Styles */

.connect-with-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #007bff;
}

.connect-box {
    background: white;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connect-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s;
}

.connect-box:hover::before {
    left: 100%;
}

.connect-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2) !important;
}

.connect-icon i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.connect-title {
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.feature-item {
    padding: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
}

/* Connect Section Responsive */
@media (max-width: 768px) {
    .connect-box {
        margin: 1rem;
        padding: 2rem !important;
    }
    
    .connect-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .connect-actions .btn:last-child {
        margin-bottom: 0;
    }
}
