@import url('https://fonts.googleapis.com/css2?family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&display=swap');

.single-trip header{
	background: #000;
}

.single-trip .rg-trip-section{
	padding-top: 220px;
}

.rg-trip-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.rg-trip-gallery,
.rg-trip-card {
  min-width: 0;
}

.rg-trip-gallery .rgMainSlider {
  position: relative;
  overflow: hidden;
  border: 1px solid #e4e4de;
  background: #fff;
}

.rg-trip-gallery .rgMainSlider .swiper-slide {
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.rg-trip-gallery .rgMainSlider .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rg-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4c400;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.rg-swiper-btn:hover {
  transform: translateY(-50%) scale(1.05);
}

.rg-swiper-btn span {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  margin-top: -2px;
}

.rg-swiper-prev {
  left: 14px;
}

.rg-swiper-next {
  right: 14px;
}

.rgThumbSlider {
  margin-top: 12px;
  overflow: hidden;
}

.rgThumbSlider .swiper-slide {
  height: 78px;
  cursor: pointer;
  opacity: 0.65;
  transition: 0.25s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.rgThumbSlider .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #f4c400;
}

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

/* Right Card */
.rg-trip-card {
  background: rgba(0, 38, 38, 1);
  color: #fff;
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rg-trip-card h2 {
  margin: 0 0 22px;
  font-size: 38px;
  line-height: 125%;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #fff;
}

.rg-trip-desc {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
}

.rg-trip-line {
  width: 42px;
  height: 5px;
  background: #f4c400;
  margin-bottom: 24px;
}

.rg-trip-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.rg-trip-meta li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    line-height: 18px;
    color: #fff;
    margin-bottom: 14px;
}

.rg-trip-meta li span{
	font-family: "Kulim Park", sans-serif;
	font-weight: 400;
}

.rg-trip-meta li:last-child {
  margin-bottom: 0;
}

.rg-icon {
  width: 32px;
  flex: 0 0 32px;
}

.rg-trip-price {
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 24px;
    color: #fff;
}

.rg-trip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f4c400;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 22px;
  border-radius: 999px;
  width: fit-content;
  transition: 0.25s ease;
  margin-bottom: 24px;
}

.rg-trip-btn:hover {
  background: #ffd21a;
  color: #111;
}

.rg-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #111;
  color: #f4c400;
  font-size: 12px;
}

.rg-trip-note {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  max-width: 532px;
}

/* Responsive */
@media (max-width: 1024px) {
  .rg-trip-wrap {
    grid-template-columns: 1fr;
  }

  .rg-trip-card {
    padding: 34px 26px;
  }

  .rg-trip-card h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .rg-trip-section {
    padding: 24px 10px;
  }

  .single-trip .rg-trip-section{
    padding-top: 140px;
  }

  .rg-trip-gallery .rgMainSlider .swiper-slide {
    padding-bottom: 72%;
  }

  .rgThumbSlider .swiper-slide {
    height: 58px;
  }

  .rg-trip-card {
    padding: 38px 20px;
  }

  .rg-trip-card h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .rg-trip-desc {
    font-size: 16px;
    line-height: 1.7;
  }

  .rg-trip-meta li {
    font-size: 18px;
  }

  .rg-trip-price {
    font-size: 24px;
  }

  .rg-trip-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .rg-swiper-btn {
    width: 36px;
    height: 36px;
  }

  .rg-swiper-btn span {
    font-size: 24px;
  }
}


.single-trip .info-dual-section{
	padding-top: 80px;
}

.info-dual-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.info-underline-img{
	padding-top: 10px;
	text-align: center;
}

.info-box {
  position: relative;
  text-align: center;
}

.info-heading-wrap {
  padding: 0 20px 26px;
}

.info-title {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0, 38, 38, 1);
  letter-spacing: 1.2px;
}

.info-card {
  background: #fff;
  text-align: left;
  padding: 42px 36px 36px;
  min-height: 190px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.info-box:last-child .info-card {
  border-right: 0;
}

.info-card h3 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(139, 25, 29, 1);
  letter-spacing: 1.2px;
}

.info-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #000;
}

/* Tablet */
@media (max-width: 991px) {
  .info-title {
    font-size: 34px;
  }

  .info-card {
    padding: 30px 24px;
  }

  .info-card h3 {
    font-size: 26px;
  }

  .info-card p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* Mobile */
@media (max-width: 767px) {
	.single-trip .info-dual-section{
		padding-top: 40px;
	}
  .info-dual-section {
    padding: 40px 10px;
  }

  .info-dual-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-heading-wrap {
    padding: 0 10px 18px;
  }

  .info-title {
    font-size: 32px;
  }

  .info-underline {
    width: 90px;
    height: 5px;
    margin-top: 12px;
  }

  .info-card {
    min-height: auto;
    padding: 24px 20px;
    border-right: 0;
  }

  .info-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .info-card p {
    font-size: 18px;
    line-height: 1.75;
  }
}



.trip-info-section {
  padding: 80px 20px;
  background-size: 18px 18px;
}

.trip-info-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 36px;
  align-items: start;
}

.trip-highlights-card {
  background: rgba(0, 38, 38, 1);
  color: #fff;
  padding: 50px 28px 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.trip-highlights-title {
    margin: 0;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: #fff;
}

.trip-highlights-line {
  display: block;
  width: 44px;
  height: 5px;
  background: #f4c400;
  margin: 18px 0 22px;
}

.trip-highlights-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.trip-highlights-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.trip-highlights-list li span:not(.trip-icon){
	font-family: "Kulim Park", sans-serif;
	color: #fff;
  font-size: 16px;
  line-height: 18px;
}

.trip-highlights-list li:last-child {
  margin-bottom: 0;
}

.trip-icon {
  width: 24px;
  min-width: 24px;
  color: #f4c400;
}

.trip-highlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  background: #f4c400;
  color: #111;
  text-decoration: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: all 0.25s ease;
}

.trip-highlight-btn:hover {
  background: #ffd21a;
  color: #111;
}

.trip-btn-arrow {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #111;
  color: #f4c400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trip-btn-arrow svg {
  width: 12px;
  height: 12px;
}

.trip-details-content {
  padding-top: 4px;
}

.trip-details-title {
    margin: 0 0 26px;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 38, 38, 1);
}

.trip-detail-block {
  margin-bottom: 26px;
}

.trip-detail-block:last-child {
  margin-bottom: 0;
}

.trip-detail-block h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(139, 24, 29, 1);
}

.trip-detail-block p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 24px;
    color: rgba(72, 72, 72, 1);
}

.trip-detail-block p:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .trip-info-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trip-highlights-card {
    max-width: 100%;
  }

  .trip-highlights-title {
    font-size: 34px;
  }

  .trip-details-title {
    font-size: 38px;
  }

  .trip-highlights-list li,
  .trip-detail-block p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .trip-info-section {
    padding: 20px 10px 40px;
  }

  .trip-highlights-card {
    padding: 26px 20px 22px;
  }

  .trip-highlights-title {
    font-size: 28px;
  }

  .trip-highlights-line {
    margin: 14px 0 18px;
  }

  .trip-highlights-list {
    margin-bottom: 22px;
  }

  .trip-highlights-list li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .trip-highlight-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .trip-details-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .trip-detail-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .trip-detail-block p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
  }
}




.trip-breakdown-section {
    background: rgba(0, 38, 38, 1);
    padding: 0px;
    margin-top: 60px;
}
.trip-breakdown-section:before {
    content: '';
    background-image: url(/wp-content/uploads/2026/03/Group-15.png);
    display: block;
    width: 100%;
    height: 100px;
    background-size: cover;
    position: relative;
    top: -40px;
}
.trip-breakdown-section:after{
	content: '';
	background-image: url(/wp-content/uploads/2026/03/after.png);
	display: block;
  width: 100%;	
  height: 100px;
  background-size: cover;
  position: relative;
  top: 40px;
}

.mt-15{
	margin-top: 15px;
}
.trip-breakdown-container {
  max-width: 1100px;
  margin: 0 auto;
}

.trip-breakdown-header {
  text-align: center;
  margin-bottom: 34px;
}

.trip-breakdown-header h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trip-breakdown-line {
  display: block;
  width: 98px;
  height: 5px;
  background: #f4c400;
  margin: 14px auto 0;
  position: relative;
}

.trip-breakdown-line::before,
.trip-breakdown-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #f4c400;
  transform: translateY(-50%);
}

.trip-breakdown-line::before {
  left: -18px;
}

.trip-breakdown-line::after {
  right: -18px;
}

.trip-breakdown-grid {
  display: grid;
  grid-template-columns: 1fr 26px 1fr;
  gap: 24px;
  align-items: center;
}

.trip-breakdown-col {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.trip-breakdown-col.trip-breakdown-right {
  margin-bottom: 30px;
}

.reverse-mobile .trip-breakdown-col.trip-breakdown-right{
  margin-bottom: 0px;
}
.reverse-mobile .trip-breakdown-col.trip-breakdown-left{
  margin-bottom: 30px;
}

.trip-breakdown-divider {
  width: 6px;
  min-height: 100%;
  background: rgba(253, 202, 64, 1);
  justify-self: center;
}

.border-top-round{
	border-radius: 20px 20px 0 0;
}

.border-bottom-round{
	border-radius: 0 0 20px 20px;
}

.trip-step-card {
  background: #efefef;
  padding: 26px 28px 24px;
}

.trip-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f4c400;
    color: rgba(139, 25, 29, 1);
    font-size: 30px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
}

.trip-step-head h3 {
  margin: 0;
  color: rgba(139, 25, 29, 1);
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 400;
}

.trip-step-card p {
  margin: 0;
  color: #2b2b2b;
  font-size: 18px;
  line-height: 1.75;
}

.trip-image-group {
  position: relative;
}

.trip-image-group img {
  display: block;
  object-fit: cover;
}

.top-group {
  min-height: 245px;
}

.top-group .img-large {
  width: 178px;
  height: 178px;
  margin-left: auto;
}

.top-group .left-float {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 150px;
  height: 108px;
  border: 4px solid #002f31;
}

.trip-image-group img{
	display: block;
	width: 100%;
}

.mid-group {
  min-height: 190px;
}

.mid-group .mid-left {
  width: 250px;
  height: 150px;
}

.mid-group .mid-right {
  position: absolute;
  right: 0;
  bottom: -16px;
  width: 150px;
  height: 88px;
  border: 4px solid #002f31;
}

.bottom-group {
  min-height: 180px;
}

.bottom-group .bottom-left {
  width: 150px;
  height: 92px;
}

.bottom-group .bottom-right {
  width: 210px;
  height: 105px;
  margin-left: 56px;
  margin-top: -6px;
}

.trip-breakdown-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.trip-breakdown-btn-wrap a{
	margin: auto !important;
}

.trip-breakdown-btn:hover {
  background: #ffd21a;
  color: #111;
}

.trip-breakdown-btn-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #111;
  color: #f4c400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Tablet */
@media (max-width: 991px) {
  .trip-breakdown-header h2 {
    font-size: 34px;
  }

  .trip-breakdown-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0px 10px;
  }

  .reverse-mobile .trip-breakdown-left{
  	order: 2;
  }

  .reverse-mobile .trip-breakdown-right{
  	order: 1;
  }

  .reverse-mobile .trip-breakdown-left{
  	margin-bottom: 30px;
  }

  .reverse-mobile .trip-breakdown-right{
  	margin-bottom: 0px;
  }

  .trip-breakdown-divider {
    display: none;
  }

  .trip-breakdown-col {
    gap: 24px;
  }

  .trip-step-head h3 {
    font-size: 22px;
  }

  .trip-step-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .top-group,
  .mid-group,
  .bottom-group {
    min-height: auto;
  }

  .top-group .img-large,
  .mid-group .mid-left,
  .bottom-group .bottom-right {
    width: 100%;
    height: 220px;
    margin: 0;
  }

  .top-group .left-float,
  .mid-group .mid-right,
  .bottom-group .bottom-left {
    position: relative;
    width: 62%;
    height: 130px;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -24px;
    margin-left: auto;
    border: 4px solid #002f31;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .trip-breakdown-section {
    padding: 36px 0px 40px;
    margin-top: 40px;
  }

  .trip-breakdown-section:before{
  	height: 40px;
  	top: -60px;
  }
  .trip-breakdown-section:after{
  	height: 40px;
  	top: 60px;
  }

  .trip-breakdown-header {
    margin-bottom: 26px;
  }

  .trip-breakdown-header h2 {
    font-size: 32px;
  }

  .trip-step-card {
    padding: 20px 18px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 30px;
    flex-basis: 56px;
  }

  .trip-step-head h3 {
    font-size: 24px;
  }

  .text-center{
  	text-align: center;
  }

  .trip-step-card p {
    font-size: 18px;
    line-height: 1.75;
  }

  .top-group .img-large,
  .mid-group .mid-left,
  .bottom-group .bottom-right {
    height: 180px;
  }

  .top-group .left-float,
  .mid-group .mid-right,
  .bottom-group .bottom-left {
    width: 70%;
    height: 100px;
    margin-top: -18px;
  }

  .trip-breakdown-btn {
    width: 100%;
    justify-content: center;
  }
}



.trip-reviews-faq-section {
  padding: 120px 20px 60px;
  background: #f5f5f2;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 18px 18px;
}

.trip-reviews-faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trip-section-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0, 38, 38, 1);
}

/* Reviews */
.trip-reviews-wrap {
  margin-bottom: 80px;
}

.single-trip .wprs_unslider-arrow{
	background-color: rgba(253, 195, 15, 1) !important;
    opacity: 1 !important;
}

/* FAQ */
.trip-faq-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.trip-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trip-faq-item {
  border-bottom: 1px solid rgba(32, 33, 84, 1);
}

.trip-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  outline: none !important;
}

.trip-faq-question > span{
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #000;
  font-family: 'Proxima Nova';
}

.trip-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f4c400;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.trip-faq-answer {
  display: none;
  padding: 0 44px 16px 0;
}

.trip-faq-answer p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #000;
}

.trip-faq-item.active .trip-faq-answer {
  display: block;
}

.trip-faq-item.active .trip-faq-icon {
  transform: rotate(90deg);
}

/* Tablet */
@media (max-width: 991px) {
  .trip-section-title {
    font-size: 40px;
    margin-bottom: 22px;
  }

  .trip-reviews-wrap {
    margin-bottom: 60px;
  }

  .trip-faq-question {
    font-size: 19px;
  }

  .trip-faq-answer p,
  .trip-shortcode-placeholder {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .trip-reviews-faq-section {
    padding: 70px 10px 40px;
  }

  .trip-section-title {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .trip-reviews-wrap {
    margin-bottom: 42px;
  }

  .trip-reviews-slider-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trip-review-nav {
    display: none;
  }

  .trip-reviews-placeholder {
    min-height: 110px;
    padding: 18px;
  }

  .trip-faq-question {
    padding: 16px 0 14px;
    font-size: 16px;
    gap: 12px;
  }

  .trip-faq-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 16px;
  }

  .trip-faq-answer {
    padding: 0 0 14px 0;
  }

  .trip-faq-answer p {
    font-size: 18px;
    line-height: 1.75;
  }
}


.related-trips-container{
	max-width: 1180px;
  margin: 0 auto;
}

.related-trips-title-wrap h2{
	text-align: center;
  color: rgba(139, 24, 29, 1);
  font-family: 'Proxima Nova';
  font-weight: 700;
  font-size: 43px;
  line-height: 80px;
  letter-spacing: 2px;
}
.related-trips-section .related-trips{
	padding-top: 20px;
}
.related-trips-section .vc_row{
	margin: 0px;
}
.related-trips-section .box3Layout{
	margin-right: 0px !important;
}