
        body {
            background-color: black;
            color: white;
            font-family: Arial, sans-serif;
        }

        /* TAB SYSTEM */
        .klook-tab-buttons {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
            gap: 30px;
        }

        .klook-tab-buttons button {
            background: transparent;
            border: none;
            padding: 12px 25px;
            color: white;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-size: 17px;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .klook-tab-buttons button:hover {
            color: #00C900;
        }

        .klook-tab-buttons button.active {
            border-bottom: 3px solid #00C900;
            color: #00C900;
            font-weight: bold;
        }

        .klook-tab-content {
            display: none;
            padding: 40px 10%;
            animation: fadeIn 0.4s ease-in-out;
        }

        .klook-tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        h2 {
            color: #00C900;
            margin-bottom: 10px;
        }

        p {
            color: #ccc;
            font-size: 16px;
            margin-bottom: 20px;
        }

        /* TOUR CONTENT REFINEMENT */
        .tour-section {
            background: #111;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.05);
        }

        /* TRANSPORTATION SECTION */
        .transpo-container {
            text-align: center;
        }

        .transpo-container img {
            width: 100%;
            max-width: 850px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
        }

        .transpo-btn {
            display: inline-block;
            background: #00C900;
            color: black;
            padding: 16px 35px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            box-shadow: 0 0 12px rgba(0, 255, 0, 0.4);
            transition: 0.3s;
        }

        .transpo-btn:hover {
            background: #00e000;
            box-shadow: 0 0 18px rgba(0, 255, 0, 0.6);
            transform: translateY(-2px);
        }

        /* MOBILE FIX: Allow tab buttons to wrap and stay centered */
        @media (max-width: 600px) {
            .klook-tab-buttons {
                flex-wrap: wrap;
                gap: 10px;
                padding-bottom: 15px;
            }

            .klook-tab-buttons button {
                font-size: 15px;
                padding: 10px 18px;
            }
        }

        /* Allow H4 titles to wrap normally */
        h4, .content_title_center {
            white-space: normal !important;
            word-break: break-word;
            text-align: center;
        }

        /* Mobile fix for long titles */
        @media (max-width: 600px) {
            h4, .content_title_center {
                font-size: 18px !important;
                line-height: 1.3;
                padding: 0 10px;
            }

            .transpo-btn {
                padding: 10px 20px;
                font-size: 16px;
                border-radius: 8px;
            }
        }

        /* TAB SYSTEM */
        .tab-container {
            width: 100%;
            max-width: 1000px;
            margin: auto;
            padding-top: 20px;
        }

        .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .tabs button {
            background: #222;
            color: white;
            border: 1px solid #444;
            padding: 10px 15px;
            cursor: pointer;
            margin: 0 5px;
            border-radius: 5px;
        }

        .tabs button.active {
            background: #0a84ff;
        }

        .tab-content {
            display: none;
            text-align: center;
        }

        .tab-content.active {
            display: block;
        }

        /* Trip Widget Styling */
        .trip-widget {
            margin-top: 20px;
            text-align: center;
        }

        /* Desktop defaults */
        .trip-widget iframe.desktop {
            width: 100%;
            max-width: 900px;
            height: 200px;
            border: none;
            border-radius: 10px;
            display: block;
            margin: auto;
        }

        /* Mobile default hidden */
        .trip-widget iframe.mobile {
            display: none;
        }

        /* Mobile override */
        @media (max-width: 600px) {
            .trip-widget iframe.desktop {
                display: none !important;
            }
            .trip-widget iframe.mobile {
                display: block !important;
                width: 100%;
                max-width: 320px;
                height: 320px;
                border: none;
                margin: auto;
            }
        }
        /* Make Flights / Trains tabs match main Klook tab style */
#cars .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    gap: 30px;
}

#cars .tabs button {
    background: transparent;
    border: none;
    padding: 12px 25px;
    color: white;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    font-size: 17px;
    letter-spacing: 1px;
    transition: 0.3s;
}

#cars .tabs button:hover {
    color: #00C900;
}

#cars .tabs button.active {
    border-bottom: 3px solid #00C900;
    color: #00C900;
    font-weight: bold;
}

/* Mobile fix */
@media (max-width: 600px) {
    #cars .tabs {
        flex-wrap: wrap;
        gap: 10px;
        padding-bottom: 15px;
    }

    #cars .tabs button {
        font-size: 15px;
        padding: 10px 18px;
    }
}
/* Blog-style content for Tours, Hotels, Transportation */
.tab-blog, .transpo-blog {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 900px;
    color: #ccc;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.05);
    text-align: left;
}

.tab-blog h4, .transpo-blog h4 {
    color: #00C900;
    margin-bottom: 15px;
    text-align: center;
}

.tab-blog p, .transpo-blog p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}
/* Hotel promo images styling */
.hotel-promos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.hotel-promo-img {
    width: 100%;
    max-width: 440px; /* Adjust to fit 2 side by side */
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,255,0,0.2);
    transition: 0.3s;
    cursor: pointer;
}

.hotel-promo-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0,255,0,0.3);
}

/* Responsive: stack images on small screens */
@media (max-width: 900px) {
    .hotel-promo-img {
        max-width: 100%;
    }
}

