/* Tour Details Page - Clean Minimal Design */

/* Tour Details Hero Section */
.tour-details-hero {
  padding: 80px 0;
  color: #2c3e50;
  position: relative;
  overflow: hidden;
}

.tour-details-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(20,49,90,0.03)"/><circle cx="80" cy="80" r="1" fill="rgba(20,49,90,0.03)"/><circle cx="50" cy="50" r="2" fill="rgba(250,146,11,0.02)"/></svg>');
  z-index: 1;
}



.tour-details-image {
  position: relative;
}

.tour-details-image img {
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.tour-details-image:hover img {
  transform: translateY(-3px);
}

.tour-discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fa920b;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(250, 146, 11, 0.25);
}

.tour-category-badge {
  background: rgba(20, 49, 90, 0.1);
  color: #14315a;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(20, 49, 90, 0.2);
}

.tour-title {
  font-size: x-large;
  font-weight: 700;
  margin-bottom: 18px;
  color: #2c3e50;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tour-meta-info {
  display: flex;
  gap: 25px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(20, 49, 90, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.meta-item i {
  color: #14315a;
  font-size: 16px;
}

.meta-item span {
  font-weight: 600;
  color: #495057;
  font-size: 14px;
}

.tour-price-section .price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 28px;
  font-weight: 700;
  color: #14315a;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.original-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 22px;
  font-weight: 500;
}

.price-label {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}

.tour-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #495057;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 10px;
  border-left: 3px solid #14315a;
}

.tour-highlights {
  margin-bottom: 25px;
}

.tour-highlights h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.tour-highlights ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px;
}

.tour-highlights li {
  color: #495057;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(20, 49, 90, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tour-highlights li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: #14315a;
}

.tour-highlights li i {
  color: #fa920b;
  font-size: 14px;
  background: rgba(250, 146, 11, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.tour-actions .vs-btn {
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.tour-actions .vs-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.tour-actions .vs-btn:hover::before {
  left: 100%;
}

.tour-actions .vs-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Tour Tabs Navigation */
.tour-tabs-nav {
  margin-bottom: 30px;
}

.tour-tabs-nav .nav-tabs {
  border: none;
  background: #f8f9fa;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  justify-content: center;
}

.tour-tabs-nav .nav-link {
  border: 2px solid rgba(0, 0, 0, 0.05);
  background: transparent;
  color: #6c757d;
  padding: 12px 20px;
  border-radius: 6px;
  margin: 0 2px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.tour-tabs-nav .nav-link:hover {
  border-color: #14315a;
  color: #14315a;
  transform: translateY(-1px);
}

.tour-tabs-nav .nav-link.active {
  background: #14315a;
  border-color: #14315a;
  color: white;
  box-shadow: 0 3px 12px rgba(20, 49, 90, 0.25);
}

.tour-tabs-nav .nav-link i {
  margin-right: 6px;
  font-size: 14px;
}

/* Tour Content Sections */
.tour-overview-content h3 {
  color: #2c3e50;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  line-height: 1.3;
}

.tour-overview-content h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #14315a;
  border-radius: 1px;
}

.tour-overview-content p {
  color: #495057;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.tour-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 25px 0;
}

.detail-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.detail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: #14315a;
}

.detail-item h4 {
  color: #14315a;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.detail-item h4 i {
  margin-right: 6px;
  font-size: 18px;
}

.detail-item p {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 25px 0;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  padding: 12px;
  border-radius: 6px;
  color: #495057;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.include-item:hover {
  background: #14315a;
  color: white;
  transform: translateX(2px);
}

.include-item i {
  color: #28a745;
  font-size: 16px;
  background: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.include-item:hover i {
  color: #28a745;
}

.include-item span {
  font-weight: 500;
  font-size: 14px;
}

/* Tour Policies */
.tour-policies {
  margin-top: 35px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.tour-policies h4 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.policy-item {
  background: white;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.policy-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.policy-item h5 {
  color: #14315a;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.policy-item h5 i {
  font-size: 16px;
}

.policy-item p {
  color: #6c757d;
  line-height: 1.5;
  font-size: 13px;
  margin: 0;
}

/* Itinerary Styles */
.tour-itinerary h3 {
  color: #2c3e50;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.tour-itinerary h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #14315a;
  border-radius: 1px;
}

.itinerary-timeline {
  position: relative;
  padding-left: 20px;
}

/* .itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #14315a, #fa920b);
} */

.itinerary-day {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 3px solid #14315a;
  position: relative;
  transition: all 0.3s ease;
}

.itinerary-day:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.itinerary-day::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 25px;
  width: 12px;
  height: 12px;
  background: #14315a;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px rgba(20, 49, 90, 0.15);
}

.day-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.day-number {
  background: linear-gradient(45deg, #14315a, #1a4a7a);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(20, 49, 90, 0.25);
}

.day-header h4 {
  margin: 0;
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
}

.day-content p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.day-content ul {
  list-style: none;
  padding: 0;
}

.day-content li {
  padding: 4px 0;
  position: relative;
  padding-left: 18px;
  color: #495057;
  font-weight: 500;
  font-size: 13px;
}

.day-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 600;
  font-size: 12px;
}

/* Location Section */
.tour-location {
  text-align: center;
}

.tour-location h3 {
  color: #2c3e50;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 700;
}

.tour-location p {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 25px;
}

.location-info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
  align-items: start;
}

.location-details {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}

.location-details h4 {
  color: #14315a;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.location-details p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-details p i {
  color: #14315a;
  font-size: 14px;
}

.location-details ul {
  list-style: none;
  padding: 0;
}

.location-details li {
  color: #495057;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: #f8f9fa;
  border-radius: 4px;
  font-size: 14px;
}

.location-details li i {
  color: #28a745;
}

.location-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.location-map iframe {
  width: 100%;
  height: 280px;
  border: none;
}

/* Enhanced Gallery Styles */
.tour-gallery {
  padding: 20px 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h3 {
  color: #2c3e50;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.gallery-header h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #14315a, #fa920b);
  border-radius: 2px;
}

.gallery-header p {
  color: #6c757d;
  font-size: 18px;
  font-weight: 500;
  max-width: 500px;
  margin: 0 auto;
}

.gallery-showcase {
  margin-bottom: 40px;
}

.gallery-main {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-main:hover img {
  transform: scale(1.02);
}

.gallery-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(20, 49, 90, 0.1), rgba(250, 146, 11, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-main:hover::before {
  opacity: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item.gallery-large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:nth-child(1) img { height: 180px; }
.gallery-item:nth-child(2) img { height: 220px; }
.gallery-item:nth-child(3) img { height: 180px; }
.gallery-item:nth-child(4) img { height: 200px; }
.gallery-item:nth-child(5) img { height: 180px; }
.gallery-item:nth-child(6) img { height: 220px; }
.gallery-item:nth-child(7) img { height: 200px; }
.gallery-item:nth-child(8) img { height: 180px; }

/* Gallery Stats */
.gallery-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  border: 1px solid rgba(20, 49, 90, 0.1);
}

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

.stat-item::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(45deg, #14315a, #fa920b);
  border-radius: 2px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #14315a;
  margin-bottom: 5px;
  display: block;
}

.stat-label {
  color: #6c757d;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Remove old gallery overlay styles */
.gallery-overlay,
.gallery-link {
  display: none !important;
}

/* Reviews Section */
.tour-reviews h3 {
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.reviews-summary {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
}

.rating-overview {
  text-align: center;
  margin-bottom: 30px;
}

.average-rating {
  margin-bottom: 15px;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
  color: #14315a;
  display: block;
  margin-bottom: 8px;
}

.stars {
  margin: 10px 0;
}

.stars .fas {
  color: #fa920b;
  margin: 0 2px;
  font-size: 18px;
}

.stars .empty {
  color: #e9ecef;
}

.reviews-count {
  color: #6c757d;
  font-size: 15px;
  font-weight: 500;
}

.rating-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-bar span:first-child {
  min-width: 80px;
  color: #495057;
  font-weight: 500;
}

.progress {
  flex: 1;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(45deg, #14315a, #fa920b);
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.rating-bar span:last-child {
  color: #14315a;
  font-weight: 600;
  min-width: 25px;
}

.reviews-list {
  margin-bottom: 40px;
}

.review-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.review-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #14315a, #1a4a7a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 3px 10px rgba(20, 49, 90, 0.3);
}

.reviewer-details h5 {
  margin: 0;
  color: #2c3e50;
  font-size: 16px;
  font-weight: 600;
}

.reviewer-details span {
  color: #6c757d;
  font-size: 13px;
}

.review-rating {
  display: flex;
  gap: 1px;
}

.review-rating .fas {
  color: #fa920b;
  font-size: 14px;
}

.review-date {
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
}

.review-comment {
  color: #495057;
  line-height: 1.6;
  font-size: 15px;
}

.write-review {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
}

.write-review h4 {
  color: #2c3e50;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.review-form .form-group {
  margin-bottom: 20px;
}

.review-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 14px;
}

.rating-input {
  display: flex;
  gap: 3px;
}

.rating-input label {
  cursor: pointer;
  font-size: 20px;
  color: #e9ecef;
  transition: color 0.2s ease;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
  color: #fa920b;
}

/* Sidebar Styles */
.tour-sidebar {
  position: sticky;
  top: 25px;
}

.sidebar-widget {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.sidebar-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
  color: #2c3e50;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 35px;
  height: 2px;
  background: #14315a;
  border-radius: 1px;
}

.info-list .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.info-list .info-item:hover {
  padding-left: 6px;
}

.info-list .info-item:last-child {
  border-bottom: none;
}

.info-list .info-item i {
  color: #14315a;
  font-size: 16px;
  min-width: 16px;
}

.info-list .info-item div {
  flex: 1;
}

.info-list strong {
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 3px;
}

.info-list span {
  color: #6c757d;
  font-size: 13px;
}

.contact-info {
  margin: 18px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #495057;
  transition: all 0.2s ease;
}

.contact-item:hover {
  color: #14315a;
  transform: translateX(2px);
}

.contact-item i {
  color: #14315a;
  min-width: 14px;
  font-size: 14px;
}

.contact-item span {
  font-weight: 500;
  font-size: 13px;
}

/* Related Tours */
.related-tours {
  
  padding: 70px 0;
  position: relative;
}

.related-tours::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(20,49,90,0.02)"/><circle cx="90" cy="90" r="1" fill="rgba(20,49,90,0.02)"/></svg>');
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  color: #2c3e50;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #14315a;
  border-radius: 1px;
}

.section-title p {
  color: #6c757d;
  font-size: 16px;
  font-weight: 500;
  max-width: 450px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tour-details-hero {
    padding: 70px 0;
  }

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

  .tour-meta-info {
    gap: 20px;
  }

  .location-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .tour-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .includes-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .gallery-main img {
    height: 300px;
  }

  .gallery-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .tour-details-hero {
    padding: 50px 0;
  }

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

  .tour-meta-info {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .tour-actions {
    flex-direction: column;
    text-align: center;
  }

  .tour-highlights ul {
    grid-template-columns: 1fr;
  }

  .tour-tabs-nav .nav-tabs {
    flex-direction: column;
    padding: 6px;
  }

  .tour-tabs-nav .nav-link {
    padding: 10px 16px;
    margin-bottom: 6px;
    font-size: 13px;
  }

  .tour-details-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .gallery-main img {
    height: 250px;
  }

  .gallery-header h3 {
    font-size: 24px;
  }

  .gallery-stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .sidebar-widget {
    padding: 18px;
  }

  .tour-sidebar {
    position: static;
  }

  .day-header {
    flex-direction: column;
    text-align: center;
  }

  .day-number {
    margin-bottom: 6px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .tour-details-hero {
    padding: 40px 0;
  }

  .tour-details-image img {
    margin-bottom: 20px;
  }

  .tour-details-content {
    text-align: center;
  }

  .tour-highlights ul {
    grid-template-columns: 1fr;
  }

  .tour-actions {
    gap: 10px;
  }

  .tour-actions .vs-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

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

  .current-price {
    font-size: 26px;
  }

  .original-price {
    font-size: 20px;
  }

  .itinerary-timeline {
    padding-left: 12px;
  }

  .itinerary-day {
    padding: 15px;
  }

  .day-header h4 {
    font-size: 16px;
  }

  .location-map iframe {
    height: 200px;
  }

  .sidebar-widget {
    padding: 15px;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wow.fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.wow.fadeInLeft {
  animation: fadeInLeft 0.6s ease-out;
}

.wow.fadeInRight {
  animation: fadeInRight 0.6s ease-out;
}

/* Gallery Page Styles */

/* Gallery Hero Section */
.gallery-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  z-index: 1;
}

.gallery-hero .container {
  position: relative;
  z-index: 2;
}

.gallery-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.gallery-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.gallery-stats-hero {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.gallery-stats-hero .stat-item {
  text-align: center;
}

.gallery-stats-hero .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-stats-hero .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.gallery-hero-image:hover img {
  transform: scale(1.02);
}

/* Gallery Filters */
.gallery-filters {
  padding: 80px 0;
  background: #f8f9fa;
}

.gallery-filter-header h2 {
  color: #2c3e50;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.gallery-filter-header p {
  color: #6c757d;
  font-size: 18px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: #6c757d;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.filter-btn:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.filter-btn.active {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-color: #667eea;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.filter-btn i {
  font-size: 18px;
}

/* Gallery Masonry Grid */
.gallery-masonry-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
  margin-bottom: 50px;
  width: 100%;
}

.masonry-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
  break-inside: avoid;
}

.masonry-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

/* Different masonry item sizes */
.masonry-item.regular {
  grid-row-end: span 1;
}

.masonry-item.medium {
  grid-row-end: span 2;
}

.masonry-item.large {
  grid-row-end: span 3;
  grid-column-end: span 2;
}

.masonry-item.tall {
  grid-row-end: span 3;
}

.masonry-item.wide {
  grid-column-end: span 2;
  grid-row-end: span 2;
}

.masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 49, 90, 0.9) 0%, rgba(250, 146, 11, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-info {
  text-align: center;
  color: white;
  max-width: 100%;
}

.masonry-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.masonry-info p {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.9;
  font-weight: 500;
}

.masonry-category {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  backdrop-filter: blur(5px);
}

/* Load More Button */
.load-more-btn {
  background: linear-gradient(135deg, #14315a 0%, #fa920b 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(20, 49, 90, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.load-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.load-more-btn:hover::before {
  left: 100%;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(20, 49, 90, 0.4);
}

.load-more-btn:active {
  transform: translateY(-1px);
}

.load-more-btn i {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.load-more-btn:hover i {
  transform: scale(1.1);
}

/* Featured Gallery */
.featured-gallery {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.featured-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.featured-item.large {
  grid-row: span 2;
}

.featured-item.medium {
  grid-column: span 1;
}

.featured-item.small {
  grid-column: span 1;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-item:hover img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-item:hover .featured-overlay {
  opacity: 1;
}

.featured-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.featured-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-content p {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.featured-badge {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

/* Gallery CTA */
.gallery-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .vs-btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .vs-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Gallery Masonry */
@media (max-width: 1200px) {
  .gallery-masonry {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 180px;
    gap: 18px;
  }

  .masonry-item.large {
    grid-row-end: span 2;
    grid-column-end: span 1;
  }

  .masonry-item.wide {
    grid-column-end: span 1;
  }
}

@media (max-width: 992px) {
  .gallery-hero {
    padding: 60px 0;
  }

  .gallery-title {
    font-size: 36px;
  }

  .gallery-subtitle {
    font-size: 18px;
  }

  .gallery-stats-hero {
    gap: 30px;
  }

  .gallery-stats-hero .stat-number {
    font-size: 28px;
  }

  .gallery-filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .gallery-masonry {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: 160px;
    gap: 15px;
  }

  .masonry-item.large,
  .masonry-item.tall,
  .masonry-item.wide {
    grid-row-end: span 2;
    grid-column-end: span 1;
  }

  .masonry-info h4 {
    font-size: 18px;
  }

  .masonry-info p {
    font-size: 13px;
  }

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

  .featured-item.large,
  .featured-item.medium,
  .featured-item.small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .featured-content h3 {
    font-size: 24px;
  }

  .featured-content h4 {
    font-size: 20px;
  }

  .featured-content h5 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    padding: 50px 0;
    text-align: center;
  }

  .gallery-hero .row {
    flex-direction: column;
  }

  .gallery-hero-image {
    margin-top: 40px;
  }

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

  .gallery-stats-hero {
    justify-content: center;
    gap: 20px;
  }

  .gallery-filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 200px;
    justify-content: center;
  }

  .gallery-masonry {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 150px;
    gap: 12px;
  }

  .masonry-item.large,
  .masonry-item.tall,
  .masonry-item.wide,
  .masonry-item.medium {
    grid-row-end: span 1;
    grid-column-end: span 1;
  }

  .masonry-item img {
    height: 150px;
  }

  .masonry-info {
    padding: 15px;
  }

  .masonry-info h4 {
    font-size: 16px;
  }

  .masonry-info p {
    font-size: 12px;
  }

  .masonry-category {
    font-size: 10px;
    padding: 3px 10px;
  }

  .load-more-btn {
    padding: 15px 30px;
    font-size: 15px;
  }

  .featured-gallery {
    padding: 60px 0;
  }

  .featured-gallery-grid {
    gap: 10px;
  }

  .featured-item img {
    height: 200px;
  }

  .gallery-cta {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .vs-btn {
    width: 200px;
  }
}

@media (max-width: 576px) {
  .gallery-hero {
    padding: 40px 0;
  }

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

  .gallery-stats-hero {
    flex-direction: column;
    gap: 15px;
  }

  .gallery-stats-hero .stat-number {
    font-size: 24px;
  }

  .gallery-filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    width: 160px;
    padding: 10px 15px;
    font-size: 13px;
  }

  .gallery-masonry {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-auto-rows: 120px;
    gap: 10px;
  }

  .masonry-item img {
    height: 120px;
  }

  .masonry-info {
    padding: 10px;
  }

  .masonry-info h4 {
    font-size: 14px;
  }

  .masonry-info p {
    font-size: 11px;
  }

  .masonry-category {
    font-size: 9px;
    padding: 2px 8px;
  }

  .load-more-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .featured-item img {
    height: 150px;
  }

  .featured-content {
    padding: 12px;
  }

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

  .featured-content h4 {
    font-size: 16px;
  }

  .featured-content h5 {
    font-size: 14px;
  }

  .gallery-cta {
    padding: 50px 0;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-buttons .vs-btn {
    width: 160px;
    padding: 10px 20px;
  }
}

/* Print Styles */
@media print {
  .tour-tabs-nav,
  .tour-actions,
  .gallery-overlay,
  .sidebar-widget,
  .write-review {
    display: none !important;
  }

  .tour-details-hero {
    background: white !important;
    color: black !important;
  }

  .tour-title,
  .current-price,
  .meta-item span {
    color: black !important;
  }

  .tour-highlights li {
    background: #f0f0f0 !important;
    color: black !important;
  }
}