/* ================================
   AB Performance - Contact Info CSS
   Modern Bespoke Design
   ================================ */

.ab-performance-contact-info-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #eaeaea 100%);
    padding: 100px 20px;
}

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

/* --------------------------------
   Header
   -------------------------------- */
.ab-performance-contact-info-header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-performance-contact-info-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #e1303a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.ab-performance-contact-info-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
}

.ab-performance-contact-info-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e1303a, #E9A329);
    border-radius: 2px;
}

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

/* --------------------------------
   Cards
   -------------------------------- */
.ab-performance-contact-info-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

/* Decorative corner accent */
.ab-performance-contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(225, 48, 58, 0.06) 0%, transparent 60%);
    border-radius: 0 12px 0 80px;
    transition: all 0.4s ease;
}

.ab-performance-contact-info-card:hover::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(225, 48, 58, 0.1) 0%, transparent 60%);
}

.ab-performance-contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(225, 48, 58, 0.1);
}

/* Icon */
.ab-performance-contact-info-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #e1303a 0%, #c72730 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(225, 48, 58, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.ab-performance-contact-info-card:hover .ab-performance-contact-info-card-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 30px rgba(225, 48, 58, 0.35);
}

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

/* Content */
.ab-performance-contact-info-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ab-performance-contact-info-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ab-performance-contact-info-card-content p {
    font-size: 16px;
    color: #444444;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.ab-performance-contact-info-card-content p a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ab-performance-contact-info-note {
    font-size: 13px;
    color: #888888;
    line-height: 1.4;
    font-style: italic;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 968px) {
    .ab-performance-contact-info-section {
        padding: 80px 20px;
    }
    
    .ab-performance-contact-info-header {
        margin-bottom: 50px;
    }
    
    .ab-performance-contact-info-header h2 {
        font-size: 32px;
    }
    
    .ab-performance-contact-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ab-performance-contact-info-card {
        padding: 35px 30px;
    }
}

@media (max-width: 640px) {
    .ab-performance-contact-info-section {
        padding: 70px 20px;
    }
    
    .ab-performance-contact-info-header h2 {
        font-size: 28px;
    }
    
    .ab-performance-contact-info-card {
        padding: 30px 25px;
        gap: 18px;
    }
    
    .ab-performance-contact-info-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 12px;
    }
    
    .ab-performance-contact-info-card-icon i {
        font-size: 20px;
    }
    
    .ab-performance-contact-info-card-content h3 {
        font-size: 17px;
    }
    
    .ab-performance-contact-info-card-content p {
        font-size: 15px;
    }
    
    .ab-performance-contact-info-note {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ab-performance-contact-info-section {
        padding: 60px 15px;
    }
    
    .ab-performance-contact-info-header h2 {
        font-size: 26px;
    }
    
    .ab-performance-contact-info-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }
    
    .ab-performance-contact-info-card::before {
        width: 60px;
        height: 60px;
    }
}
