@import "../iletisim/iletisimbanner.css";

body {
    margin: 0;
    padding: 0;
    background-color: #FEFEFE;
    font-family: 'Montserrat', Arial, sans-serif;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.tab-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33%;
}

.tab {
    font-size: 22px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
    transition: color 0.3s;
    text-align: center;
    margin-bottom: 20px;
}

.tab.active {
    color: #000;
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #999;
}

.tab.active::after {
    background-color: #000;
}

.tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-button {
    display: block;
    width: 200px;
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid #999;
    border-radius: 50px;
    text-decoration: none;
    color: #999;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s;
}

.contact-button i {
    margin-right: 10px;
    font-size: 20px;
}

.contact-button.active {
    border-color: #000;
    color: #000;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes tabHighlight {
    0% { color: #999; }
    50% { color: #000; }
    100% { color: #999; }
}

/* Kullanıcının fare ile üzerine geldiğinde otomatik geçişin durması için */
.tab:hover {
    color: #000;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .tab-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .tab {
        font-size: 18px;
        padding: 8px 15px;
    }

    .contact-button {
        width: 180px;
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-button {
        width: 160px;
        padding: 10px;
        font-size: 13px;
    }

    .tab {
        font-size: 16px;
        padding: 6px 10px;
    }
}