/* Contact Sayfası Özel Stilleri */

/* İletişim İkonları */
.contact-icon {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
}

/* İletişim Bilgileri */
.contact-info {
    padding: 1rem 0;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.contact-item:last-child {
    border-bottom: none;
}

/* Harita Konteyneri */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Buton Stilleri */
.contact-btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Kart Stilleri */
.contact-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-card .card-body {
    padding: 2rem;
}

/* Başlık Stilleri */
.contact-title {
    color: var(--baymak-blue);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--baymak-orange);
}

/* İletişim Metodu */
.contact-method {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-method .icon-container {
    width: 80px;
    height: 80px;
    background: var(--baymak-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-method .icon-container i {
    font-size: 2rem;
    color: var(--baymak-blue);
}

/* Çalışma Saatleri */
.working-hours {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.working-hours h6 {
    color: var(--baymak-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card .card-body {
        padding: 1.5rem;
    }
    
    .contact-method {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .contact-item {
        padding: 0.75rem 0;
    }
}

@media (max-width: 576px) {
    .contact-card .card-body {
        padding: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .map-container {
        height: 300px;
        border-radius: 8px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
}

/* Özel Renkler */
.contact-whatsapp .contact-icon {
    background: #25d366;
}

.contact-email .contact-icon {
    background: #dc3545;
}

.contact-location .contact-icon {
    background: #6c757d;
}

.contact-time .contact-icon {
    background: #ffc107;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }
.contact-item:nth-child(5) { animation-delay: 0.5s; }