/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/iletisim-bg.jpg') center center/cover no-repeat;
    background-attachment: fixed; /* Parallax efekti için (opsiyonel) */
    padding: 80px 0 60px;
    margin-bottom: 0;
}

    .page-header h1 {
        color: var(--white-color);
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

    .breadcrumb-item a {
        color: var(--white-color);
        text-decoration: none;
    }

    .breadcrumb-item.active {
        color: var(--white-color);
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.6);
    }

/* Contact Info Cards */
.contact-info-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

    .contact-info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--main-color), var(--link-hover-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.contact-info-card h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.8;
}

    .contact-info-card p a {
        color: var(--gray-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .contact-info-card p a:hover {
            color: var(--main-color);
        }

.info-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .info-link:hover {
        color: var(--link-hover-color);
    }

    .info-link i {
        font-size: 0.9rem;
        margin-left: 5px;
        transition: all 0.3s ease;
    }

    .info-link:hover i {
        margin-left: 10px;
    }

/* Social Media Cards */
.social-card {
    background: var(--white-color);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

    .social-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

    .social-icon i {
        font-size: 2rem;
        color: var(--white-color);
    }

    .social-icon.facebook {
        background: linear-gradient(135deg, #1877f2, #0c63d4);
    }

    .social-icon.twitter {
        background: linear-gradient(135deg, #1da1f2, #0c85d0);
    }

    .social-icon.instagram {
        background: linear-gradient(135deg, #e4405f, #c13584);
    }

    .social-icon.youtube {
        background: linear-gradient(135deg, #ff0000, #cc0000);
    }

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-card h5 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.social-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .contact-form .form-control:focus {
        border-color: var(--main-color);
        box-shadow: 0 0 0 0.2rem rgba(98, 196, 74, 0.25);
    }

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form select.form-control {
    cursor: pointer;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

    .form-check-label a {
        color: var(--main-color);
        text-decoration: none;
    }

        .form-check-label a:hover {
            text-decoration: underline;
        }

/* Map Section */
.map-wrapper {
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-info {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
}

    .map-info h5 {
        color: var(--dark-color);
        margin-bottom: 20px;
        font-weight: 600;
    }

.working-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .working-hours li {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
    }

        .working-hours li:last-child {
            border-bottom: none;
        }

    .working-hours span {
        color: var(--gray-color);
    }

    .working-hours strong {
        color: var(--main-color);
    }

/* FAQ Section */
.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-section .accordion-button {
    background: var(--white-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    font-size: 1.05rem;
}

    .faq-section .accordion-button:not(.collapsed) {
        background: var(--main-color);
        color: var(--white-color);
        box-shadow: none;
    }

    .faq-section .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

    .faq-section .accordion-button::after {
        background-size: 1.2rem;
    }

.faq-section .accordion-body {
    padding: 20px 25px;
    color: var(--gray-color);
    line-height: 1.8;
}

/* Success Message */
.alert-success {
    background: linear-gradient(135deg, var(--main-color), var(--link-hover-color));
    border: none;
    color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
}

    .alert-success i {
        font-size: 1.2rem;
    }

/* Responsive Design */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper,
    .map-wrapper {
        padding: 30px;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 60px 0 40px;
    }

        .page-header h1 {
            font-size: 2rem;
        }

    .contact-info-card,
    .social-card {
        margin-bottom: 20px;
    }

    .contact-form-wrapper,
    .map-wrapper {
        padding: 25px 20px;
    }

    .map-container {
        height: 300px;
    }

    .card-icon,
    .social-icon {
        width: 60px;
        height: 60px;
    }

        .card-icon i,
        .social-icon i {
            font-size: 2rem;
        }
}
