    .hero {
        position: relative;
        height: 70vh;
        overflow: hidden;
    }

    /* Gradient Overlay */
    .short-single-tour-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* darken the image a bit */
        background: linear-gradient(rgba(0, 0, 0, 0.4),
                /* top */
                rgba(0, 0, 0, 0.4)
                /* bottom */
            );
        z-index: 1;
        /* behind text but above image */
    }

    /* Remove animation from the img directly */
    .hero .swiper-slide img {
        width: 100%;
        height: 100%;
        /* animation: zoomHero 15s ease-in-out infinite;  <- remove this */
    }

    /* Instead, wrap the image inside a div for zoom effect */
    .swiper-slide .zoom-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .swiper-slide .zoom-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 1.5s ease-out;
    }

    .hero .swiper {
        height: 100%;
    }

    .hero .swiper-wrapper {
        height: 100%;
    }

    .hero .swiper-slide {
        height: 100%;
    }

    .hero-slide-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-slide-info {
        position: absolute;
        bottom: 10px;
        right: 10px;
        text-align: right;
        color: #fff;
        pointer-events: none;

        padding: 8px 14px;
        border-radius: 8px;
    }

    .hero-slide-info-gray {
        position: absolute;
        bottom: 10px;
        right: 10px;
        text-align: right;
        color: #797979;
        pointer-events: none;

        padding: 8px 14px;
        border-radius: 8px;
    }

    .hero-slide-title {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
    }

    .hero-slide-credit {
        font-size: 5px;
        margin-top: 3px;
        opacity: 0.9;
    }



    /* Hero text */
    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        z-index: 2;
        /* above overlay */
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);

        width: 90%;
        max-width: 1000px;
        padding: 1rem 1.5rem;
        box-sizing: border-box;
    }

    @media (max-width: 480px) {
        .hero-text {
            width: 95%;
            /* mas lapad sa very small screens */
            padding: 0.8rem 1rem;
        }

        .hero-text h1 {
            font-size: 1.6rem;
        }

        .hero-text p {
            font-size: 1rem;
        }
    }



    .short-single-tour-tage {
        display: inline-block;
        /* subtle muted gold gradient, transparent for hero */
        background: linear-gradient(145deg, rgba(150, 120, 0, 0.5), rgba(110, 85, 0, 0.5));
        color: #fff;
        /* dark gold-ish badge with slight transparency */
        color: rgb(248, 245, 204);
        /* black text for contrast */
        font-weight: bold;
        font-size: 0.83rem;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        /* pill shape */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .short-single-tour-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        text-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    }

    .short-single-tour-meta {
        font-size: 1.2rem;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    }



    @media (max-width: 768px) {

        .hero {
            position: relative;
            height: 60vh;
            /* force 50% of viewport */
            overflow: hidden;
        }

        /* Swiper slide must match hero height */
        .hero .swiper-slide,
        .hero .swiper-slide .zoom-wrapper {
            height: 100%;
        }

        /* Image fills container fully */
        .hero .swiper-slide .zoom-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* fill hero area */
        }

        .hero-text h1 {
            font-size: 1.8rem;
        }

        .hero-text p {
            font-size: 1rem;
        }

    }

    @media (max-width: 480px) {
        .hero-text h1 {
            font-size: 1.5rem;
        }

        .hero-text p {
            font-size: 0.9rem;
        }
    }

    /* Container for hero buttons */
    .hero-text .hero-buttons {
        display: flex;
        gap: 10px;
        /* space between buttons */
        justify-content: center;
        /* center on mobile & desktop */
        flex-wrap: nowrap;
        /* important: prevent wrapping */
        flex-direction: row;
        /* horizontal */
    }

    /* Optional: smaller buttons on mobile */
    @media (max-width: 480px) {
        .hero-text .hero-buttons a {
            padding: 10px 16px;
            font-size: 14px;
        }
    }

    /* Subtle Dark Gold Buttons for Hero Image */
    .btn-more-details,
    .btn-alt-details {
        display: inline-block;
        padding: 12px 28px;
        margin: 10px 8px 0 0;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;

        /* subtle muted gold gradient, transparent for hero */
        background: linear-gradient(145deg, rgba(150, 120, 0, 0.9), rgba(110, 85, 0, 0.9));
        color: #fff;
        border: 1px solid rgba(150, 120, 0, 0.7);

        /* soft shadow for legibility */
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }

    /* Hover effect: slight brightening */
    .btn-more-details:hover,
    .btn-alt-details:hover {
        background: linear-gradient(145deg, rgba(180, 150, 0, 0.75), rgba(130, 100, 0, 0.75));
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
        color: #fff;
    }

    /* Optional secondary button */
    .btn-alt-details {
        background: linear-gradient(145deg, rgba(100, 70, 0, 0.6), rgba(80, 55, 0, 0.6));
        border: 1px solid rgba(120, 90, 0, 0.6);
    }


    .tour-tab-title {
        font-weight: 800;
        font-size: 25px;
        letter-spacing: -0.5px;
        margin-bottom: 8px;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    /* main animated line */
    .tour-tab-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 120px;
        /* mas mahaba */
        height: 3px;
        background: #ffd166;
        border-radius: 2px;
        animation: slideLine 3s ease-in-out infinite;
    }

    /* fade extension */
    .tour-tab-title::before {
        content: "";
        position: absolute;
        left: 120px;
        /* dapat match sa width ng after */
        bottom: 1px;
        width: 160px;
        height: 1px;
        background: linear-gradient(to right, #ffd16633, transparent);
    }

    @keyframes slideLine {
        0% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(25px);
        }

        100% {
            transform: translateX(0);
        }
    }


    .highlight-card {
        /* Dark gold gradient only */
        background: linear-gradient(135deg, rgba(110, 85, 0, 0.85), rgba(180, 143, 0, 0.85));
        backdrop-filter: blur(10px);
        border-radius: 1rem;
        position: relative;
        /* needed for overlay */
        overflow: hidden;
        color: white;
        transition: transform 0.3s ease, background 0.3s ease;
    }

      .highlight-image-wrapper {
        position: relative;
        width: 100%;
        }

        .highlight-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-author {
            position: absolute;
            bottom: 10px;
            left: 3px;
            color: #ffffff;            /* white text */
            font-size: 4px;
            font-weight: bold;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
            pointer-events: none;
            z-index: 2;
            padding: 0;               /* no overlay background */
        }

        .image-author-gray {
            position: absolute;
            bottom: 10px;
            left: 3px;
            color: #444;            /* white text */
            font-size: 4px;
            font-weight: bold;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
            pointer-events: none;
            z-index: 2;
            padding: 0;               /* no overlay background */
        }

        .reiseroute-image-author {
            position: absolute;
            bottom: 3px;
            right: 3px;
            color: #ffffff;            /* white text */
            font-size: 3px;
            pointer-events: none;
            z-index: 2;
            padding: 0;               /* no overlay background */
        }

        .reiseroute-image-author-gray {
            position: absolute;
            bottom: 3px;
            right: 3px;
            color: #444;            /* white text */
            font-size: 3px;
            pointer-events: none;
            z-index: 2;
            padding: 0;               /* no overlay background */
        }


    .highlight-card:hover {
        transform: scale(1.03);
        /* Slightly brighter gold on hover */
        background: linear-gradient(135deg, rgba(130, 100, 0, 0.9), rgba(200, 160, 0, 0.9));
    }

    .highlight-card img {
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
        object-fit: cover;
        height: 300px;
        width: 100%;
    }

    .highlight-card .card-body {
        padding: 1.2rem;
    }

    .highlight-card h5 {
        font-weight: bold;
    }

    .highlight-card p {
        margin-bottom: 0;
        color: #fdf5d8;
        /* soft, readable off-white */
    }

    .reiseroute-text {
        font-size: 0.88rem;
        line-height: 1.5;
        color: #444;
        text-align: justify;
    }

    .reiseroute-text strong {
        color: #7a5a07;
        /* highlight stops in subtle red */
        font-weight: 600;
    }

    


    .timeline-step {
        flex: 1 1 auto;
        min-width: 120px;
    }

    .timeline-step h4 {
        font-size: 17px;
    }
    .timeline-step p {
        font-size: 13px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
        line-height: 50px;
    }

    .timeline-arrow {
        flex: 0 0 auto;
    }

    @media (max-width: 767.98px) {

        .highlight-card img {
            height: 230px;
        }

        .highlight-card::before {
            font-size: 9px;
        }

        .timeline {
            gap: 0;
        }

        .timeline-step {
            margin-bottom: 0;
        }

        .timeline-arrow {
            margin: 20px 0;
        }
    }

    /* CSS PROGRAMM START */

.itenerary-container {

    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 5.5rem;
    padding-right: 5.5rem;
}

.itenarary-timeline {
  border: 2px solid #B8860B;      /* main border color */
  border-radius: 12px;              /* rounded corners */
  background: #ffffff;              /* background inside the border */
  box-shadow: 0 8px 20px rgba(32, 123, 131, 0.2); /* subtle shadow */
  position: relative;
  overflow: hidden;
}

.hero-wrapper-itenerary {
  position: relative;
  display: inline-block;
  width: 100%; /* make container full width */
  max-width: 100%; /* prevent overflow */
}

.itenerary-photo {
  width: 100%;      /* make the image scale with the container */
  height: 420px;     /* maintain aspect ratio */
  display: block;
  max-width: 1200px; /* optional: cap the maximum size */
}

.itenerary-photo-text {
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #fff;
  text-align: right;
  pointer-events: none;

  padding: 5px 10px;
  border-radius: 5px;
}

.itenerary-photo-title {
  font-size: 11px; /* bigger font for title */
  font-weight: bold;
  line-height: 1.2;
}

.itenerary-photo-author {
  font-size: 5px; /* small font for attribution */
  margin-top: 2px;
}


  /* Day navigation wrapper */
  .day-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Horizontal scroll for days */
  .day-nav {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    align-items: center;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .day-nav::-webkit-scrollbar {
    display: none;
  }

  .day-nav .day-strip {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 20px;
    gap: 30px;
    min-width: max-content;
    position: relative;
  }

  /* Full connecting line behind all buttons */
  .day-nav .day-strip::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #B8860B;
    z-index: 0;
  }

  .day-nav .day-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    z-index: 1;
  }

  /* Day buttons */
  .day-nav button.day-btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    background: #f0f0f0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
  }

  .day-nav button.day-btn.active {
    background: #B8860B;
    /* dark gold */
    color: #fff;
  }

  /* Labels & city names */
  .day-label {
    margin-top: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .day-city {
    font-size: 0.68rem;
    color: black;
    white-space: normal;
    word-break: break-word;
    max-width: 80px;
  }

  /* Day content */
  .day-content {
    display: none;
    padding: 20px;
  }

  .day-content.active {
    display: block;
  }

  .day-content h5 {
    font-weight: bold;
    border-bottom: 2px solid #B8860B;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .str.lora-text {
    font-size: 15px;
  }

  /* prev-itenarary/next-itenarary buttons */
  .scroll-btn {
    position: relative;
    top: -38px;
    border: none;
    background: #B8860B;
    color: white;
    border-radius: 20px;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 0.9rem;
  }

  .scroll-btn:hover {
    background: #8B6508;
    /* slightly darker gold for hover */
  }

  /* OPTIONAL: further scaling for very small screens */
@media (max-width: 768px) {

  .itenerary-container {

    padding: 0.5rem;;
}

  .itenerary-photo {
    height: 230px;     /* maintain aspect ratio */
  }
  .itenerary-photo-title {
    font-size: 8px;
  }

  .itenerary-photo-author {
    font-size: 4px;
  }

}

/* CSS PROGRAMM END */
.leistungen-container {
  max-width: 1080px; /* col-8 equivalent */
  margin: auto;
}

.leistungen-table {
  display: flex;
  flex-direction: column; /* stack rows vertically */
  border: 1px solid #795b20; /* outer border for the table */
  border-radius: 5px;
  overflow: hidden;
}

.leistungen-row {
  display: flex;
  border-top: 1px solid #795b20;
}

.leistungen-row:first-child {
  border-top: none; /* no double top border */
}

/* Desktop styles remain */
.left-column {
  background-color: #b78d2f;
  color: white;
  font-weight: bold;
  min-width: 500px; /* desktop */
  display: flex;
  align-items: center;
  padding: 15px;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .leistungen-row {
    flex-direction: column; /* stack left + right on top of each other */
  }

  .left-column {
    min-width: 100%; /* take full width */
    justify-content: flex-start; /* align text to top/left */
  }

  .right-column {
    border-left: none; /* remove left border on mobile */
    padding-left: 0;
    padding-top: 10px;
  }
}


.left-column i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.right-column {
  flex: 1; /* take remaining width */
  padding: 15px;
  border-left: 1px solid #553e06;
}

  /* Replace list bullets with stars */
  .right-column ul {
    list-style: none;
    /* remove default bullets */
    padding-left: 0;
  }

  .right-column ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    /* space for star */
    font-size: 0.90rem;
    line-height: 1.45;
  }

  /* Add star before each li */
  .right-column ul li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #b8860b;
    /* darkgold star */
    font-size: 1rem;
    line-height: 1;
  }


    .text-darkgold {
        color: #B8860B;
    }

    .bg-darkgold {
        background-color: #B8860B;
        color: #fff;
    }

    .hero-wrapper-more-info {
        position: relative;
        /* display: inline-block; */
        width: 100%;
        /* make container full width */
        max-width: 100%;
        /* prevent overflow */
    }

    .more-info-photo {
        width: 100%;
        /* make the image scale with the container */
        height: 550px;
        /* maintain aspect ratio */
        display: block;
        max-width: 925px;
        /* optional: cap the maximum size */
    }

    .more-info-text {
        position: absolute;
        bottom: 5px;
        right: 5px;
        color: #fff;
        text-align: right;
        pointer-events: none;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        /* semi-transparent black */
        padding: 5px 10px;
        border-radius: 5px;
    }

    .more-info-title {
        font-size: 20px;
        /* bigger font for title */
        font-weight: bold;
        line-height: 1.2;
    }

    .more-info-author {
        font-size: 4px;
        /* small font for attribution */
        margin-top: 2px;
    }


/* Default (desktop) */
.responsive-heading {
font-size: 1.3rem; /* or kung ano current size mo */
}

/* Mobile */
@media (max-width: 767.98px) {
.responsive-heading {
font-size: 1rem; /* adjust mo depende sa gusto mo */
}
}
