 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow-x: hidden;
            background: #0a0a0a;
            color: #fff;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 0;
            background: #e32526;
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }

        .cta-button {
            padding: 0.8rem 2rem;
            background: #fff;
            border: none;
            border-radius: 50px;
            color: #e32526;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(234, 17, 17, 0.426);
            background: #fff;
            color: #e32526;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('images/banner.jpeg') center/cover no-repeat;;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.5rem);
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Features Section */
        .features {
            padding: 4rem 0;
            background: linear-gradient(135deg, rgb(248, 250, 252) 0%, rgb(226, 232, 240) 100%);
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: #e32526;
        }

        .section-subtitle {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #000;
            margin-bottom: 3rem;
        }

        .feature-card {
            background: #fff;
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid #ff8a8b;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            height: 100%;
            margin-bottom: 1.5rem;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(227, 37, 38, 0.2);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .feature-card h3 {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            margin-bottom: 1rem;
            color: #e32526;
            text-align: center;
        }

        .feature-card p {
            color: #000;
            line-height: 1.6;
            text-align: center;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        /* Testimonials */
        .testimonials {
            padding: 4rem 0;
            background: linear-gradient(135deg, rgb(248, 250, 252) 0%, rgb(226, 232, 240) 100%);
        }

        .testimonial-card {
            background: #fff;
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid #ff8a8b;
            position: relative;
            height: 100%;
            margin-bottom: 1.5rem;
        }

        .quote-icon {
            font-size: 3rem;
            color: #ff8a8b;
            position: absolute;
            top: 1rem;
            left: 1.5rem;
        }

        .testimonial-text {
            margin: 2rem 0 1.5rem;
            line-height: 1.8;
            color: #000;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .testimonial-author {
            font-weight: 600;
            color: #e32526;
        }

        /* Destinations */
        .destinations {
            padding: 4rem 0;
            background: #ffffff;
        }

        .destination-card {
            position: relative;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
            margin-bottom: 1.5rem;
        }

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

        .destination-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.7);
        }

        .destination-name {
            font-size: clamp(1.3rem, 2vw, 1.8rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .destination-price {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            color: #fff;
            font-weight: 600;
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            background: #777777;
            text-align: center;
        }

        .cta-section h2 {
            font-size: clamp(1.8rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            padding: 2rem 0;
            background: #e32526;
            text-align: center;
        }

        footer p {
            color: #fff;
            margin: 0;
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            header {
                padding: 0.8rem 0;
            }

            .logo {
                font-size: 1.2rem;
            }

            .cta-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }

            .hero {
                padding-top: 70px;
            }

            .feature-card,
            .testimonial-card,
            .destination-card {
                margin-bottom: 1rem;
            }

            .destination-card {
                height: 280px;
            }
        }

        @media (max-width: 576px) {
            .logo {
                font-size: 1rem;
            }

            .cta-button {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }

            .hero-content .cta-button {
                display: block;
                margin: 0.5rem auto;
                max-width: 280px;
            }

            .destination-card {
                height: 250px;
            }
        }

        .footer-links a {
            color: #fff;
            margin-right: 1.5rem;
            text-decoration: none;
        }
