/* İletişim barı — anasayfa ile birebir aynı (tüm sayfalar) */
.contact-bar-section {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 10;
    transform: translateY(50%);
}

.contact-bar-wrapper {
    display: flex;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-bar-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: center;
}

.contact-bar-item:last-child {
    border-right: none;
}

.contact-bar-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-bar-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-bar-item:hover .contact-bar-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.contact-bar-icon i {
    font-size: 20px;
    color: #fff;
}

.contact-bar-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-bar-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-bar-value {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .contact-bar-section {
        display: none;
    }
}

.contact-bar a:hover {
    opacity: 0.8;
}
