/* =========================
   MAIN SECTION
========================= */

.twg-trust-bar {
  width: 100%;
  padding: 6px 15px;
  box-sizing: border-box;
  background: #fff;
}

.twg-trust-inner {
  width: 100%;
  max-width: 1180px;
  min-height: 58px;
  margin: 0 auto;

  display: flex;
  align-items: center;

  background: #faf9f6;
  border: 1px solid #eee9df;
  border-radius: 5px;

  box-sizing: border-box;
  overflow: hidden;
}


/* =========================
   TRUST ITEMS
========================= */

.twg-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 0;
  padding: 7px 12px;
  box-sizing: border-box;
}

.twg-trust-icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #243f78;
  font-size: 25px;
  line-height: 1;
  flex-shrink: 0;
}

.twg-trust-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.twg-trust-text strong {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #172b57;
  white-space: nowrap;
}

.twg-trust-text small {
  margin-top: 3px;

  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: #4f5665;

  white-space: nowrap;
}


/* =========================
   DIVIDERS
========================= */

.twg-divider {
  width: 1px;
  height: 30px;
  background: #ddd9d0;
  flex-shrink: 0;
}


/* =========================
   CTA
========================= */

.twg-trust-cta {
  min-width: 365px;
  height: 50px;

  margin-right: 5px;
  padding: 0 10px 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-sizing: border-box;

  background: linear-gradient(
    90deg,
    #173d79 0%,
    #082e68 100%
  );

  border-radius: 5px;
}

.twg-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.twg-cta-content strong {
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}

.twg-cta-content span {
  margin-top: 2px;

  font-family: Arial, sans-serif;
  font-size: 9px;
  line-height: 1.3;
  color: #fff;
  opacity: .9;
}


/* =========================
   CTA BUTTON
========================= */

.twg-cta-btn {
  min-width: 112px;
  height: 31px;

  padding: 0 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  box-sizing: border-box;

  background: #ff9800;
  color: #fff;

  border-radius: 5px;

  text-decoration: none;

  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;

  transition: .2s ease;
}

.twg-cta-btn span {
  font-size: 20px;
  line-height: 10px;
  font-weight: 400;
}

.twg-cta-btn:hover {
  background: #f18700;
  color: #fff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .twg-trust-bar {
    padding: 6px 10px;
  }

  .twg-trust-inner {
    min-height: 62px;
  }

  .twg-trust-item {
    gap: 6px;
    padding: 6px;
  }

  .twg-trust-icon {
    width: 27px;
    height: 27px;
    font-size: 21px;
  }

  .twg-trust-text strong {
    font-size: 10px;
  }

  .twg-trust-text small {
    font-size: 8px;
  }

  .twg-trust-cta {
    min-width: 285px;
    padding-left: 12px;
  }

  .twg-cta-content strong {
    font-size: 10px;
  }

  .twg-cta-content span {
    font-size: 8px;
  }

  .twg-cta-btn {
    min-width: 92px;
    font-size: 9px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .twg-trust-bar {
    padding: 6px 8px;
  }

  .twg-trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: auto;

    padding: 6px;
    gap: 0;

    overflow: visible;
  }

  .twg-trust-item {
    justify-content: flex-start;
    padding: 9px 7px;
    gap: 8px;
  }

  .twg-divider {
    display: none;
  }

  .twg-trust-icon {
    width: 28px;
    height: 28px;
    font-size: 22px;
  }

  .twg-trust-text strong {
    font-size: 11px;
  }

  .twg-trust-text small {
    font-size: 8px;
    margin-top: 2px;
  }

  /* CTA full width on mobile */

  .twg-trust-cta {
    grid-column: 1 / -1;

    width: 100%;
    min-width: 0;
    height: 50px;

    margin: 5px 0 0;

    padding: 0 8px 0 13px;
  }

  .twg-cta-content strong {
    font-size: 11px;
  }

  .twg-cta-content span {
    font-size: 8px;
  }

  .twg-cta-btn {
    min-width: 100px;
    height: 30px;
    font-size: 9px;
  }
}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 380px) {

  .twg-trust-item {
    padding: 8px 4px;
  }

  .twg-trust-icon {
    width: 25px;
    height: 25px;
    font-size: 20px;
  }

  .twg-trust-text strong {
    font-size: 10px;
  }

  .twg-trust-text small {
    font-size: 7px;
  }

  .twg-cta-content strong {
    font-size: 10px;
  }

  .twg-cta-btn {
    min-width: 88px;
    padding: 0 6px;
  }
}

/* =========================
   TRAVEL FEATURES
========================= */

.travel-features {
  width: 100%;
  background: #f8f9fc;
  padding: 15px 20px;
  box-sizing: border-box;
}

.travel-features-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.travel-feature {
  flex: 1;
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  color: #2458a6;
}

.travel-feature-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.travel-feature-icon svg {
  width: 37px;
  height: 37px;
  display: block;
}

.travel-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #202020;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
}

.travel-feature-text strong {
  font-weight: 600;
}

.travel-feature-text span {
  font-weight: 400;
}

.travel-feature-divider {
  width: 1px;
  height: 30px;
  flex: 0 0 1px;
  background: #d9ddea;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .travel-features {
    padding: 16px 15px;
  }

  .travel-features-inner {
    gap: 10px;
  }

  .travel-feature {
    gap: 8px;
  }

  .travel-feature-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .travel-feature-icon svg {
    width: 32px;
    height: 32px;
  }

  .travel-feature-text {
    font-size: 10px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .travel-features {
    padding: 16px 12px;
  }

  .travel-features-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .travel-feature {
    min-height: 58px;
    justify-content: flex-start;
    gap: 9px;
    padding: 8px 10px;
    box-sizing: border-box;
  }

  .travel-feature-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .travel-feature-icon svg {
    width: 32px;
    height: 32px;
  }

  .travel-feature-text {
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
  }

  /* Mobile dividers */
  .travel-feature-divider {
    display: none;
  }

  .travel-feature:nth-child(1),
  .travel-feature:nth-child(5),
  .travel-feature:nth-child(9) {
    border-right: 1px solid #d9ddea;
  }

  .travel-feature:nth-child(1),
  .travel-feature:nth-child(3),
  .travel-feature:nth-child(5),
  .travel-feature:nth-child(7) {
    border-bottom: 1px solid #d9ddea;
  }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

  .travel-features {
    padding: 12px 8px;
  }

  .travel-feature {
    gap: 6px;
    padding: 7px 6px;
  }

  .travel-feature-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .travel-feature-icon svg {
    width: 29px;
    height: 29px;
  }

  .travel-feature-text {
    font-size: 9px;
  }

}

/* =========================================
   GOLDEN TRIANGLE PACKAGE SECTION
========================================= */

.gtp-main-section {
    width: 100%;
    display: grid;
    grid-template-columns: 185px minmax(0, 1fr);
    gap: 0;
    background: #ffffff;
    border: 1px solid #e5e8ed;
    box-sizing: border-box;
}


/* =========================================
   LEFT MENU
========================================= */

.gtp-left-menu {
    width: 100%;
    background: #ffffff;
    border-right: 1px solid #e1e5ea;
}

.gtp-menu-title {
    min-height: 52px;
    padding: 12px 28px 12px 14px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #083d78;
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;

    position: relative;
}

.gtp-menu-title span {
    position: absolute;
    right: 9px;

    font-size: 19px;
    font-weight: 400;
}


.gtp-left-menu a {
    min-height: 54px;
    padding: 9px 9px 9px 9px;

    display: flex;
    align-items: center;
    gap: 7px;

    box-sizing: border-box;

    border-bottom: 1px solid #e5e8ed;

    color: #07569a;
    background: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;

    transition: all .2s ease;
}

.gtp-left-menu a:hover {
    background: #f5f8fc;
    color: #003f76;
}

.gtp-left-menu a > span:last-child {
    margin-left: auto;
    font-size: 17px;
    font-weight: 400;
}

.gtp-menu-icon {
    width: 18px;
    min-width: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #193f78;
    font-size: 13px;
}


/* =========================================
   CENTER CONTENT
========================================= */

.gtp-center-content {
    min-width: 0;
    padding: 0 12px 14px;
    box-sizing: border-box;
}

.gtp-center-content h2 {
    margin: 7px 0 12px;

    color: #172e67;

    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.gtp-center-content h3 {
    margin: 0 0 9px;

    color: #172e67;

    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
}

.gtp-center-content > p {
    margin: 0 0 5px;

    color: #293d67;

    font-family: Arial, sans-serif;
    font-size: 9px;
    line-height: 1.55;
}


/* =========================================
   SHOW MORE
========================================= */

.gtp-show-more {
    display: flex;
    justify-content: flex-end;

    margin: 7px 0 7px;
}

.gtp-show-more a {
    min-width: 65px;
    padding: 4px 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 1px solid #b7c9df;
    border-radius: 4px;

    color: #17467f;
    background: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
}

.gtp-show-more a span {
    font-size: 15px;
    line-height: 8px;
}


/* =========================================
   PACKAGE GRID
========================================= */

.gtp-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}


/* =========================================
   PACKAGE CARD
========================================= */

.gtp-package-card {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1e5ea;
    border-radius: 5px;

    box-sizing: border-box;
}


.gtp-card-image {
    width: 100%;
    height: 105px;

    position: relative;
    overflow: hidden;

    background: #e9edf2;
}

.gtp-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.gtp-card-badge {
    position: absolute;
    left: 8px;
    bottom: 8px;

    min-width: 27px;
    height: 20px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(21, 49, 95, .85);
    color: #ffffff;

    border-radius: 3px;

    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
}


.gtp-card-label {
    position: absolute;
    right: 0;
    bottom: 8px;

    padding: 5px 9px;

    background: #ff6868;
    color: #ffffff;

    border-radius: 3px 0 0 3px;

    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 600;
}


/* =========================================
   CARD CONTENT
========================================= */

.gtp-card-content {
    padding: 9px 10px 12px;
}

.gtp-card-content h4 {
    margin: 0 0 6px;

    color: #172e67;

    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.gtp-card-content p {
    margin: 0;

    color: #243b68;

    font-family: Arial, sans-serif;
    font-size: 9px;
    line-height: 1.55;
}

.gtp-card-content p strong {
    font-weight: 700;
}


/* =========================================
   RIGHT SIDEBAR
========================================= */

.gtp-right-sidebar {
    width: 100%;
    padding-left: 8px;
    box-sizing: border-box;
}

.gtp-side-box {
    margin-bottom: 10px;
    padding: 10px;

    background: #ffffff;

    border: 1px solid #e0e5eb;
    border-radius: 4px;

    box-sizing: border-box;
}

.gtp-side-box h3 {
    margin: 0 0 7px;

    color: #17417b;

    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.gtp-side-box ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.gtp-side-box li {
    margin: 0 0 6px;

    color: #45516a;

    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3;
}

.gtp-side-box p {
    margin: 0 0 7px;

    color: #536078;

    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.gtp-phone {
    display: block;

    color: #164a88;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.gtp-whatsapp {
    margin-top: 8px;

    display: block;
    padding: 6px;

    text-align: center;

    background: #168c43;
    color: #ffffff;

    border-radius: 3px;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.gtp-review-box {
    text-align: left;
}

.gtp-stars {
    margin-bottom: 5px;

    color: #f5a623;

    font-size: 15px;
    letter-spacing: 1px;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (max-width: 1200px) {

    .gtp-main-section {
        grid-template-columns: 165px minmax(0, 1fr);
    }

    .gtp-package-grid {
        gap: 6px;
    }

    .gtp-card-image {
        height: 95px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .gtp-main-section {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .gtp-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gtp-card-image {
        height: 120px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .gtp-main-section {
        display: block;
        border: 1px solid #e1e5ea;
    }


    /* Left menu becomes horizontal scroll */
    .gtp-left-menu {
        display: flex;

        overflow-x: auto;
        overflow-y: hidden;

        border-right: none;
        border-bottom: 1px solid #e1e5ea;

        scrollbar-width: none;
    }

    .gtp-left-menu::-webkit-scrollbar {
        display: none;
    }

    .gtp-menu-title,
    .gtp-left-menu a {
        flex: 0 0 auto;

        min-height: 48px;
        width: 155px;

        padding: 8px 10px;
    }

    .gtp-menu-title {
        width: 175px;
    }


    /* Center */
    .gtp-center-content {
        padding: 12px 10px;
    }

    .gtp-center-content h2 {
        font-size: 19px;
    }

    .gtp-center-content h3 {
        font-size: 15px;
    }

    .gtp-center-content > p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* Cards */
    .gtp-package-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gtp-card-image {
        height: 190px;
    }

    .gtp-card-content {
        padding: 11px;
    }

    .gtp-card-content h4 {
        font-size: 15px;
    }

    .gtp-card-content p {
        font-size: 10px;
    }


    /* Right sidebar */
    .gtp-right-sidebar {
        padding: 10px 0 0;
    }

    .gtp-side-box {
        margin-bottom: 8px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .gtp-menu-title,
    .gtp-left-menu a {
        width: 145px;
    }

    .gtp-menu-title {
        width: 165px;
    }

    .gtp-center-content h2 {
        font-size: 18px;
    }

    .gtp-card-image {
        height: 170px;
    }

}