/* İletişim Bölümü */
.contact-section {
    padding: 60px 0;
    background-color: #f4f7fa;
    text-align: center;
}

.contact-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Info Area */
.contact-info {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap; /* Mobil uyumlu */
}

/* Contact Card */
.contact-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Icon Style */
.contact-card .icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-card:hover .icon {
    transform: scale(1.1);
}

/* Contact Details */
.contact-card h3 {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 18px;
    color: #555;
    margin: 5px 0;
}

.contact-card .description {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.contact-card a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #0056b3;
}

/* Flexbox düzeni ile ortalama */
.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-card {
        width: 240px;
        padding: 20px;
    }

    .contact-section .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-section .section-title {
        font-size: 24px;
    }

    .contact-card .icon {
        font-size: 50px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .contact-card p {
        font-size: 16px;
    }
}