 /* Tarihi Yerler Özel Stilleri */
        .historical-place-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: 1px solid #e9ecef;
        }
        
        .historical-place-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        
        .historical-place-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .historical-place-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .historical-place-card:hover .historical-place-image img {
            transform: scale(1.05);
        }
        
        .historical-place-content {
            padding: 25px;
        }
        
        .historical-place-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2a4365;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .historical-place-summary {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .historical-place-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .btn-detail {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .btn-detail:hover {
            background-color: #2980b9;
            color: white;
        }
        
        .btn-location {
            background-color: #2ecc71;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .btn-location:hover {
            background-color: #27ae60;
            color: white;
        }
        
        /* Modal Stilleri */
        .historical-modal .modal-content {
            border-radius: 12px;
            overflow: hidden;
        }
        
        .historical-modal .modal-header {
            background-color: #2a4365;
            color: white;
            border-bottom: none;
            padding: 20px 25px;
        }
        
        .historical-modal .modal-title {
            font-weight: 600;
            font-size: 1.4rem;
        }
        
        .historical-modal .modal-body {
            padding: 0;
        }
        
        .historical-modal-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }
        
        .historical-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .historical-modal-description {
            padding: 25px;
            line-height: 1.7;
            color: #4a5568;
        }
        
        .historical-modal .btn-close {
            filter: invert(1);
            opacity: 0.8;
        }
        
        .historical-modal .btn-close:hover {
            opacity: 1;
        }
        
        /* Grid Düzeni */
        .historical-places-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        /* Responsive Düzenlemeler */
        @media (max-width: 768px) {
            .historical-places-grid {
                grid-template-columns: 1fr;
            }
            
            .historical-place-actions {
                flex-direction: column;
            }
            
            .historical-place-actions .btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Yükleniyor Animasyonu */
        .loading-spinner {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
        }
        
        .spinner-border {
            width: 3rem;
            height: 3rem;
            color: #3498db;
        }

         /* Galeri Stilleri */
        .gallery-container {
            margin-top: 20px;
        }
        
        .gallery-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2a4365;
            margin-bottom: 15px;
        }
        
        .gallery-thumbnails {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .gallery-thumb {
            width: 100%;
            height: 80px;
            object-fit: cover;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .gallery-thumb:hover {
            transform: scale(1.05);
            border-color: #3498db;
        }
        
        .gallery-thumb.active {
            border-color: #3498db;
            box-shadow: 0 0 0 2px #3498db;
        }
        
        .gallery-main-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .gallery-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }
        
        .gallery-counter {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        /* Lightbox için özel stiller */
        .gallery-lightbox {
            cursor: pointer;
        }
        
        .historical-modal-image {
            position: relative;
            cursor: pointer;
        }
        
        .zoom-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .historical-modal-image:hover .zoom-icon {
            opacity: 1;
        }
        
        /* Tarihi Yerler Grid için güncellenmiş stiller */
        .historical-place-card {
            position: relative;
        }
        
        .gallery-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(52, 152, 219, 0.9);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            backdrop-filter: blur(5px);
        }