/* Konum Sayfası Stilleri */

.contact-info {
    font-size: 14px;
}

.contact-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

.contact-item strong {
    color: #333;
    font-weight: 600;
}

.contact-item span,
.contact-item a {
    color: #666;
    font-size: 13px;
}

.contact-item a:hover {
    color: #007bff !important;
}

/* Harita Container */
#map-container {
    border-radius: 0 0 0.375rem 0.375rem;
    overflow: hidden;
}

#google-map {
    border-radius: 0 0 0.375rem 0.375rem;
}

/* Aksiyon Butonları */
.action-buttons .btn {
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.action-buttons .btn i {
    font-size: 14px;
}

/* Card Stilleri */
.card {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
}

.card-header h5 {
    color: #495057;
    font-weight: 600;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 1rem;
    }

    .contact-item {
        padding: 8px 0;
    }

    .action-buttons .btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    #map-container {
        height: 300px !important;
    }

    #google-map {
        height: 300px !important;
    }
}

@media (max-width: 576px) {
    .container {
        margin-top: 1rem !important;
    }

    h1 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem !important;
    }

    .card {
        margin-bottom: 1rem;
    }

    .contact-item {
        font-size: 13px;
    }

    .contact-item strong {
        font-size: 13px;
    }

    .contact-item span,
    .contact-item a {
        font-size: 12px;
    }
}

/* Loading Animation */
.loading-map {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background-color: #f8f9fa;
}

.loading-map .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Error State */
.map-error {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 2rem;
}

.map-error i {
    color: #dee2e6;
}

/* WhatsApp Link Özel Stili */
#whatsapp-link:hover {
    color: #25d366 !important;
}

/* Telefon Link Özel Stili */
a[href^="tel:"]:hover {
    color: #007bff !important;
}

/* Email Link Özel Stili */
a[href^="mailto:"]:hover {
    color: #007bff !important;
}