/* Featured Destinations */
        .featured {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

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

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

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

        .destination-card {
            position: relative;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s ease;
        }

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

        .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.7) 100%);
            z-index: 2;
        }

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

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

        .card-content {
            position: absolute;
            bottom: 30px;
            left: 30px;
            z-index: 3;
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 10px;
        }

        .card-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Why Sri Lanka */
        .why-section {
            background: #111;
            padding: 100px 5%;
        }

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

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

        .feature-item {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }

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

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

        .feature-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* 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;
            }
        }