/* Contact Hero */
.contact-hero-section {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../Media/ContactPagePhoto.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ana İçerik */
.contact-main-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
}

/* İletişim Bilgileri */
.contact-info-section {
    margin-bottom: 4rem;
}

.contact-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info-text {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Harita */
.contact-map-form-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    
}

.contact-map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}



/* Çalışma Saatleri */
.contact-hours-section {
    margin-top: 4rem;
}

.contact-hours-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-day {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-day span:first-child {
    font-weight: 600;
    color: #1f2937;
}

.contact-day span:last-child {
    color: #6b7280;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .contact-map-form-section {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-info-container {
        grid-template-columns: 1fr;
    }
}