<style>
        /* CSS Variables - Style Guide */
      
        
        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
            font-family: var(--font-primary);
            background-color: var(--light);
        }
        
        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 45px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2em;
        }
        
        .section-subtitle {
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto;
            font-size: var(--font-size-lg);
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
            font-size: var(--font-size-base);
        }
        
        .btn-primary {
            background-color: #eabc00;
            color: #000000;
        }
        
        .btn-primary:hover {
            background-color: #333;
            color: #fff;
        }
        
        .btn-secondary {
            background-color: #eabc00;
            color: #161616;
        }
        
        .btn-secondary:hover {
            background-color: #1e3d72;
        }
        
        .btn-outline {
            background-color: transparent;
            color: #ffffff;
            margin-left: 10px;
            padding: 10px;
        }
        
        .btn-outline:hover {
            background-color: #ffffff;
            color: #000000;
        }
        
        .btn-small {
            padding: 13px 19px;
            font-size: 17px;
        }
        
        /* Mobile Create Package Button */
        .mobile-filter-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #eabc00;
            color: #000;
            border: none;
            border-radius: 50px;
            padding: 15px 20px;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        
        .mobile-filter-btn:hover {
            transform: scale(1.05);
            background-color: #ffcc00;
        }
        
        @media (min-width: 769px) {
            .mobile-filter-btn {
                /* display: none; */
            }
        }
        
        /* AI Generator Modal Styles */
        .ai-generator-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            overflow-y: auto;
        }
        
        .ai-generator-content {
            background-color: white;
            margin: 50px auto;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .ai-generator-content h2 {
            color: #333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .ai-generator-content h2 i {
            color: #eabc00;
        }
        
        .preference-section {
            margin-bottom: 25px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .preference-section h4 {
            color: #333;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px;
            border: 1px solid #eee;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .checkbox-item:hover {
            background-color: #f9f9f9;
        }
        
        .checkbox-item input[type="checkbox"],
        .checkbox-item input[type="radio"] {
            margin: 0;
        }
        
        .preference-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 30px;
        }
        
        .commission-notice {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #eabc00;
        }
        
        .commission-notice h4 {
            margin-top: 0;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .commission-notice h4 i {
            color: #27ae60;
        }
        
        /* AI Loading Overlay */
        .ai-loading-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            justify-content: center;
            align-items: center;
            z-index: 10000;
        }
        
        .ai-loading-content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            width: 90%;
        }
        
        .ai-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #eabc00;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Inactive Package Warning */
        .inactive-warning {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 15px;
            margin: 10px 0;
            text-align: center;
            color: #856404;
        }
        
        .inactive-warning i {
            color: #856404;
            margin-right: 8px;
        }
        
        /* Login Required Styles */
        .login-required {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 15px;
            margin: 10px 0;
            text-align: center;
        }
        
        .login-required i {
            color: #856404;
            margin-right: 8px;
        }
        
        .login-required a {
            color: #003366;
            font-weight: bold;
            text-decoration: none;
        }
        
        .login-required a:hover {
            text-decoration: underline;
        }
        
        .hidden-activity {
            opacity: 0.7;
            background: #f8f9fa;
            border-left: 4px solid #eabc00;
        }
        
        /* Date Selection Modal Styles */
        .date-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .date-modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .date-modal h3 {
            margin-bottom: 20px;
            color: var(--dark);
            font-size: 1.5rem;
        }
        
        .date-modal p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .date-input-container {
            margin: 20px 0;
        }
        
        .date-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            text-align: center;
            cursor: pointer;
        }
        
        .date-input:focus {
            border-color: #eabc00;
            outline: none;
        }
        
        .modal-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 20px;
        }
        
        .modal-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .modal-btn.confirm {
            background: #eabc00;
            color: #000;
        }
        
        .modal-btn.confirm:hover {
            background: #d4aa00;
        }
        
        .modal-btn.cancel {
            background: #6c757d;
            color: white;
        }
        
        .modal-btn.cancel:hover {
            background: #5a6268;
        }
        
        /* Car Hire Date Modal Styles */
        .car-hire-modal .date-modal-content {
            max-width: 600px;
        }
        
        .date-range-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 20px 0;
        }
        
        .date-range-item {
            text-align: left;
        }
        
        .date-range-item label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: var(--dark);
        }
        
        .price-calculation {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            margin: 15px 0;
            text-align: center;
        }
        
        .calculated-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #eabc00;
            margin: 10px 0;
        }
        
        .price-breakdown {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        /* Jet, Yacht, Flowers Modal Styles */
        .advanced-modal .date-modal-content {
            max-width: 700px;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 20px 0;
        }
        
        .form-group {
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 10px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }
        
        .form-control:focus {
            border-color: #eabc00;
            outline: none;
        }
        
        .form-full-width {
            grid-column: 1 / -1;
        }
        
        .option-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }
        
        .option-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .option-item input {
            margin: 0;
        }
        
        /* Marketplace Links Styles */
        .marketplace-links {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            border-left: 4px solid #eabc00;
			margin-top:-11px;
        }
        
        .marketplace-title {
            color: #003366;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .marketplace-title i {
            color: #eabc00;
        }
        
        .marketplace-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .marketplace-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        
        .marketplace-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-color: #eabc00;
        }
        
        .marketplace-icon {
            width: 40px;
            height: 40px;
            background: #eabc00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .marketplace-text {
            flex: 1;
        }
        
        .marketplace-text strong {
            display: block;
            color: #003366;
            margin-bottom: 4px;
        }
        
        .marketplace-text span {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            overflow: hidden;
            height: 520px;
        }
        
        .hero-slide {
            height: 520px;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .slide-green {
            background: linear-gradient(135deg, #009ce3 0%, #03425c 100%);
        }
        
        .slide-blue {
            background: linear-gradient(135deg, #009ce3 0%, #03425c 100%);
        }
        
        .slide-green-blue {
            background: linear-gradient(135deg, #009ce3 0%, #03425c 100%);
        }
        
        .slide-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0px 0px;
            position: relative;
            top: 40px;
        }
        
        .slide-image {
            flex: 1;
            height: 377px;
            z-index: 1;
            position: relative;
        }
        
        .slide-image img {
            width: 100%;
            height: 332px;
            object-fit: cover;
            top: 30px;
            position: relative;
            border-radius: 10px;
        }
        
        .slide-text {
            flex: 1;
            padding: 30px;
            z-index: +2;
            position: relative;
            height: 276px;
            border-radius: 0px 10px 10px 0px;
        }
        
        .slide-text p {
            margin-bottom: 25px;
            color: #ffffffd4;
            font-size: 18px;
        }
        
        .slide-header {
            color: #fff;
            line-height: 1.3em;
            margin-bottom: 17px;
            font-size: 31px !important;
            margin-top: -14px;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgb(0 0 0 / 0%);
            color: #ffffff30;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 59px;
            transition: background 0.3s;
        }
        
        .slider-nav:hover {
            background: rgb(248 248 248 / 79%);
        }
        
        .slider-nav.prev {
            left: 20px;
        }
        
        .slider-nav.next {
            right: 20px;
        }
        
        .slider-controls {
            position: relative;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 10;
            top: -42px;
        }
        
        .slider-controls button {
            background: rgb(97 97 97 / 50%);
            border: none;
            width: 20px;
            height: 10px;
            margin: 0 5px;
            cursor: pointer;
            border: solid 1px #0d0d0d;
            border-radius: 5px;
        }
        
        .slider-controls button.active {
            background: white;
        }
        
        /* Social Sharing Styles */
        .social-sharing {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .share-text {
            font-weight: bold;
            margin-right: 15px;
            color: var(--dark);
        }
        
        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 12%;
            color: white;
            font-size: 20px;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            background-color: #2d2d2d !important;
        }
        
        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .whatsapp {
            background-color: #25D366;
        }
        
        .instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        
        .linkedin {
            background-color: #0077B5;
        }
        
        .facebook {
            background-color: #3b5998;
        }
        
        .x-twitter {
            background-color: #000000;
        }
        
        .share-count {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 10px;
            font-size: 14px;
            color: var(--gray);
        }
        
        .share-count i {
            margin-right: 5px;
            color: var(--accent);
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .hero-slider {
                height: auto;
                margin-top: 37px;
                margin-bottom: -56px;
            }
            
            .hero-slide {
                height: 800px;
                position: relative;
                margin: auto;
            }
            
            .slide-content {
                flex-direction: column;
                text-align: center;
                position: relative;
                top: -8px;
                margin-top: 85px;
            }
            
            .slide-image {
                width: 100%;
                height: 100%;
                flex: none;
            }
            
            .slide-green {
                background: linear-gradient(135deg, #707070 0%, #000000 100%);
            }
            
            .slide-image img {
                width: 100%;
                height: 394px !important;
                object-fit: cover;
                margin: auto;
                position: relative;
                min-width: 390px;
                max-width: 390px;
                margin-bottom: -20px;
                top: 0;
                border-radius: 0px;
            }
            
            .slide-text {
                flex: 1;
                padding: 19px;
                z-index: +2;
                position: relative;
                height: auto;
                top: -21px;
                margin-left: 20px;
                margin-right: 20px;
                margin-top: 85px;
                border-radius: 5px;
                margin-bottom: 187px;
                color: #fff !important;
            }
            
            .slide-text p {
                color: #ffffff;
                font-weight: 300;
                font-size: 19px !important;
                line-height:1.4em;
                text-align:left;
            }
            
            .slide-header {
                color: #ffffff;
                font-size: 25px !important;
                margin-top:10px;
                text-align:left;
            }
            
            .slider-nav {
                width: 35px;
                height: 35px;
                font-size: 18px;
                background: #cccccc69;
            }
            
            .slider-nav.prev {
                left: 10px;
                top: 140px;
            }
            
            .slider-nav.next {
                right: 10px;
                top: 140px;
            }
            
            .slider-controls {
                position: absolute;
                bottom: 9px;
                left: 0;
                right: 0;
                text-align: center;
                z-index: 10;
                top: 762px;
                height: 30px;
            }
            
            .section-title {
                text-align: center;
                margin-bottom: 40px;
                color: var(--primary);
                margin-top: -67px;
            }
            
            .social-sharing {
                gap: 8px;
                display: flex;
            }
            
            .share-text {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .date-modal-content {
                width: 95%;
                padding: 20px;
            }
            
            .modal-buttons {
                flex-direction: column;
            }
            
            .date-range-container {
                grid-template-columns: 1fr;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .marketplace-grid {
                grid-template-columns: 1fr;
            }
            
            .ai-generator-content {
                width: 95%;
                padding: 20px;
                margin: 20px auto;
            }
            
            .checkbox-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        
        @media (min-width: 769px) {
            .hero-slider {
                display: block;
            }
        }
        
        @media (min-width: 908px) {
            /* Card Talk */
            .card-talk {
                display:none;
            }
        }
        
        /* Card Talk */
        .card-talk {
            position: fixed;
            top: 52px;
            z-index: 99;
            text-align: center;
            font-size: 16px;
            font-weight: 300;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            color: #ffffff;
            line-height: 1.5em;
            background: linear-gradient(135deg, #000, #2c2c2c);
            width: 100%;
            max-width: 480px;
            padding: 7px 1px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(6px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card-talk:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
        }
        
        /* Tour Details Section */
        .tour-details {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: -33px;
            margin-top: -74px;
        }
        
        .details-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .detail-item {
            display: flex;
            align-items: flex-start;
            flex: 1;
            min-width: 200px;
            border-right: solid 1px #ccc;
            padding-left: 23px;
            margin-bottom: 0px;
        }
        
        .detail-icon {
            font-size: 1.5rem;
            color: #353535;
            margin-right: 15px;
            margin-top: 0px;
        }
        
        .detail-content h3 {
            margin-bottom: 3px;
            color: var(--secondary);
            font-size: var(--font-size-base);
        }
        
        .detail-content p {
            color: var(--gray);
            margin: 0;
            line-height: 1.2em;
        }
        
        /* Highlights Section */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-lg);
        }
        
        .highlight-card {
            background: #fff;
            padding: var(--space-xl);
            border-radius: 10px;
            text-align: center;
        }
        
        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .highlight-icon {
            font-size: 2rem;
            margin-bottom: var(--space-md);
            color: var(--black);
        }
        
        .highlight-card h4 {
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .highlight-card p {
            color: var(--gray);
            margin: 0;
            line-height: 1.3em;
            font-weight: 300;
        }
        
        /* Itinerary Section - Roadmap Style */
        .itinerary-container {
            position: relative;
            margin: 0 auto;
        }
        
        .itinerary-container::before {
          content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 4px;
    background: #c2c2c2;
    z-index: 1;
        }
        
        .day-card {
                position: relative;
    background: #fff;
    border-radius: 10px;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    margin-left: 60px;
    z-index: 2;
        }
        
        .day-card::before {
            content: '';
    position: absolute;
    left: -40px;
    top: 30px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #c2c2c2;
    z-index: 3;
        }
        
        .day-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-md);
            padding-bottom: var(--space-md);
            border-bottom: 1px solid #cccccc36;
        }
        
        .day-title {
            font-size: var(--font-size-xl);
            color: var(--dark);
            margin: 0;
        }
        
        .day-subtitle {
            font-size: var(--font-size-base);
            color: #858585;
        }
        
        .day-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: var(--space-lg);
        }
        
        .day-activities {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }
        
        .activity-item {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
        }
        
        .activity-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--black);
            font-size: 21px;
            background: #fff0 !important;
        }
        
        .activity-content h4 {
            margin-bottom: var(--space-xs);
            color: var(--dark);
        }
        
        .activity-content p {
            color: #5b5b5b;
            margin: 0;
            font-weight: 400;
        }
        
        .day-image {
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 200px;
        }
        
        .day-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .accommodation-toggle {
            margin-top: var(--space-md);
            text-align: center;
        }
        
        .accommodation-details {
            margin-top: var(--space-md);
            padding: var(--space-md);
            background: #f0f6ff;
            border-radius: var(--radius-md);
            display: none;
        }
        
        .accommodation-details.active {
            display: block;
        }
        
        .accommodation-info {
            display: flex;
            gap: var(--space-md);
        }
        
        .accommodation-image {
            flex: 0 0 150px;
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        
        .accommodation-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .accommodation-text {
            flex: 1;
        }
        
        .accommodation-text h4 {
            margin-bottom: var(--space-sm);
            color: var(--dark);
        }
        
        .accommodation-text p {
            color: var(--gray);
            margin-bottom: var(--space-sm);
        }
        
        .accommodation-location {
            display: flex;
            align-items: center;
            color: var(--gray);
            font-size: var(--font-size-sm);
        }
        
        .accommodation-location i {
            margin-right: var(--space-xs);
        }
        
        /* Included Section */
        .included-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
        }
        
        .included-section {
            padding: var(--space-xl);
            border-radius: 10px;
            background: #fff;
        }
        
        .included-section h3 {
            margin-bottom: var(--space-lg);
            color: var(--dark);
            font-size: var(--font-size-xl);
        }
        
        .included-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }
        
        .included-item {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
        }
        
        .included-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: var(--font-size-sm);
        }
        
        .included-icon.included {
            color: var(--white);
            border: solid 1px #000000;
        }
        
        .included-icon.excluded {
            color: var(--white);
            border: solid 1px #000000;
        }
        
        .included-item p {
            color: var(--gray);
            margin: 0;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: var(--space-md);
            border: 1px solid var(--light-gray);
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        
        .faq-question {
            font-weight: bold;
            padding: var(--space-lg);
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            background: #fff;
        }
        
        .faq-question i {
            color: var(--secondary);
            transition: transform 0.3s ease;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            color: #757575;
            padding: 0 var(--space-lg);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: var(--space-lg);
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            background: #fff;
            color: var(--white);
            padding: var(--space-2xl) 0;
            border-radius: var(--radius-lg);
            margin-top: -55px;
            margin-bottom: 13px;
        }
        
        .cta-title {
            font-size: var(--font-size-3xl);
            margin-bottom: var(--space-md);
        }
        
        .cta-subtitle {
            font-size: var(--font-size-lg);
            margin-bottom: var(--space-xl);
            opacity: 0.9;
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 992px) {
            .day-content {
                grid-template-columns: 1fr;
            }
            
            .included-container {
                grid-template-columns: 1fr;
            }
            
            .accommodation-info {
                flex-direction: column;
            }
            
            .accommodation-image {
                flex: 0 0 200px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: var(--font-size-2xl);
            }
            
            .details-grid {
                flex-direction: column;
            }
            
            .detail-item {
                display: flex;
                align-items: flex-start;
                flex: 1;
                min-width: 200px;
                margin-bottom: 15px;
                border-right: solid 0px #cccccc00;
                padding-left: 0px;
            }
            
            .section-title {
                text-align: center;
                margin-bottom: 40px;
                color: var(--primary);
                margin-top: -67px;
            }
            
            .itinerary-container::before {
                left: 9px;
            }
            
            .day-card {
               margin-left: 30px;
            }
            
            .day-card::before {
                left: -32px;
            }
			
			.marketplace-links {
                background: #f8f9fa;
                border-radius: 10px;
                padding: 25px;
                margin: 25px 0;
                border-left: 4px solid #eabc00;
                margin-top: 36px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 26px;
                margin-top: -33px;
                margin-bottom: 14px;
            }
            
            .tour-details {
                background: #fff;
                padding: 20px;
                border-radius: 10px;
                margin-bottom: -33px;
                margin-top: -89px;
            }
            
            .btn {
                display: block;
                width: 100%;
                margin: var(--space-sm) 0;
            }
            
            .day-header {
                flex-direction: column;
                align-items: flex-start;
                gap: var(--space-sm);
            }
        }
        
        @media (min-width: 908px) {
            /* Card Talk */
            .card-talk {
                display:none;
            }
        }
        
        .booking-full {
            background-color: #f8d7da;
            color: #721c24;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .limited-spots {
            background-color: #fff3cd;
            color: #856404;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        /* Viral Sharing Section */
        .viral-section {
            background: linear-gradient(135deg, #009ce3 0%, #03425c 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .viral-title {
            font-size: 28px;
            margin-bottom: 15px;
        }
        
        .viral-subtitle {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .viral-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 32px;
            font-weight: bold;
            display: block;
        }
        
        .stat-label {
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* Weekly Day Trip Badge */
        .weekly-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #eabc00;
            color: #000;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 3;
        }

        /* Car Hire Specific Styles */
        .car-hire-details {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #eabc00;
        }

        .car-hire-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .car-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: white;
            border-radius: 5px;
        }

        .car-feature i {
            color: #eabc00;
            font-size: 18px;
        }

        .service-type-badge {
            background: #003366;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            margin-left: 10px;
        }
        
        /* Service Specific Styles */
        .service-highlight {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            border-left: 4px solid #eabc00;
        }
        
        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .service-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
        }
        
        .service-feature i {
            color: #eabc00;
            font-size: 24px;
            width: 40px;
            text-align: center;
        }
        
        /* Jet, Yacht, Flowers Specific Styles */
        .luxury-service-details {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            border-left: 4px solid #eabc00;
        }
        
        .luxury-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .luxury-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
        }
        
        .luxury-feature i {
            color: #eabc00;
            font-size: 24px;
            width: 40px;
            text-align: center;
        }
    </style>