/* ================================
   AB Performance - Contact Info CSS
   ================================ */

.ab-performance-contact-info-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
}

.ab-performance-contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ab-performance-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Contact Info Boxes */
.ab-performance-contact-info-box {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ab-performance-contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #e1303a;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ab-performance-contact-info-box:hover::before {
    transform: scaleX(1);
}

.ab-performance-contact-info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Icon */
.ab-performance-contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: #e1303a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ab-performance-contact-info-box:hover .ab-performance-contact-info-icon {
    transform: scale(1.1);
}

.ab-performance-contact-info-icon i {
    font-size: 36px;
    color: #ffffff;
}

/* Text Content */
.ab-performance-contact-info-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ab-performance-contact-info-box p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

.ab-performance-contact-info-box p a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-performance-contact-info-box p a:hover {
    color: #e1303a;
}

/* Responsive Design */
@media (max-width: 968px) {
    .ab-performance-contact-info-section {
        padding: 60px 20px;
    }
    
    .ab-performance-contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ab-performance-contact-info-box {
        padding: 40px 35px;
    }
}

@media (max-width: 480px) {
    .ab-performance-contact-info-section {
        padding: 40px 15px;
    }
    
    .ab-performance-contact-info-box {
        padding: 35px 30px;
    }
    
    .ab-performance-contact-info-box h3 {
        font-size: 22px;
    }
    
    .ab-performance-contact-info-box p {
        font-size: 15px;
    }
}