/*package-two*/

:root {
    --green: #355e3b;
    --ink: #202020;
    --muted: #585858;
    --cream: #fff9ed;
    --shell: 1330px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

img {
    display: block;
    max-width: 100%;
}

.page-shell {
    width: min(var(--shell), calc(100% - 64px));
    margin: 0 auto;
}

.btn {
    border: 0;
    cursor: pointer;
    font: 600 14px Manrope, Arial, sans-serif;
    transition: transform .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    color: #fff;
    background: var(--green);
    border-radius: 4px;
    padding: 12px 22px;
}

.package-hero {
    min-height: 460px;
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
}

.package-hero__image,
.package-hero__overlay {
    position: absolute;
    inset: 0;
}

.package-hero__image {
    background: center / cover no-repeat;
    background-color: #123d6b;
}

.package-hero__overlay {
    background: linear-gradient(90deg, rgba(5, 32, 71, .70), rgba(10, 50, 106, .26));
}

.package-hero__content {
    position: relative;
    padding-bottom: 86px;
}

.package-hero h1,
.journey-cta h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    text-transform: uppercase;
}

.package-hero h1 {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: .2px;
}

.package-hero p {
    margin: 6px 0 0;
    font-size: 16px;
    font-weight: 600;
}

.itinerary {
    padding: 42px 0 64px;
}

.itinerary h2 {
    margin: 0 0 26px;
    font-size: 26px;
    font-weight: 500;
}

.itinerary__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: start;
}

.timeline {
    position: relative;
    padding-left: 26px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: #787878;
}

.day {
    position: relative;
    padding-bottom: 18px;
}

.day h3 {
    position: relative;
    margin: 0 0 12px -26px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 500;
}

.day__marker {
    z-index: 1;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #555;
    color: white;
    font-size: 10px;
}

.day__content {
    padding-left: 14px;
}

.day h4 {
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 700;
}

.day p {
    margin: 0 0 9px;
    color: #3d3d3d;
    font-size: 12px;
    line-height: 1.55;
}

.day p strong {
    color: #202020;
}

.itinerary__image-card {
    position: sticky;
    top: 22px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}

.itinerary__image-card img {
    width: 100%;
    height: 435px;
    object-fit: cover;
    background: #d4d4d4;
}

.package-note {
    margin-top: 22px;
    color: #5b5b5b;
    font-size: 11px;
    line-height: 1.6;
}

.package-note p {
    margin: 0 0 16px;
}

.package-note__warning {
    color: #da2525;
    font-weight: 700;
}

/* .journey-cta {
    position: relative;
    min-height: 210px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--cream);
    text-align: center;
} */
/* .journey-cta {
    position: relative;
    min-height: 210px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
      url('../assets/cta.webp') center center / cover no-repeat;
    text-align: center;
} */
 .journey-cta {
    position: relative;
    min-height: 260px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 32px 24px;
    border-radius: 0px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.55)),
      url('../../assets/images/cta.webp') center center / cover no-repeat;
    text-align: center;
}
.journey-cta__content {
    position: relative;
    z-index: 1;
    padding: 32px 24px;
}

.journey-cta h2 {
    font-size: 28px;
    text-transform: uppercase;
}

.journey-cta p {
    margin: 11px 0 20px;
    color: #555;
    font-size: 12px;
}

.journey-cta__pattern {
    position: absolute;
    width: 240px;
    height: 220px;
    opacity: .22;
    background: url('../../assets/images/cta-pattern.webp') center/contain no-repeat;
}

.journey-cta__pattern--left {
    top: -8px;
    left: -15px;
    transform: rotate(-15deg);
}

.journey-cta__pattern--right {
    top: -8px;
    right: -15px;
    transform: scaleX(-1) rotate(-15deg);
}

/* --- Mobile/tablet-only corner decorations ---
   Two gold mandala motifs (left_design.png / right_design.png), added as
   ::before/::after pseudo-elements on .journey-cta so no HTML changes are
   needed. These are separate from the existing .journey-cta__pattern
   elements above (cta-pattern.webp), which are left untouched. `display:
   none` here keeps the new motifs off the desktop layout; the
   @media (max-width: 768px) block below is the ONLY place that turns
   them on (it also covers everything narrower, e.g. the 480px query). */
.journey-cta::before,
.journey-cta::after {
    content: "";
    display: none;
    position: absolute;
    width: 50px;
    height: 65px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
}

.journey-cta::before {
    background-image: url('../../assets/images/left_design.png');
    top: -1px;
    left: 0px;
}

.journey-cta::after {
    background-image: url('../../assets/images/right_design.png');
    bottom: 0px;
    right: -24px;
}

@media (max-width:992px) {
    .package-hero {
        min-height: 400px;
    }

    .itinerary__layout {
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 32px;
    }

    .itinerary__image-card img {
        height: 360px;
    }
}

@media (max-width:768px) {
    .package-hero__content {
    padding-bottom: 0;
    text-align: center;
  }
    @media (max-width:768px) {
  .package-hero {
    align-items: center;   /* was inheriting "end" from the base rule */
  }

  .package-hero__content {
    padding-bottom: 0;      /* remove the bottom-anchoring padding */
  }

  /* ...keep your existing rules below (min-height, h1 font-size, etc.) */
}
    .page-shell {
        width: min(100% - 36px, var(--shell));
    }

    .package-hero {
        min-height: 700px;
    }

    .package-hero__content {
        padding-bottom: 44px;
    }

    .package-hero h1 {
        font-size: 40px;
    }

    .package-hero p {
        font-size: 18px;
    }

    .itinerary {
        padding: 30px 0 44px;
    }

    .itinerary h2 {
        font-size: 23px;
    }

    .itinerary__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .itinerary__image-card {
        position: static;
        order: -1;
    }

    .itinerary__image-card img {
        width: 100%;
        height: 280px;
    }

    .journey-cta {
        min-height: 190px;
    }

    .journey-cta h2 {
        font-size: 23px;
    }

    .journey-cta__pattern {
        width: 150px;
        height: 150px;
    }

    .journey-cta::before,
    .journey-cta::after {
        display: block;
    }
}

@media (max-width:480px) {
    body {
        font-size: 13px;
    }

    .page-shell {
        width: calc(100% - 28px);
    }

    .package-hero {
        min-height: 310px;
    }

    .package-hero h1 {
        font-size: 27px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline::before {
        left: 7px;
    }

    .day h3 {
        margin-left: -20px;
    }

    .day__content {
        padding-left: 6px;
    }

    .day p {
        font-size: 11px;
    }

    .journey-cta h2 {
        font-size: 20px;
    }

    .journey-cta__pattern {
        width: 115px;
        height: 130px;
    }
}