.tour-header {
  background: #faaf00;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.days-badge {
  color: #212529;
  border-radius: 8px;
  text-align: center;
  min-width: 120px;
  position: relative;
  right: 15px;
}

.days-number {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.days-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.tour-type-badge {
  background-color: #9e0516;
  color: white;
  padding: 8px 20px;
  white-space: nowrap;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  right: 5px;
  display: inline-block;
  margin-bottom: 15px;
  top: 10px;
}

/* Tour Title */
.tour-title {
  font-size: 48px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Rating Section */
.rating-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stars {
  color: #ffc107;
  font-size: 20px;
}

.rating-text {
  color: #6c757d;
  font-size: 16px;
  margin: 0;
}

.rating-divider {
  color: #6c757d;
  font-weight: 300;
}

.reviews-link {
  color: #ff6b35;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.reviews-link:hover {
  text-decoration: underline;
}

/* Tour Info Section */
.tour-info-section {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tour-info-icon {
  color: #04136f;
  font-size: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.tour-info-text {
  font-size: 16px;
  color: #495057;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

.info-divider {
  color: #495057;
  margin: 0 5px;
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  border: none;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: transparent;
  width: 10%;
  color: #fff;
  text-align: center;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}

/* Responsive Design */
@media (max-width: 991px) {
  .tour-title {
    font-size: 36px;
  }

  .days-badge {
    padding: 20px 30px;
    min-width: 100px;
    display: none;
  }

  .days-number {
    font-size: 48px;
  }

  .days-text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .tour-header {
    padding: 20px;
  }

  .days-badge {
    padding: 15px 25px;
    min-width: 90px;
    margin-bottom: 20px;
  }

  .days-number {
    font-size: 40px;
  }

  .days-text {
    font-size: 16px;
  }

  .tour-title {
    font-size: 28px;
  }

  .stars {
    font-size: 18px;
  }

  .rating-text,
  .reviews-link {
    font-size: 14px;
  }

  .tour-info-icon {
    font-size: 20px;
  }

  .tour-info-text {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .tour-title {
    font-size: 22px;
  }

  .days-badge {
    padding: 12px 20px;
    min-width: 80px;
  }

  .days-number {
    font-size: 36px;
  }

  .days-text {
    font-size: 14px;
  }

  .tour-type-badge {
    font-size: 12px;
    padding: 6px 15px;
  }

  .rating-section {
    gap: 10px;
  }

  .stars {
    font-size: 16px;
  }

  .rating-text,
  .reviews-link {
    font-size: 13px;
  }

  .tour-info-text {
    font-size: 13px;
  }
}

.facts-attractions-section {
  background: #fff;
  border-radius: 8px;
}

.section-divider {
  border-left: 3px solid #faaf00;
  height: 100%;
  min-height: 200px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 30px;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.fact-item:last-child {
  margin-bottom: 0;
}

.fact-icon {
  background-color: #04136f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fact-icon i {
  color: #ffffff;
  font-size: 18px;
}

.fact-content {
  flex: 1;
}

.fact-label {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  margin: 0;
  line-height: 2.4;
}

.fact-value {
  font-size: 16px;
  font-weight: 400;
  color: #495057;
  margin: 0;
  display: inline;
}

/* Core Attractions Styling */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.attraction-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.attraction-bullet {
  width: 12px;
  height: 12px;
  background-color: #04136f;
  border-radius: 50%;
  flex-shrink: 0;
}

.attraction-name {
  font-size: 16px;
  font-weight: 400;
  color: #212529;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991px) {
  .section-divider {
    border-left: none;
    border-top: 3px solid #faaf00;
    height: auto;
    min-height: 0;
    margin: 30px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .fact-label,
  .fact-value,
  .attraction-name {
    font-size: 16px;
  }

  .fact-icon {
    width: 36px;
    height: 36px;
  }

  .fact-icon i {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .fact-item {
    margin-bottom: 20px;
  }

  .fact-label,
  .fact-value,
  .attraction-name {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 22px;
  }

  .fact-icon {
    width: 32px;
    height: 32px;
  }

  .fact-icon i {
    font-size: 14px;
  }

  .attraction-bullet {
    width: 10px;
    height: 10px;
  }

  .fact-label,
  .fact-value,
  .attraction-name {
    font-size: 14px;
  }
}

.sidebar-area {
  background: transparent;
}

/* Widget Common Styles */
.srilanka-widget {
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.srilanka-widget_title {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
}

.speciality-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.speciality-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.speciality-icon {
  width: 40px;
  height: 40px;
  background-color: #04136f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.speciality-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.speciality-icon i {
  font-size: 24px;
  color: #212529;
}

.speciality-text {
  font-size: 13px;
  font-weight: 500;
  color: #212529;
  text-align: center;
}

@media (max-width: 767px) {
  .srilanka-widget {
    padding: 20px;
  }

  .speciality-icons {
    gap: 15px;
  }

  .speciality-icon {
    width: 50px;
    height: 50px;
  }

  .speciality-icon i {
    font-size: 20px;
  }

  .speciality-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .speciality-icons {
    gap: 12px;
  }

  .speciality-icon {
    width: 45px;
    height: 45px;
  }

  .speciality-icon i {
    font-size: 18px;
  }
}

/* Super Deal Price Section */
.widget-deal-price {
  text-align: center;
}

.deal-label {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 5px;
}

.deal-title {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 10px;
}

.deal-price {
  font-size: 32px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 15px;
  font-family: auto;
}

.deal-price span {
  font-size: 30px;
}

.deal-note {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-yellow {
  background-color: #faaf00;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  margin-right: 4%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  background-color: #faaf00;
}

.btn-dark {
  background-color: #212529;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #000;
}

.deal-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
}

/* Stats Section */
.stats-section {
  padding: 20px 0;
}

.stats-title {
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

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

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: #6c757d;
}

/* Speciality Icons Section */
.speciality-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.speciality-icon {
  width: 40px;
  height: 40px;
  background-color: #04136f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speciality-icon i {
  font-size: 20px;
  color: #ffffff;
}

/* Why Choose Section */
.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.why-choose-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-choose-icon {
  width: 35px;
  height: 35px;
  background-color: #04136f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-choose-icon i {
  font-size: 16px;
  color: #ffffff;
}

.why-choose-text {
  flex: 1;
  font-size: 14px;
  color: #495057;
  line-height: 1.6;
}

/* Features Grid */
.trip-details-container {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.trip-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.trip-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.trip-detail-icon {
  width: 40px;
  height: 40px;
  background-color: #04136f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trip-detail-icon i {
  font-size: 18px;
  color: #ffffff;
}

.trip-detail-content {
  flex: 1;
}

.trip-detail-label {
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 5px;
  line-height: 1.2;
}

.trip-detail-value {
  font-size: 15px;
  font-weight: 400;
  color: #495057;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 767px) {
  .trip-details-container {
    padding: 20px;
  }

  .trip-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trip-detail-icon {
    width: 45px;
    height: 45px;
  }

  .trip-detail-icon i {
    font-size: 22px;
  }

  .trip-detail-label {
    font-size: 16px;
  }

  .trip-detail-value {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .trip-detail-icon {
    width: 40px;
    height: 40px;
  }

  .trip-detail-icon i {
    font-size: 20px;
  }

  .trip-detail-label {
    font-size: 15px;
  }
}

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

.feature-icon {
  width: 40px;
  height: 40px;
  background-color: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 18px;
  color: #212529;
}

.feature-text {
  font-size: 13px;
  color: #212529;
  font-weight: 500;
  line-height: 1.3;
}

/* Itinerary Section */
.itinerary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.itinerary-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e9ecef;
}

.itinerary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.itinerary-icon {
  color: #28a745;
  font-size: 16px;
  margin-top: 2px;
}

.itinerary-text {
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
}

.itinerary-day {
  font-weight: 600;
  color: #212529;
}

/* Price Details Section */
.price-cards {
}

.price-card {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.price-card.emi {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.price-card-label {
  font-size: 14px;
  color: #fff;
  margin-bottom: 5px;
}

.price-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.price-card-amount {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.price-card-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.price-card-btn {
  background-color: #212529;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-card-btn:hover {
  background-color: #000;
}

/* Responsive Design */
@media (max-width: 991px) {
  .deal-buttons {
    flex-direction: column;
  }

  .btn-yellow,
  .btn-dark {
    width: 100%;
    margin-right: 0;
  }

  .stats-grid {
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .srilanka-widget {
    padding: 20px;
  }

  .speciality-icon {
    width: 45px;
    height: 45px;
  }

  .speciality-icon i {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .deal-price {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-value {
    font-size: 20px;
  }

  .stat-label {
    font-size: 11px;
  }
}

.pricing-section {
  display: flex;
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid #dee2e6;
}

.pricing-card:last-child {
  border-right: none;
}

.pricing-title {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  margin: 0 0 20px 0;
}

.pricing-amount {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .pricing-section {
    flex-direction: column;
    border-radius: 0;
  }

  .pricing-card {
    padding: 30px 20px;
    border-right: none;
    border-bottom: 1px solid #dee2e6;
  }

  .pricing-card:last-child {
    border-bottom: none;
  }

  .pricing-title {
    font-size: 16px;
    margin: 0 0 15px 0;
  }

  .pricing-amount {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .pricing-card {
    padding: 25px 15px;
  }

  .pricing-title {
    font-size: 15px;
    margin: 0 0 12px 0;
  }

  .pricing-amount {
    font-size: 20px;
  }
}

/* Tour Plan Section */
.tour-plan {
  background: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}

.inner-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #000;
}

/* Accordion Styling */
.accordion {
  border: none;
}

.accordion-card {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 20px;
  border: none;
  width: 100%;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: #000;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.accordion-button.collapsed::after {
  transform: rotate(0deg);
}

.accordion-collapse {
  border-top: 1px solid #e0e0e0;
}

.accordion-body {
  padding: 30px 25px;
  background: #fff;
}

/* Itinerary List */
.itinerary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.itinerary-list li {
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.itinerary-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

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

.itinerary-list li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
  line-height: 1.5;
}

.itinerary-list li p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Itinerary Images */
.itinerary-images {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.itinerary-images::-webkit-scrollbar {
  height: 6px;
}

.itinerary-images::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.itinerary-images::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.itinerary-images img {
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Itinerary Info */
.itinerary-info {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  flex-wrap: wrap;
}

.itinerary-info p {
  margin: 0;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.itinerary-info i {
  font-size: 16px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .accordion-button {
    font-size: 15px;
    padding: 15px 18px;
    padding-right: 45px;
  }

  .accordion-body {
    padding: 20px 15px;
  }

  .itinerary-list li {
    padding-left: 18px;
  }

  .itinerary-list li strong {
    font-size: 14px;
  }

  .itinerary-list li p {
    font-size: 13px;
  }

  .itinerary-images {
    gap: 10px;
  }

  .itinerary-images img {
    height: 100px;
  }

  .itinerary-info {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .inner-title {
    font-size: 20px;
  }

  .accordion-button {
    font-size: 14px;
    padding: 12px 15px;
    padding-right: 40px;
  }

  .itinerary-images img {
    height: 90px;
  }
}

/* Tour Details Section */
.tour-details-section {
  padding: 40px 0;
  background: #fff;
}

.tour-details-header {
  margin-bottom: 30px;
}

.tour-details-title {
  font-size: 36px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.tour-details-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Tab Navigation */
.tour-tabs {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 0;
}

.tour-tabs .nav-item {
  margin-bottom: 0;
}

.tour-tabs .nav-link {
  border: none;
  background: #fff;
  color: #666;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.tour-tabs .nav-link:hover {
  color: #2c2c2c;
  border-color: transparent;
}

.tour-tabs .nav-link.active {
  background: #04136f;
  color: #ffffff;
  border-color: #04136f;
  font-weight: 600;
}

/* Tab Content */
.tour-tab-content {
  padding: 30px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-top: none;
}

/* Flight Table */
.flight-table-wrap {
  overflow-x: auto;
}

.flight-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.flight-table thead tr {
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
}

.flight-table thead th {
  padding: 15px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
}

.flight-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

.flight-table tbody tr:last-child {
  border-bottom: none;
}

.flight-table tbody td {
  padding: 20px;
}

.flight-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.airport-code {
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
}

.flight-time {
  font-size: 16px;
  color: #666;
}

.flight-icon {
  text-align: center;
  color: #999;
  font-size: 18px;
}

.airline-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.airline-name {
  font-size: 16px;
  font-weight: 600;
  color: #faaf00;
}

.airline-info i {
  color: #faaf00;
}

/* Accommodation Content */
.accommodation-content {
  background: #fff;
  padding: 30px;
}

.accommodation-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 25px;
}

.accommodation-list li {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.8;
  margin-bottom: 12px;
}

.accommodation-note {
  font-size: 14px;
  color: #666;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

/* Reporting Table */
.reporting-table-wrap {
  overflow-x: auto;
}

.reporting-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.reporting-table thead tr {
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
}

.reporting-table thead th {
  padding: 15px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
}

.reporting-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

.reporting-table tbody tr:last-child {
  border-bottom: none;
}

.reporting-table tbody td {
  padding: 20px;
  font-size: 15px;
  color: #2c2c2c;
}

/* Responsive */
@media (max-width: 768px) {
  .tour-details-title {
    font-size: 28px;
  }

  .tour-tabs .nav-link {
    padding: 12px 20px;
    font-size: 14px;
  }

  .tour-tab-content {
    padding: 20px 15px;
  }

  .flight-table thead th,
  .flight-table tbody td,
  .reporting-table thead th,
  .reporting-table tbody td {
    padding: 12px 15px;
    font-size: 14px;
  }

  .airport-code {
    font-size: 16px;
  }

  .flight-time {
    font-size: 14px;
  }
}

.tour-details-note {
  font-size: 14px;
  margin-top: 15px;
}

/* Available Groups Section */
.available-groups-section {
  padding: 40px 0;
  background: #fff;
}

.available-groups-title {
  font-size: 36px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
}

.groups-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.group-card {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e0e0e0;
}

.group-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.group-date-box {
  padding: 25px 20px;
  position: relative;
}

.group-day {
  display: block;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}

.group-day::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  width: 30px;
  height: 1px;
  transform: rotate(45deg);
}

.group-date {
  font-size: 28px;
  font-weight: 400;
  color: #666;
  margin: 15px 0;
  line-height: 1;
}

.group-year {
  display: block;
  font-size: 13px;
  color: #999;
}

/* Sold Out State (if needed) */
.group-card.sold-out {
  opacity: 0.6;
  cursor: not-allowed;
}

.group-card.sold-out:hover {
  transform: none;
  box-shadow: none;
}

.group-card.sold-out::after {
  content: "sold out";
  display: block;
  padding: 10px;
  background: #fff;
  color: #666;
  font-size: 13px;
  border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  .available-groups-title {
    font-size: 28px;
  }

  .groups-container {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }

  .group-date-box {
    padding: 20px 15px;
  }

  .group-date {
    font-size: 24px;
  }

  .available-groups-section {
    text-align: center;
  }

  .facts-attractions-section {
    margin-bottom: 0px !important;
  }

  /* .tour-details-section {
            padding: 20px 0;
            padding-top: 0px;
        } */

  .description-table th,
  .description-table td {
    padding: 12px 25px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .groups-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.day-border {
  background: gray !important;
}

.book-form-popup-bg {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 1000 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.book-form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}

.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.booknow-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booknow-close-button:hover {
  background: #f0f0f0;
  border-color: #999;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.booknow-captcha-display {
  background: #f0f0f0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 5px;
}

.booknow-captcha-btn {
  width: 50px !important;
  height: 35px !important;
  padding: 0px !important;
}

@media (max-width: 600px) {
  .form-container {
    padding: 20px;
    width: 95%;
  }
}

.tour-note-section {
  background: #fff;
  border-radius: 8px;
  margin: 30px 0;
  margin-top: 0;
}

.note-title {
  font-size: 36px;
  font-weight: 400;
  color: #333;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
}

.note-list {
  list-style: none;
  padding: 8px;
  margin: 0;
}

.note-list > li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
  font-size: 16px;
}

.note-list > li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: bold;
  font-size: 20px;
}

.cancellation-list {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
  margin-top: 10px;
}

.cancellation-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
  font-size: 15px;
  counter-increment: item;
}

.cancellation-list li:before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .tour-note-section {
    padding: 20px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .note-title {
    font-size: 24px;
  }

  .note-list > li {
    font-size: 14px;
    padding-left: 20px;
  }

  .cancellation-list li {
    font-size: 13px;
    padding-left: 25px;
  }
}

/* Gallery Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-content {
  max-width: 90%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: 0.3s;
}

.gallery-close:hover,
.gallery-close:focus {
  color: #bbb;
}

.gallery-prev,
.gallery-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px 20px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s ease;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  z-index: 10001;
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.gallery-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .gallery-modal-content {
    max-width: 95%;
    max-height: 80vh;
  }

  .gallery-caption {
    width: 90%;
    font-size: 14px;
    bottom: 15px;
  }
}

@media (max-width: 768px) {
  .gallery-modal-content {
    max-width: 98%;
    max-height: 75vh;
  }

  .gallery-prev,
  .gallery-next {
    font-size: 24px;
    padding: 12px 16px;
    margin-top: -25px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-close {
    font-size: 35px;
    right: 20px;
    top: 15px;
  }

  .gallery-caption {
    width: 95%;
    font-size: 13px;
    padding: 10px 15px;
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-modal-content {
    max-width: 100%;
    max-height: 70vh;
  }

  .gallery-prev,
  .gallery-next {
    font-size: 20px;
    padding: 10px 12px;
  }

  .gallery-prev {
    left: 5px;
  }

  .gallery-next {
    right: 5px;
  }

  .gallery-close {
    font-size: 30px;
    right: 15px;
    top: 10px;
  }

  .gallery-caption {
    width: 98%;
    font-size: 12px;
    padding: 8px 10px;
    bottom: 5px;
  }
}

@media (orientation: landscape) and (max-height: 600px) {
  .gallery-modal-content {
    max-height: 90vh;
  }

  .gallery-caption {
    bottom: 5px;
    padding: 8px 15px;
  }
}

/* Professional Captcha Container */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Captcha Box */
.captcha-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 0 12px;
  height: 46px;
  min-width: 140px;
  transition: all 0.3s ease;
}

.captcha-box:hover {
  border-color: #adb5bd;
  background: #fff;
}

/* Captcha Code Display */
.captcha-code {
  font-family: "Courier New", Consolas, monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #495057;
  user-select: none;
  flex: 1;
}

/* Captcha Refresh Button */
.captcha-refresh {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin-left: 8px;
}

.captcha-refresh:hover {
  color: #495057;
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(180deg);
}

.captcha-refresh:active {
  transform: rotate(180deg) scale(0.9);
}

/* Captcha Input Field */
.captcha-input {
  flex: 1;
  height: 45px !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.captcha-input:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}

.captcha-input::placeholder {
  letter-spacing: normal;
  font-weight: 400;
}

/* Error State */
.captcha-container.error .captcha-box {
  border-color: #dc3545;
}

.captcha-container.error .captcha-input {
  border-color: #dc3545;
}

/* Responsive Design */
@media (max-width: 576px) {
  .captcha-container {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-box {
    width: 100%;
    justify-content: space-between;
  }

  .captcha-input {
    width: 100%;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  .captcha-box {
    background: #343a40;
    border-color: #495057;
  }

  .captcha-box:hover {
    background: #495057;
    border-color: #6c757d;
  }

  .captcha-code {
    color: #f8f9fa;
  }

  .captcha-refresh {
    color: #adb5bd;
  }

  .captcha-refresh:hover {
    color: #f8f9fa;
    background: rgba(255, 255, 255, 0.1);
  }
}
.widget_book.is-sticky {
  animation: slideInFromTop 0.3s ease-out;
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-20px);
    opacity: 0.8;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.widget_book {
  transition: box-shadow 0.3s ease-in-out;
}

.widget_book.is-sticky {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.sticky-placeholder {
  display: none;
  visibility: hidden;
}

@media (max-width: 768px) {
  .widget_book.is-sticky {
    width: calc(100% - 30px) !important;
    left: 15px;
    right: 15px;
  }
}

html {
  scroll-behavior: smooth;
}
.error-message {
  color: #dc3545;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}

.booknow-captcha-display {
  letter-spacing: 5px;
}
.accordion-collapse {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.accordion-collapse:not(.show) {
  max-height: 0;
}

.accordion-header {
  cursor: pointer;
}

.accordion-button {
  transition: all 0.3s ease;
}

.form-group {
  margin-bottom: 0px !important;
}

.foot-whatsapp-btn {
  display: none;
}

.whatsapp-btn-group-tour {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 9999;
}

.whatsapp-btn-group-tour i {
  font-size: 20px;
}

.whatsapp-btn-group-tour:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.enquiry-btn-group-tour {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 9999;
}

.enquiry-btn-group-tour i {
  font-size: 20px;
}

.enquiry-btn-group-tour:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.for-mob {
  display: none;
}

.form-group > i {
  top: 30px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.group-days-mob-div {
  display: none;
}

.whatsapp-btn-group-tour.pulse {
  animation: pulse 2s infinite;
}

.btn-refresh {
  background-color: #9e0516;
}

@media screen and (max-width: 480px) {
  .whatsapp-btn-group-tour {
    font-size: 16px;
    padding: 16px 10px;
    bottom: 0px;
    right: 0;
    left: 50%;
    width: 50%;
    border-radius: 0;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
  }

  .whatsapp-btn-group-tour i {
    font-size: 24px;
  }

  .enquiry-btn-group-tour {
    display: flex;
    font-size: 16px;
    padding: 16px 10px;
    bottom: 0px;
    right: auto;
    left: 0;
    width: 50%;
    border-radius: 0;
    justify-content: center;
    gap: 8px;
    background-color: #9e0516;
  }

  .enquiry-btn-group-tour i {
    font-size: 24px;
  }

  .whatsapp-btn-group-tour:hover,
  .enquiry-btn-group-tour:hover {
    transform: none;
  }

  .whatsapp-btn-group-tour:active,
  .enquiry-btn-group-tour:active {
    opacity: 0.8;
  }

  .for-web {
    display: none;
  }

  .widget_book {
    display: none;
  }

  .for-mob {
    display: block;
  }

  .group-days-mob-div {
    display: block;
    margin-bottom: 25px;
  }

  .group-days-mob {
    background-color: #9e0516;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border: none;
    color: #fff;
  }
}

@media screen and (max-width: 991x) { 

  .header-top {
    display: none !important;
  }

  .ot-menu-toggle {
    display: none !important;
  }
}