/* Tour Detail Page - Award Winning Design */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #1a1a1a;
  overflow-x: hidden;
}

.tour-detail-page {
  padding-top: 0;
}

/* Hero Section with Parallax */
.tour-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-2%, -2%);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

/* Desktop only - add margin-top to hero-badge */
@media (min-width: 1025px) {
  .hero-badge {
    margin-top: 80px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: white;
  margin-top: 150px;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  max-width: 100%;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  padding: 0 10px;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.meta-icon {
  font-size: 18px;
  margin-right: 8px;
}

.hero-price {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 30px 40px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 100px;
  margin-top: 0;
  color: black;
}

.price-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 600;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 5px;
  justify-content: center;
}

.currency {
  font-size: 28px;
  font-weight: 700;
  color: #166534;
}

.amount {
  font-size: 48px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
}

.price-type {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 20px;
  position: relative;
  margin: 0 auto 10px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgb(0, 0, 0);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgb(0, 0, 0);
  border-bottom: 2px solid rgb(0, 0, 0);
  transform: rotate(45deg);
  margin: -5px auto;
  animation: arrow 1.5s infinite;
}

@keyframes arrow {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* Quick Info Bar */
.quick-info-bar {
  background: white;
  padding: 30px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #f0f0f0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  transition: all 0.3s;
  cursor: pointer;
}

.info-item:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.info-icon {
  font-size: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
  border-radius: 15px;
  flex-shrink: 0;
  color: #166534;
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-value {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Content Layout */
.tour-content-wrapper {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.content-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.title-icon {
  font-size: 36px;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.destination-card {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.destination-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-content {
  padding: 20px;
}

.destination-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.destination-location {
  font-size: 14px;
  color: #f97316;
  margin-bottom: 10px;
  font-weight: 500;
}

.destination-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Itinerary Timeline */
.itinerary-timeline {
  position: relative;
  padding-left: 40px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-marker {
  position: absolute;
  left: -40px;
  top: 0;
}

.marker-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #166534;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
  position: relative;
  z-index: 2;
}

.marker-line {
  position: absolute;
  left: 50%;
  top: 50px;
  width: 2px;
  height: calc(100% + 50px);
  background: linear-gradient(180deg, #86efac 0%, transparent 100%);
  transform: translateX(-50%);
}

.timeline-content {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #4ade80;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.timeline-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.timeline-date {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666;
}

.date-icon, .time-icon {
  margin-right: 5px;
}

.timeline-image {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.timeline-item:hover .timeline-image img {
  transform: scale(1.05);
}

.timeline-description {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

/* Includes & Excludes */
.includes-excludes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.includes-box, .excludes-box {
  padding: 30px;
  border-radius: 15px;
}

.includes-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #4ade80;
}

.excludes-box {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #ef4444;
}

.box-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.box-icon {
  font-size: 20px;
  margin-right: 8px;
}

.box-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.item-icon {
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}

.includes-box .item-icon {
  color: #16a34a;
}

.excludes-box .item-icon {
  color: #ef4444;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(249, 115, 22, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  font-size: 32px;
  color: white;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sticky-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.booking-card {
  border: 2px solid #f97316;
}

.card-header {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  padding: 30px;
  color: white;
  text-align: center;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 0 10px;
}

.card-price {
  margin-top: 15px;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.card-body {
  padding: 30px;
}

.booking-info {
  margin-bottom: 25px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.info-value {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
}

.btn-primary, .btn-secondary {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
  background: white;
  color: #f97316;
  border: 2px solid #f97316;
}

.btn-secondary:hover {
  background: #fff7ed;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 18px;
  transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
  transform: translateX(5px);
}

/* Packages Card */
.packages-card {
  padding: 30px;
}

.packages-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.package-item {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #4ade80;
  transition: all 0.3s;
}

.package-item:hover {
  background: #f0fdf4;
  transform: translateX(5px);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.package-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.package-price .currency {
  font-size: 14px;
  font-weight: 600;
  color: #f97316;
}

.package-price .amount {
  font-size: 20px;
  font-weight: 700;
  color: #f97316;
}

.package-type {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-type i {
  color: #4ade80;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  font-weight: 600;
}

/* Booking Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.modal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.modal-content p {
  color: #666;
  margin-bottom: 30px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select {
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s;
}

.inquiry-modal {
  max-width: 600px;
}

.modal-subtitle {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 25px;
}

.btn-secondary {
  padding: 12px 24px;
  background: #f0f0f0;
  color: #333;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
  background: #e0e0e0;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Price Calculation Section */
.price-calculation {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #f97316;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calculation-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.calc-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.calc-value {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
}

.calc-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #f97316, transparent);
  margin: 8px 0;
}

.calc-row.calc-total {
  padding-top: 12px;
  border-top: 2px solid #f97316;
  margin-top: 8px;
}

.calc-total .calc-label {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 700;
}

.calc-total .total-amount {
  font-size: 24px;
  color: #f97316;
  font-weight: 900;
}

.form-group select {
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f97316' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

.form-group select:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group input[type="number"] {
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  width: 100%;
}

.form-group input[type="number"]:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .sticky-card {
    position: static;
  }

  .hero-price {
    margin-bottom: 90px;
    color: black;
  }

  .hero-badge {
    margin-top: 70px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .tour-hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: clamp(28px, 5vw, 36px);
    line-height: 1.3;
    padding: 0 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .hero-meta {
    gap: 15px;
  }

  .meta-item {
    font-size: 13px;
    padding: 10px 18px;
  }

  .hero-price {
    padding: 20px 30px;
    margin-bottom: 80px;
    color: black;
  }

  .hero-badge {
    margin-top: 60px;
  }

  .amount {
    font-size: 36px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .content-section {
    padding: 25px;
  }

  .section-title {
    font-size: 24px;
  }

  .includes-excludes-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .itinerary-timeline {
    padding-left: 30px;
  }

  .timeline-marker {
    left: -30px;
  }

  .marker-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.4;
    padding: 0 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    margin-bottom: 20px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-price {
    margin-bottom: 60px;
    color: black;
  }

  .hero-badge {
    margin-top: 40px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }
}
