/* İletişim Sayfası Stilleri */
.contact-page {
    overflow-x: hidden;
}

/* Hero Bölümü */
.contact-page .page-header {
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
}

.contact-page .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(var(--primary-rgb), 0.95) 0%,
        rgba(var(--secondary-rgb), 0.85) 100%
    );
    z-index: 1;
}

.contact-page .page-header .container {
    position: relative;
    z-index: 2;
}

/* İletişim Bilgileri Kartı */
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%
    );
}

.contact-info-card .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-card .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(var(--primary-rgb), 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(var(--primary-rgb), 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-details {
    flex-grow: 1;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.35rem;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Harita Kartı */
.map-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    background: #fff;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .contact-info-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .contact-info-card .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .contact-list {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .map-wrapper {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon i {
        font-size: 1.1rem;
    }
} 