/* Interactive Map Section */
        .map-section {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 100;
            text-align: center;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: #d4af37;
            margin-bottom: 60px;
            font-size: 1.1rem;
            font-weight: 300;
        }

        .region-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .region-tab {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 15px 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 300;
            border-radius: 30px;
        }

        .region-tab:hover, .region-tab.active {
            border-color: #d4af37;
            color: #d4af37;
            background: rgba(212, 175, 55, 0.1);
        }

        /* Destinations Grid */
        .destinations-container {
            margin-bottom: 100px;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .destinations-grid.active {
            opacity: 1;
            transform: translateY(0);
        }

        .destination-card {
            position: relative;
            height: 350px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s ease;
            background: #111;
        }

        .destination-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .destination-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(0,0,0,0.8) 100%);
            z-index: 2;
        }

        .destination-card .card-bg {
            width: 100%;
            height: 70%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .destination-card:hover .card-bg {
            transform: scale(1.1);
        }

        .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px;
            z-index: 3;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 8px;
            color: #fff;
        }

        .card-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .view-more-btn {
            background: transparent;
            border: 1px solid #d4af37;
            color: #d4af37;
            padding: 8px 20px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 300;
            transition: all 0.3s ease;
            border-radius: 20px;
        }

        .view-more-btn:hover {
            background: #d4af37;
            color: #000;
        }

        /* Categories Section */
        .categories-section {
            background: #111;
            padding: 100px 5%;
        }

        .categories-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .category-card {
            text-align: center;
            padding: 50px 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .category-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: #d4af37;
        }

        .category-icon {
            font-size: 3.5rem;
            margin-bottom: 30px;
            color: #d4af37;
        }

        .category-title {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .category-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.9rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .region-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .destinations-grid {
                grid-template-columns: 1fr;
            }
            
            .categories-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .page-hero {
                height: 50vh;
            }
        }

        /* Loading Animation */
        .loading {
            display: none;
            text-align: center;
            padding: 40px;
            color: #d4af37;
        }

        .loading.active {
            display: block;
        }

        .spinner {
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-top: 2px solid #d4af37;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }



        /* CTA Section */
        .cta-section {
            padding: 100px 5%;
            text-align: center;
        }

        .cta-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .cta-btn {
            padding: 20px 40px;
            border: 2px solid #d4af37;
            color: #d4af37;
            background: transparent;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 300;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn.primary {
            background: #d4af37;
            color: #000;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }

        .cta-btn.primary:hover {
            background: transparent;
            color: #d4af37;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .search-input {
                width: 100%;
            }
            
            .destinations-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }