/* Premium Team Profile Styles */

.back-link {
    display: inline-flex;
    align-items: center;
    color: #113b87 !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 12px;
    background: #f0f7ff;
    border: 1px solid rgba(17, 59, 135, 0.2);
    margin-bottom: 0;
}

.back-link:hover {
    color: white !important;
    background: #113b87;
    box-shadow: 0 5px 15px rgba(17, 59, 135, 0.3);
    transform: translateX(-5px);
}

.back-link i {
    font-size: 1rem;
}

.team-hero {
    background: linear-gradient(135deg, #113b87 0%, #1e56b8 100%);
    padding: 3rem 2rem;
    color: white;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(17, 59, 135, 0.2);
    position: relative;
    overflow: hidden;
}

.team-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-team-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
    display: block;
}

.hero-team-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-avatar {
    transform: scale(2);
    display: inline-block;
}

/* Stat Cards */
.stat-card {
    border: none;
    border-radius: 15px;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(17, 59, 135, 0.1);
}

.stat-card-header {
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    background: rgba(17, 59, 135, 0.03);
    border-bottom: 1px solid rgba(17, 59, 135, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #113b87;
}

.stat-card-body {
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #113b87;
    margin-bottom: 0;
}

.stat-rank {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

/* Gallery Styles */
.profile-gallery img {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    margin-bottom: 1.5rem;
    width: 100%;
    display: block;
}

.profile-gallery img:hover {
    transform: scale(1.02);
}

.gallery-label {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #113b87;
    margin-bottom: 0.5rem;
    display: block;
}

/* Info List */
.info-grid {
    background: #f8fbff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
}

.info-icon {
    width: 35px;
    height: 35px;
    background: #113b87;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.info-content {
    line-height: 1.4;
}

.info-label {
    display: block;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #6c757d;
    letter-spacing: 0.5px;
}

.info-value {
    font-weight: 600;
    color: #333;
}

.info-value a {
    color: #113b87;
    text-decoration: none;
}

.info-value a:hover {
    color: #ee7752;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-link-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #113b87;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(17, 59, 135, 0.3);
    background: #ee7752;
}

/* Map Integration */
#map {
    border-radius: 15px;
    border: 4px solid #113b87;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}