/* İletişim Bandı */
.contact-banner {
    background-color: #fff;
    padding: 40px 0 50px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.contact-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-banner-left {
    flex-shrink: 0;
}

.contact-banner-left h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
}

.contact-banner-right {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    margin-top: -1px;
}

.phone-link {
    font-size: 18px;
    font-weight: 700;
    color: #002290;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #002290;
    transform: translateY(-2px);
}

.separator {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.email-link {
    font-size: 16px;
    font-weight: 700;
    color: #002290;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #002290;
    transform: translateY(-2px);
}

.contact-btn {
    border-radius: 3px;
    border-right: 1px solid #002290;
    border-left: 1px solid #002290;
    padding: 0 3px;
    background-color: transparent;
    transition: box-shadow 0.5s ease;
    display: inline-block;
}

.contact-btn:hover {
    box-shadow: 0 6px 14px rgba(0, 34, 144, 0.45);
}

.contact-btn .cus-btn {
    border-radius: 2px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #002290;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.contact-btn .cus-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.contact-btn:hover .cus-btn::before {
    left: 0;
}

.contact-btn .cus-btn .text {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.contact-btn:hover .cus-btn .text {
    color: #002290;
}

.contact-btn .cus-btn svg {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.contact-btn:hover .cus-btn svg {
    transform: scale(1.02) rotate(45deg);
}

.contact-btn:hover .cus-btn svg path {
    fill: #002290;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-banner {
        padding: 30px 0 35px 0;
    }
    
    .contact-banner-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 0 15px;
    }
    
    .contact-banner-right {
        flex-direction: column;
        gap: 18px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-banner-left h3 {
        font-size: 18px;
    }
    
    .phone-link {
        font-size: 16px;
    }
    
    .email-link {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        padding: 25px 0 30px 0;
    }
    
    .contact-banner-content {
        gap: 20px;
        padding: 0 10px;
    }
    
    .contact-banner-left h3 {
        font-size: 16px;
    }
    
    .phone-link {
        font-size: 15px;
    }
    
    .email-link {
        font-size: 14px;
    }
    
    .contact-btn .cus-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
