body {
  background: #f9f9f9;
}
.hero-content.single.itinerary h1 {
  color: rgba(255, 255, 255, 0.68);
  font-size: 50px;
  max-width: 900px;
  margin: 0 auto;
}

/* Sticky Tab Navigation */

.tab-navigation {
  width: 100%;
}
.tab-navigation.sticky {
  position: fixed;
  top: 120px;

  z-index: 9;
}

.castle-container.tab {
  position: relative;
  background: var(--secondary);
  border-radius: 10px;
  border: 3px solid var(--color-yellow);
  max-width: 100%;
  width: 850px;
  padding: 0;
}

.tabs {
  display: flex;
  justify-content: space-between;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tabs::-webkit-scrollbar {
  height: 4px;
}

.tabs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.tabs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.tab-btn {
  color: white;
  padding: 18px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-block;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
  background: var(--primary);
}

/* Main Content */
.trip-content {
  padding-top: 40px;
  min-height: 100vh;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.5fr 400px;
  gap: 50px;
}
/* Trip Info Grid */
.trip-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 30px;
  border-radius: 10px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-item .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.info-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-item .label {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 4px;
  font-weight: 600;
}

.info-item .value {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.tab-content {
  padding: 10px 20px;
  border-radius: 12px;
}

.tab-content:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h2 {
  font-size: 30px;
  margin: 10px 0;
  color: var(--secondary);
  font-weight: 600;
  font-family: var(--primary-font);
}

.tab-content h3 {
  font-size: 20px;

  color: #000;
}

.tab-content p {
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  color: #525252;
  margin-bottom: 15px;
}
.tab-content ul {
  margin-bottom: 40px;
}
.tab-content li {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 30px;
  font-family: var(--primary-font);
  color: #404040;
}
/* Pricing Sidebar - STICKY */

.pricing-sidebar {
  position: relative;
}

.price-card {
  border: 3px solid var(--secondary);
  border-radius: 20px;
  padding: 30px 0;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
  font-family: var(--primary-font);
}

.price-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
  text-align: center;
  font-size: 14px;
  margin: 0;
  color: #3b3b3b;
  background: #fff;
  border: 1px solid var(--secondary);
  padding: 0 15px;
  font-weight: 400;
  position: absolute;
  top: -15px;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 5;
  white-space: nowrap;
}
.price-main {
  padding: 10px 0;
}
.price-main.blue {
  background: var(--secondary);
}
.price-main.info {
  border-bottom: 0.3px solid var(--secondary);
}
.price-card.supplements {
  margin-bottom: 25px;
  padding-bottom: 0;
}
.price-card.supplements p {
  font-size: 18px;
}
.price-card.supplements .price-main.info {
  border-top: 0.3px solid var(--secondary);
  border-bottom: none;
}
.price-main p {
  font-size: 20px;
  margin: 10px;

  display: flex;
  text-align: center;
  justify-content: center;
}
.price-main.blue p {
  color: rgba(255, 255, 255, 0.8);
}
.price-main.info p {
  color: rgba(0, 0, 0, 0.75);
  font-weight: 400;
}

.price-main.info.conversion p {
  font-weight: 600;
}
.price-amount {
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
}

.currency,
.amount {
  font-size: 28px;
}

.per {
  font-size: 20px;
}

.price-amount.info {
  color: var(--secondary);
}

.price-card .hero-btn {
  position: absolute;
  bottom: -25px;

  left: 50%;
  transform: translateX(-50%);
  color: var(--secondary);
  padding: 10px 40px;

  z-index: 8;
  white-space: nowrap;
}

.price-card .hero-btn:hover {
  color: white;
  background: var(--secondary);
}
.trip-map {
  margin-top: 0;

  border-radius: 10px;
}

.trip-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tablet Responsive - 900px */
@media (max-width: 900px) {
  .tab-navigation {
    position: sticky;
  }
  .tab-navigation.sticky {
    width: 100%;
  }

  .castle-container.tab {
    border-radius: 0px;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }

  .pricing-sidebar {
    order: 2;
  }

  .trip-details {
    order: 1;
  }

  .pricing-sticky-wrapper {
    position: relative;

    position: static;
  }

  .tabs {
    justify-content: space-between;
  }

  .tab-btn {
    padding: 15px 20px;
  }
}

/* Mobile Responsive - 768px */
@media (max-width: 768px) {
  .tab-navigation {
    top: 70px;
  }

  .tab-btn {
    padding: 12px 15px;
    font-size: 14px;
  }

  .trip-content {
    padding: 20px 0;
  }

  .content-grid {
    gap: 30px;
  }

  .price-card h3 {
    font-size: 12px;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .tab-btn {
    padding: 12px 12px;
    font-size: 13px;
  }

  .trip-info-grid {
    padding: 15px;
    gap: 15px;
  }

  .info-item .icon {
    width: 20px;
    height: 20px;
  }

  .info-item .value {
    font-size: 13px;
  }

  .price-inr .amount {
    font-size: 20px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 12px;
  }
}
/* ================
Tentative itinerary
=================== */
.itinerary-wrapper h3 {
  color: rgba(13, 13, 13, 0.8);

  font-weight: 600;
}
.itinerary-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.itinerary-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--primary-font);
  min-width: 40px;
  position: relative;
}

.itinerary-day {
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 20px;
  color: var(--secondary);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.itinerary-left img {
  width: 40px;
  height: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content */
.itinerary-content {
  flex: 1;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* Toggle Icon */
.itinerary-toggle {
  font-size: 20px;
  color: var(--secondary);
  transform-origin: center;
  font-size: 28px;
}

.day-badge {
  position: absolute;
  top: 18px;
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
}

.day-label {
  position: absolute;
  top: 40px;
  font-size: 14px;
  font-weight: 600;

  color: var(--secondary);
}
.itinerary-body {
  flex: 1;
  overflow: hidden;
}

.itinerary-body h3 {
  font-weight: 600;
  line-height: 1.6;
  margin: 0;

  transition: color 0.3s ease;
}

.itinerary-item.active .itinerary-body h3 {
  color: var(--secondary);
}

.itinerary-body > p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.itinerary-item.active .itinerary-body > p {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 16px;
  margin-bottom: 16px;
}

.itinerary-meta {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);

  display: flex;
  gap: 40px;

  background: #efefef;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  border-radius: 5px;
}

.itinerary-item.active .itinerary-meta {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  padding: 16px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-item img {
  width: 30px;
  height: 30px;
}

.meta-item span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.77);

  line-height: 1.4;
}

.meta-item strong {
  display: block;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 13px;
}

.itinerary-item.active .itinerary-toggle {
  transform: rotate(45deg);
}
#dates {
  background: #efefef;
  margin: 12px;
  border-radius: 20px;
}
#dates h2 {
  margin: 20px 15px;
}

.departure-item {
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #d9d9d9;
  gap: 20px;
}

.departure-dates {
  padding-bottom: 10px;
}
.departure-dates > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.departure-dates > div:first-child h2 {
  margin: 0;
}

.departure-dates > div:first-child h3 {
  display: none;
}

.departure-dates > div:first-child select {
  padding: 10px 30px;
  border: 2px solid var(--secondary);
  border-radius: 30px;
  background-color: white;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  min-width: 120px;
  outline: none;
  transition: all 0.3s ease;
}

.departure-dates > div:first-child select:hover {
  border-color: var(--secondary);
  box-shadow: 0 2px 8px rgba(0, 116, 193, 0.2);
}

.departure-dates > div:first-child select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 116, 193, 0.1);
}

/* Tablet */
@media (max-width: 768px) {
  .departure-dates > div:first-child select {
    width: 100%;
    min-width: auto;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .departure-dates > div:first-child h2 {
    font-size: 20px;
  }

  .departure-dates > div:first-child select {
    padding: 8px 20px;
    font-size: 14px;
  }
}
.departure-item .date-info {
  font-family: var(--primary-font);
  color: rgba(0, 0, 0, 0.77);
  max-width: 100%;
  width: 250px;
}
.departure-item .date-info p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.departure-item .rate-info {
  text-align: center;
}

.departure-item .rate-info p {
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 8px;
}
.departure-item .hero-btn {
  padding: 8px 24px;
  text-align: center;
  background: var(--secondary);
  color: #fff;
  border: none;
}

.date-info .label,
.date-info .seats,
.rate-info .label {
  display: none;
}

.package-section ul {
  list-style: none;
  margin: 0;

  padding: 0 10px;
}

.package-section ul li {
  position: relative;
  padding: 0 30px;
}

.package-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  background-image: url("../images/icons/icon-includes.svg");
  background-size: contain;
}
.package-section {
  margin-top: 10px;
}
.package-section.excludes ul li::before {
  content: "";
  background-image: url("../images/icons/icon-excludes.svg");
}

/* Additional Information */
.additional-information {
  background: rgba(2, 108, 181, 0.1);
  border-radius: 20px;

  padding: 20px;
}

.info-box h2 {
  margin: 10px 15px;
}
.info-box.red h2 {
  color: #b51602;
}

.additional-information li::marker {
  font-size: 20px;
  margin-left: 0;
  color: var(--secondary);
}
.tab-content ul li.long-text {
  line-height: 26px;
}
.additional-information ul {
  margin: 0 20px;
  margin-bottom: 20px;
}

.related-section .section-title {
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .content-grid {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }

  .tab-content h2 {
    text-align: left;
    font-size: 28px;
  }
  .pricing-sticky-wrapper {
    padding: 20px;
  }
}
/* Tablet Responsive - 900px */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .pricing-sidebar {
    margin: 20px;
  }
  .trip-details {
    order: 1 !important;
  }

  .pricing-sticky-wrapper {
    position: static !important;
    top: auto !important;
  }

  .tabs {
    justify-content: space-between;
  }

  .tab-btn {
    padding: 15px 20px;
  }

  .itinerary-item {
    padding: 20px 0;
    gap: 20px;
  }
}
@media (min-width: 769px) {
  .departure-item .date-info p:first-of-type {
    display: block;
    margin-right: 8px;
  }

  .departure-item .date-info p:last-of-type {
    display: block;
    font-weight: 400;
    font-size: 14px;
  }
}

/* Mobile Responsive - 768px */
@media (max-width: 768px) {
  .castle-container.tab {
    border-radius: 8px;
    border-width: 2px;
  }

  .tab-btn {
    padding: 12px 15px;
    font-size: 14px;
  }

  .tab-content h3 {
    font-size: 18px;
  }

  .tab-content p,
  .tab-content li {
    font-size: 15px;
    line-height: 24px;
  }

  .trip-content {
    padding: 20px 0;
  }

  .content-grid {
    gap: 30px;
  }

  .price-card h3 {
    font-size: 12px;
    padding: 8px 15px;
  }

  .amount,
  .currency {
    font-size: 25px;
  }
  .price-main p {
    font-size: 15px;
  }

  .itinerary-item {
    gap: 30px;
    padding: 20px 0;
  }

  .itinerary-left {
    min-width: 35px;
  }

  .itinerary-left img {
    width: 35px;
    height: 35px;
  }

  .day-badge {
    font-size: 16px;
    top: 12px;
  }

  .day-label {
    font-size: 12px;
    top: 33px;
  }

  .itinerary-toggle {
    font-size: 24px;
  }

  .trip-info-grid {
    gap: 20px;
  }

  .info-item .label {
    font-size: 13px;
  }

  .info-item .value {
    font-size: 15px;
  }

  .departure-item {
    display: block;
    padding: 20px;
  }

  .date-info .label,
  .date-info .seats,
  .rate-info .label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    font-family: var(--primary-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 80px;
  }

  .departure-item .rate-info {
    margin-bottom: 15px;
    margin-right: 0;
    text-align: left;
  }

  .date-info .label {
    float: left;
  }

  .date-info p:first-of-type {
    display: block;
    margin-left: 80px;
    text-align: right;
    margin-bottom: 8px;
  }

  .date-info .seats {
    float: left;
    clear: left;
  }

  .date-info p:last-of-type {
    display: block;
    margin-left: 80px;
    text-align: right;
    margin-bottom: 8px;
  }

  .rate-info {
    display: block;
    clear: both;
    overflow: hidden;
  }

  .rate-info .label {
    float: left;
  }

  .rate-info p {
    display: block;
    margin-left: 80px;
    text-align: right;
  }

  .departure-item .hero-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  .departure-item .rate-info p {
    font-size: 15px;
  }

  .package-section ul li::before {
    top: 4px;
  }
  .itinerary-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .itinerary-item.active .itinerary-meta {
    max-height: 300px; /* Increased to accommodate 2 rows */
  }

  .meta-item {
    gap: 8px;
  }

  .meta-item img {
    width: 24px;
    height: 24px;
  }

  .meta-item span {
    font-size: 13px;
  }

  .meta-item strong {
    font-size: 12px;
  }
}

/* Medium Mobile - 600px */
@media (max-width: 600px) {
  .castle-container.tab {
    margin: 0;
  }

  .tab-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .tab-content h2 {
    font-size: 26px;
  }

  .price-card {
    padding: 25px 0;
  }

  .price-main {
    padding: 8px 0;
  }

  .currency {
    font-size: 26px;
  }

  .per {
    font-size: 18px;
  }

  .pax {
    font-size: 18px;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .castle-container.tab {
    margin: 0;
    border-radius: 6px;
  }

  .tab-btn {
    padding: 10px 10px;
    font-size: 12px;
  }

  .trip-info-grid {
    padding: 12px;
    gap: 12px;
  }

  .info-item {
    gap: 10px;
  }

  .info-item .icon {
    width: 20px;
    height: 20px;
  }

  .info-item .label {
    font-size: 12px;
  }

  .info-item .value {
    font-size: 13px;
  }

  .tab-content {
    padding: 8px 15px;
  }

  .tab-content h3 {
    font-size: 16px;
  }

  .tab-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .tab-content li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .itinerary-item {
    gap: 12px;
  }

  .itinerary-left {
    min-width: 30px;
  }

  .itinerary-left img {
    width: 30px;
    height: 30px;
  }

  .day-badge {
    font-size: 14px;
    top: 12px;
  }

  .day-label {
    font-size: 12px;
    top: 30px;
  }

  .itinerary-body h3 {
    line-height: 1.6;
    padding: 0 8px;
  }

  .itinerary-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .itinerary-item.active .itinerary-meta {
    max-height: 400px;
  }

  .meta-item {
    gap: 10px;
  }

  .meta-item img {
    width: 20px;
    height: 20px;
  }

  .meta-item span {
    font-size: 11px;
  }

  .meta-item strong {
    font-size: 12px;
  }
  .price-card {
    padding: 20px 0;
    margin-bottom: 60px;
  }

  .price-card h3 {
    font-size: 11px;
    padding: 6px 12px;
    top: -25px;
  }

  .currency,
  .amount {
    font-size: 18px;
  }

  .per {
    font-size: 10px;
  }

  .pax.info.supplements {
    font-size: 13px;
  }

  .price-card .hero-btn {
    padding: 12px 30px;
    font-size: 14px;
    bottom: -20px;
  }
  .departure-item {
    padding: 15px;
    gap: 6px 12px;
  }

  .date-info .label,
  .date-info .seats,
  .rate-info .label {
    font-size: 11px;
  }

  .departure-item .date-info p,
  .departure-item .rate-info p {
    font-size: 14px;
  }

  .departure-item .hero-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 6px;
  }
}
@media (max-width: 1200px) {
  .hero-content.single.itinerary h1 {
    font-size: 40px;

    line-height: 1.3;
  }
}
@media (max-width: 900px) {
  .hero-content.single.itinerary {
    padding-bottom: 0;

    background-color: var(--secondary);
  }

  .hero-content.single.itinerary h1 {
    font-size: 22px;
    line-height: 28px;
    color: #fff;
  }
  .hero-content.single.itinerary h1 br {
    display: none;
  }
  .departure-item {
    grid-template-columns: 1.5fr 1fr 0.8fr;
    gap: 15px;
    padding: 18px;
  }
}
@media (max-width: 768px) {
  .hero-content.single.itinerary h1 {
    font-size: 20px;
    line-height: 26px;
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .hero-content.single.itinerary h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 480px) {
  .hero-content.single.itinerary {
    bottom: 55px;
  }

  .hero-content.single.itinerary h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
