/* =========================================================
   THE TAJ MAHAL TOURS
   TOUR / ITINERARY PAGE COMPONENTS
========================================================= */


/* =========================================================
   1. TRUST BAR
========================================================= */

.tour-trust-section {
    position: relative;
    padding: 22px 0;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #f3f6f8 100%
        );

    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}


/* MAIN CONTAINER */

.tour-trust-shell {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    background: #ffffff;

    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 22px;

    box-shadow:
        0 12px 36px rgba(15, 23, 42, 0.045);

    overflow: hidden;
}


/* INDIVIDUAL TRUST ITEM */

.tour-trust-card {
    position: relative;

    display: flex;
    align-items: center;

    min-width: 0;

    gap: 14px;

    padding: 22px 24px;
}


/* DESKTOP DIVIDERS */

.tour-trust-card + .tour-trust-card {
    border-left: 1px solid rgba(15, 23, 42, 0.07);
}


/* ICON */

.tour-trust-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #b77d13;

    background:
        linear-gradient(
            145deg,
            rgba(200, 146, 42, 0.14),
            rgba(200, 146, 42, 0.06)
        );

    border: 1px solid rgba(200, 146, 42, 0.28);

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.8);
}


/* TEXT WRAPPER */

.tour-trust-content {
    min-width: 0;
}


/* TITLE */

.tour-trust-title {
    margin: 0 0 4px;

    color: #111827;

    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;

    letter-spacing: -0.01em;
}


/* DESCRIPTION */

.tour-trust-text {
    margin: 0;

    color: #64748b;

    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}


/* SUBTLE HOVER - DESKTOP */

@media (hover: hover) {

    .tour-trust-card {
        transition:
            background-color .25s ease,
            transform .25s ease;
    }

    .tour-trust-card:hover {
        background: rgba(200, 146, 42, 0.035);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1023px) {

    .tour-trust-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-trust-card {
        padding: 20px 22px;
    }

    /* reset desktop borders */

    .tour-trust-card + .tour-trust-card {
        border-left: 0;
    }

    /* vertical divider */
    .tour-trust-card:nth-child(even) {
        border-left: 1px solid rgba(15, 23, 42, 0.07);
    }

    /* horizontal divider */
    .tour-trust-card:nth-child(n+3) {
        border-top: 1px solid rgba(15, 23, 42, 0.07);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .tour-trust-section {
        padding: 18px 0;
    }

    .tour-trust-shell {
        display: block;

        border-radius: 20px;
    }

    .tour-trust-card {
        width: 100%;

        display: flex;
        align-items: center;

        gap: 15px;

        padding: 18px 20px;

        border: 0 !important;
        margin: 0 !important;
    }

    .tour-trust-card + .tour-trust-card {
        border-top: 1px solid rgba(15, 23, 42, 0.07) !important;
    }

    .tour-trust-icon {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;

        font-size: 15px;
    }

    .tour-trust-content {
        flex: 1;
        min-width: 0;
    }

    .tour-trust-title {
        margin: 0 0 3px;

        font-size: 16px;
        line-height: 1.3;
    }

    .tour-trust-text {
        margin: 0;

        font-size: 13.5px;
        line-height: 1.5;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .tour-trust-card {
        padding: 17px 16px;
        gap: 12px;
    }

    .tour-trust-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .tour-trust-title {
        font-size: 15px;
    }

    .tour-trust-text {
        font-size: 13px;
    }

}

/* =========================================================
   2. TOUR INCLUSIONS / EXCLUSIONS
========================================================= */

.tour-inclusions-card {
    position: relative;
    padding: 30px;

    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 24px;

    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
}

.tour-inclusions-title {
    margin: 0 0 24px;

    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;

    color: #111827;
}

.tour-inclusions-title--included::after,
.tour-inclusions-title--excluded::after {
    content: "";
    display: block;

    width: 44px;
    height: 2px;
    margin-top: 12px;
}

.tour-inclusions-title--included::after {
    background: #c8922a;
}

.tour-inclusions-title--excluded::after {
    background: #94a3b8;
}

.tour-inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tour-inclusions-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: #475569;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

.tour-inclusions-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;

    margin-top: 1px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.tour-inclusions-icon--included {
    background: rgba(200, 146, 42, 0.12);
    color: #b87d13;
}

.tour-inclusions-icon--excluded {
    background: rgba(100, 116, 139, 0.10);
    color: #64748b;
}


/* =========================================================
   3. TOUR FAQ
========================================================= */

.tour-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.tour-faq-item {
    position: relative;

    margin-bottom: 14px;

    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;

    overflow: hidden;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.tour-faq-item:hover {
    border-color: rgba(200, 146, 42, 0.28);
}

.tour-faq-item.is-open {
    border-color: rgba(200, 146, 42, 0.35);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.tour-faq-question-wrap {
    margin: 0;
}

.tour-faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 22px 24px;

    border: 0;
    background: transparent;

    color: #111827;

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;

    text-align: left;
    cursor: pointer;
}

.tour-faq-question-text {
    display: block;
    flex: 1;
}

.tour-faq-icon {
    position: relative;

    width: 32px;
    height: 32px;
    flex: 0 0 32px;

    border-radius: 50%;

    background: rgba(200, 146, 42, 0.10);
    border: 1px solid rgba(200, 146, 42, 0.22);

    transition: background .25s ease;
}

.tour-faq-icon-horizontal,
.tour-faq-icon-vertical {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 12px;
    height: 2px;

    background: #b87d13;

    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}

.tour-faq-icon-vertical {
    transform: translate(-50%, -50%) rotate(90deg);
}

.tour-faq-item.is-open .tour-faq-icon {
    background: #c8922a;
}

.tour-faq-item.is-open .tour-faq-icon-horizontal,
.tour-faq-item.is-open .tour-faq-icon-vertical {
    background: #111827;
}

.tour-faq-item.is-open .tour-faq-icon-vertical {
    transform: translate(-50%, -50%) rotate(0);
}

.tour-faq-answer {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.tour-faq-answer-inner {
    padding: 20px 24px 24px;

    color: #64748b;

    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.tour-faq-answer-inner p {
    margin-bottom: 12px;
}

.tour-faq-answer-inner p:last-child {
    margin-bottom: 0;
}


/* FAQ CTA */

.tour-faq-cta {
    max-width: 900px;
    margin: 30px auto 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    padding: 26px 28px;

    background: #071527;
    border-radius: 24px;
}

.tour-faq-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tour-faq-cta-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c8922a;

    color: #071527;

    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
}

.tour-faq-cta-title {
    margin: 0 0 4px;

    color: #ffffff;

    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
}

.tour-faq-cta-text {
    margin: 0;

    color: rgba(255,255,255,0.70);

    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.tour-faq-cta .btn-primary {
    flex: 0 0 auto;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1023px) {

    .global-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 28px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .global-trust-bar {
        padding: 22px 0;
    }

    .global-trust-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .global-trust-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }


    /* Inclusions */

    .tour-inclusions-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .tour-inclusions-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .tour-inclusions-item {
        font-size: 14px;
        gap: 10px;
    }


    /* FAQ */

    .tour-faq-question {
        padding: 19px 18px;
        gap: 16px;
        font-size: 15px;
    }

    .tour-faq-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .tour-faq-answer-inner {
        padding: 18px;
        font-size: 14px;
    }

    .tour-faq-cta {
        flex-direction: column;
        align-items: stretch;

        padding: 22px 20px;
    }

    .tour-faq-cta .btn {
        width: 100%;
    }

}
<style>
/* DESTINATION PILLS SPACING FIX */
.tour-route-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
}

.tour-route-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.tour-route-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #d49a27;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;

  margin-left: 6px;
  margin-right: 6px;

  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

@media (max-width: 767px) {
  .tour-route-list {
    row-gap: 8px;
    column-gap: 4px;
  }

  .tour-route-pill {
    font-size: 13px;
    padding: 8px 13px;
  }

}

/* TOUR HERO MOBILE FIX */
@media (max-width: 767px) {
  #hero.tour-itinerary-hero {
    min-height: auto !important;
    padding-top: 145px !important;
    padding-bottom: 80px !important;
    align-items: flex-start !important;
  }

  #hero.tour-itinerary-hero .tour-hero-content {
    max-width: 100% !important;
  }

  #hero.tour-itinerary-hero .tour-hero-label-wrap {
    margin-bottom: 18px !important;
  }

  #hero.tour-itinerary-hero h1 {
    font-size: 40px !important;
    line-height: 1.08 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.03em !important;
  }

  #hero.tour-itinerary-hero .tour-hero-tagline {
    font-size: 16px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }

  #hero.tour-itinerary-hero .tour-destination-pills span {
    font-size: 14px !important;
    padding: 8px 15px !important;
  }

  #hero.tour-itinerary-hero .tour-cta-group {
    margin-top: 24px !important;
    gap: 12px !important;
  }

  #hero.tour-itinerary-hero .tour-cta-group a {
    width: 100% !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    font-size: 16px !important;
  }

  #hero.tour-itinerary-hero .tour-mobile-breadcrumb {
    margin-top: 24px !important;
    margin-bottom: 35px !important;
  }
}

/* SMALL MOBILE FIX */
@media (max-width: 380px) {
  #hero.tour-itinerary-hero {
    padding-top: 135px !important;
  }

  #hero.tour-itinerary-hero h1 {
    font-size: 36px !important;
  }

  #hero.tour-itinerary-hero .tour-hero-tagline {
    font-size: 15px !important;
  }

  #hero.tour-itinerary-hero .tour-destination-pills span {
    font-size: 13px !important;
    padding: 7px 13px !important;
  }
}
</style>