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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #2B2B2B;
            background: #f9ecd4;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
        }

        /* Navigation */
       
        
       

        /* Hero Section */
        .destination-hero {
            height: 60vh;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .destination-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(31, 94, 59, 0.8), rgba(226, 122, 39, 0.6));
        }

        .destination-hero-content {
            position: relative;
            z-index: 2;
            padding: 20px;
        }

        .destination-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .destination-hero p {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1.2s ease;
        }

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

        /* Trip Card */
        .trip-card {
            background: #F4E9DA;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            border: 3px solid #F4E9DA;
            transition: all 0.3s;
        }

        .trip-card:hover {
            box-shadow: 0 20px 60px rgba(31, 94, 59, 0.2);
            border-color: #1F5E3B;
        }

        .trip-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        /* Image Gallery Section */
        .trip-image-section {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1.5fr 1fr;
            gap: 10px;
            min-height: 550px;
            padding: 15px;
            background: linear-gradient(135deg, rgba(31, 94, 59, 0.05), rgba(226, 122, 39, 0.05));
        }

        .trip-image-section.single-image {
            grid-template-columns: 1fr;
            grid-template-rows: 1fr;
        }

        .trip-image-main {
            grid-column: 1 / -1;
            grid-row: 1 / 2;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .trip-image-main:hover {
            transform: scale(1.02);
        }

        .trip-image-secondary {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            transition: all 0.3s ease;
        }

        .trip-image-secondary:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        

        

        .trip-badge {
            position: absolute;
            top: 35px;
            right: 35px;
            background: linear-gradient(135deg, #1F5E3B, #E27A27);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(5px);
        }

        .trip-badge::before {
            content: "⏱️";
            font-size: 1.2rem;
        }

        /* Info Section */
        .trip-info-section {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .trip-header h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: #1F5E3B;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .trip-location {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #E27A27;
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .trip-description {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .trip-value-section {
            background: rgba(31, 94, 59, 0.05);
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid #1F5E3B;
            margin: 25px 0;
        }

        .trip-value-section h4 {
            color: #1F5E3B;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .trip-value-section p {
            color: #555;
            line-height: 1.7;
        }

        .trip-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .action-btn {
            flex: 1;
            padding: 18px 30px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s;
            font-size: 1.05rem;
        }

        .action-btn.primary {
            background: linear-gradient(135deg, #1F5E3B, #E27A27);
            color: white;
            box-shadow: 0 10px 30px rgba(31, 94, 59, 0.3);
        }

        .action-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(31, 94, 59, 0.5);
        }

        .action-btn.secondary {
            background: white;
            color: #1F5E3B;
            border: 2px solid #1F5E3B;
        }

        .action-btn.secondary:hover {
            background: #1F5E3B;
            color: white;
            transform: translateY(-3px);
        }

        /* Itinerary Section */
        .itinerary-section {
            padding: 40px 50px;
            background: #F4E9DA;
        }

        .itinerary-section h3 {
            color: #1F5E3B;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .itinerary-day {
            margin-bottom: 2px;
            padding: 20px;
            background: white;
            border-radius: 15px;
            border: 2px solid #E27A27;
        }

        .itinerary-day h4 {
            color: #E27A27;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .itinerary-day p {
            color: #555;
            line-height: 1.7;
        }

        /* Inclusions Section */
        .inclusions-section {
            padding: 40px 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            background: #F4E9DA;
        }

        .inclusion-box {
            padding: 25px;
            border-radius: 15px;
        }

        .inclusion-box.included {
            background: rgba(31, 94, 59, 0.05);
            border: 2px solid #1F5E3B;
        }

        .inclusion-box.excluded {
            background: rgba(226, 122, 39, 0.05);
            border: 2px solid #E27A27;
        }

        .inclusion-box h4 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .inclusion-box.included h4 {
            color: #1F5E3B;
        }

        .inclusion-box.excluded h4 {
            color: #E27A27;
        }

        .inclusion-list {
            list-style: none;
            padding: 0;
        }

        .inclusion-list li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            color: #555;
        }

        .inclusion-list li:before {
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .inclusion-box.included .inclusion-list li:before {
            content: "✓";
            color: #1F5E3B;
        }

        .inclusion-box.excluded .inclusion-list li:before {
            content: "✗";
            color: #E27A27;
        }

        /* Footer */
        footer {
            background: #2B2B2B;
            color: white;
            padding: 40px 3% 15px;
        }

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

        .footer-section h3 {
            margin-bottom: 20px;
            color: #E27A27;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #E27A27;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 0px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        @media (max-width: 968px) {
            .trip-content {
                grid-template-columns: 1fr;
            }

            .trip-image-section {
                min-height: 350px;
            }

            .trip-info-section {
                padding: 30px;
            }

            .inclusions-section {
                padding: 30px 20px;
                grid-template-columns: 1fr;
            }

            .itinerary-section {
                padding: 30px 20px;
            }

            
        }