/* ===== CONTACT SECTION ===== */
.contact-section {
    width: 100%;
    background: linear-gradient(180deg, #e0e8ff, #c1d4ff);
    /* Açık mavi tonları */
    color: #1c1c1c;
    text-align: center;
    padding: 100px 20px;
    border-top: 2px solid #c1d4ff;
}

.contact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #3b3ce3;
    font-weight: 700;
}

.contact-section p {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #222;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.contact-info div {
    background: #fff;
    border-radius: 20px;
    padding: 18px 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 60, 227, 0.15);
}

.contact-info i {
    font-size: 1.4rem;
    color: #3b3ce3;
}

.contact-info a {
    color: #1c1c1c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #3b3ce3;
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 1.6rem;
    }
}