/* Page Header */
        .page-header {
            padding: 150px 5% 100px;
            text-align: center;
            background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), 
                        url('https://images.unsplash.com/photo-1586500036706-41963de24d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
            position: relative;
        }/* Experiences Grid */
        .experiences-section {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 50px;
            margin-bottom: 100px;
        }

        .experience-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            position: relative;
        }

        .experience-card:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
        }

        .experience-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .experience-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .experience-card:hover .experience-image img {
            transform: scale(1.05);
        }

        .experience-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
        }

        .experience-category {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(212, 175, 55, 0.9);
            color: #000;
            padding: 8px 16px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .experience-content {
            padding: 40px 30px;
        }

        .experience-title {
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 15px;
            color: #fff;
        }

        .experience-description {
            color: #ccc;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .experience-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding-top: 20px;
        }

        .experience-duration {
            color: #d4af37;
            font-size: 0.9rem;
            font-weight: 400;
        }

        .experience-rating {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stars {
            color: #d4af37;
            font-size: 1rem;
        }

        .rating-text {
            color: #ccc;
            font-size: 0.85rem;
        }

        /* Reviews Section */
        .reviews-section {
            background: rgba(255,255,255,0.02);
            padding: 100px 5%;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 200;
            letter-spacing: 3px;
            margin-bottom: 20px;
            color: #fff;
        }

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

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .review-card {
            background: rgba(0,0,0,0.6);
            border: 1px solid rgba(212, 175, 55, 0.2);
            padding: 40px;
            position: relative;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            border-color: #d4af37;
            transform: translateY(-5px);
        }

        .review-quote {
            font-size: 3rem;
            color: #d4af37;
            position: absolute;
            top: 20px;
            left: 30px;
            opacity: 0.5;
        }

        .review-text {
            font-style: italic;
            color: #ddd;
            line-height: 1.7;
            margin-bottom: 30px;
            padding-left: 30px;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding-top: 20px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #d4af37;
        }

        .reviewer-details h4 {
            color: #fff;
            font-weight: 400;
            margin-bottom: 5px;
        }

        .reviewer-location {
            color: #d4af37;
            font-size: 0.9rem;
        }

        .review-rating {
            margin-left: auto;
            color: #d4af37;
            font-size: 1.1rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 5%;
            text-align: center;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0,0,0,0.8));
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 200;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .cta-text {
            color: #ccc;
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .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;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .experiences-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .nav-links {
                display: none;
            }
            
            .experience-details {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .reviews-container {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }