/* HEADER boşluk */
.contact-header {
    margin-top: 140px;
    text-align: center;
    color: white;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
}

.contact-header p {
    margin-top: 10px;
    color: #ccc;
    font-size: 18px;
}

/* İLETİŞİM LİSTESİ */
.contact-list {
    width: 100%;
    max-width: 800px;
    margin: 70px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Tek tek satırlar */
.contact-item {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: 0.5s ease;
    backdrop-filter: blur(4px);

    /* ❗ KENDİ ANİMASYONU SİLİNDİ → reveal çalışacak */
    opacity: 0;
    transform: translateY(40px);
}

.contact-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(4px);
}

/* ikonlar */
.icon {
    width: 42px;
    height: 42px;
    margin-right: 18px;
    opacity: 0.9;
    object-fit: contain;
    image-rendering: auto;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: gold;
}

.contact-item p {
    font-size: 15px;
    color: #ddd;
}


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.contact-item:nth-child(1) { transition-delay: 0.3s; }
.contact-item:nth-child(2) { transition-delay: 0.5s; }
.contact-item:nth-child(3) { transition-delay: 0.7s; }
.contact-item:nth-child(4) { transition-delay: 0.9s; }


.contact-item {
    justify-content: flex-start !important;
}

.contact-item div {
    width: auto !important;
    text-align: left !important;
}
