/* ============================================================================
   SINGLE-TOUR.CSS - Single Tour Page Styles
   ========================================================================= */

/* ============================================================================
   TOUR HERO SECTION
   ========================================================================= */

.tour-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}

.tour-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tour-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.tour-hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.tour-hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: var(--color-footer-bg);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(7, 114, 149, 0.3);
}

.tour-hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin: 0 0 30px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.tour-hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
}

.tour-meta-item img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.tour-meta-price span {
  font-size: 24px;
  font-weight: 900;
  color: #FFB800;
}

/* ============================================================================
   TOUR DETAILS SECTION
   ========================================================================= */

.tour-details-section {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.tour-details-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

/* Main Content Column */
.tour-main-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.tour-description-block h2,
.tour-highlights-block h2,
.tour-questions-card h2,
.tour-included-block h2,
.tour-gallery-block h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 25px;
}

.tour-description-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-grey);
}

.tour-description-text p {
  margin-bottom: 20px;
}

.tour-description-text p:last-child {
  margin-bottom: 0;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

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

.highlight-item img {
  width: 24px;
  height: 24px;
  opacity: 0.6;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

/* Tour Questions Card */
.tour-questions-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid var(--color-footer-bg);
  box-shadow: 0 4px 20px rgba(7, 114, 149, 0.08);
}

.tour-questions-card h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 15px;
}

.tour-questions-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-grey);
  margin: 0 0 30px;
}

.questions-contact-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--color-bg-main);
  border-radius: 12px;
  border: 2px solid var(--color-border);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.contact-whatsapp:hover {
  border-color: #25D366;
  background: #F0FFF4;
}

.contact-phone:hover {
  border-color: var(--color-footer-bg);
  background: #F0F9FB;
}

.contact-email:hover {
  border-color: var(--color-footer-bg);
  background: #F0F9FB;
}

.contact-method img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  opacity: 0.7;
}

.contact-whatsapp img {
  filter: none;
}

.contact-method div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-method strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.contact-method span {
  font-size: 13px;
  color: var(--color-grey);
}

/* What's Included */
.included-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.included-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
  text-align: left;
}

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

.included-item > img {
  width: 40px;
  height: 40px;
  opacity: 0.5;
  flex-shrink: 0;
  margin-inline: 0;
}

.included-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}

.included-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-grey);
  margin: 0;
}

/* Photo Gallery */
.tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  /* cursor: pointer; */
  transition: var(--transition-fast);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

/* ============================================================================
   SIDEBAR
   ========================================================================= */

.tour-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tour-info-card,
.tour-contact-card {
  background: var(--color-white);
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tour-info-card h3,
.tour-contact-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-item img {
  width: 24px;
  height: 24px;
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-item strong {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.info-item span {
  font-size: 15px;
  color: var(--color-grey);
  font-weight: 500;
}

.info-item-price {
  padding-top: 25px;
  margin-top: 10px;
}

.price-value {
  font-size: 28px !important;
  font-weight: 900 !important;
  color: var(--color-footer-bg) !important;
}

/* Book Now Button */
.btn-book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  margin-top: 25px;
  background: var(--color-footer-bg);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: 'LT Superior', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(7, 114, 149, 0.2);
}

.btn-book-now:hover {
  background: #055A75;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 114, 149, 0.35);
}

.btn-book-now svg {
  transition: transform 0.3s ease;
}

.btn-book-now:hover svg {
  transform: translateX(4px);
}

/* Contact Card */
.tour-contact-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-grey);
  margin: 0 0 20px;
}

.btn-whatsapp-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: #25D366;
  color: var(--color-white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-small:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-small img {
  width: 20px;
  height: 20px;
}

.contact-info-small {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
}

.contact-info-small a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-footer-bg);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-info-small a:hover {
  color: #055A75;
}

.contact-info-small img {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

/* ============================================================================
   AVAILABLE BOATS SECTION
   ========================================================================= */

.tour-boats-section {
  padding: 80px 0;
  background: var(--color-white);
}

.boats-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.boats-section-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 15px;
}

.boats-section-header p {
  font-size: 18px;
  color: var(--color-grey);
}

.tour-boats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.tour-boat-card {
  background: var(--color-bg-main);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--color-border);
  transition: var(--transition-fast);
  position: relative;
}

/* .tour-boat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--color-footer-bg);
} */

.tour-boat-premium {
  border-color: #FFB800;
}

.boat-premium-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFB800;
  color: var(--color-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.boat-card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.boat-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.tour-boat-card:hover .boat-card-image img {
  transform: scale(1.05);
}

.boat-card-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.boat-badge-premium {
  background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%);
  color: var(--color-dark);
}

.boat-card-content {
  padding: 25px;
}

.boat-card-content h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 5px;
}

.boat-card-subtitle {
  font-size: 14px;
  color: var(--color-grey);
  margin: 0 0 20px;
}

.boat-card-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.boat-spec-compact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.boat-spec-compact img {
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

.boat-spec-compact span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.boat-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.boat-card-features li {
  font-size: 14px;
  color: var(--color-grey);
  padding-left: 20px;
  position: relative;
}

.boat-card-features li::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--color-footer-bg);
  font-weight: 700;
}

/* ============================================================================
   BOOKING SECTION
   ========================================================================= */

.tour-booking-section {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.booking-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.booking-section-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 15px;
}

.booking-section-header p {
  font-size: 18px;
  color: var(--color-grey);
}

.booking-form-wrapper {
  background: var(--color-white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

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

.help-card-small {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.help-card-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.help-card-small img {
  width: 40px;
  height: 40px;
  opacity: 0.6;
  flex-shrink: 0;
}

.help-card-small h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 5px;
}

.help-card-small a {
  font-size: 14px;
  color: var(--color-footer-bg);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.help-card-small a:hover {
  color: #055A75;
}

/* ============================================================================
   RESPONSIVE STYLES
   ========================================================================= */

@media (max-width: 1200px) {
  .tour-details-grid {
    grid-template-columns: 1fr 340px;
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .tour-hero-title {
    font-size: 44px;
  }
  
  .tour-details-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .tour-sidebar {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .tour-info-card,
  .tour-contact-card {
    position: static;
  }
  
  .highlights-grid,
  .included-items {
    grid-template-columns: 1fr;
  }
  
  .questions-contact-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .tour-boats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tour-hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .tour-hero-content {
    padding-bottom: 40px;
  }
  
  .tour-hero-title {
    font-size: 32px;
  }
  
  .tour-hero-meta {
    gap: 20px;
  }
  
  .tour-meta-item {
    font-size: 14px;
  }
  
  .tour-meta-price span {
    font-size: 20px;
  }
  
  .tour-details-section,
  .tour-boats-section,
  .tour-booking-section {
    padding: 60px 0;
  }
  
  .tour-main-content {
    gap: 50px;
  }
  
  .tour-description-block h2,
  .tour-highlights-block h2,
  .tour-questions-card h2,
  .tour-included-block h2,
  .tour-gallery-block h2,
  .boats-section-header h2,
  .booking-section-header h2 {
    font-size: 28px;
  }
  
  .tour-description-text {
    font-size: 16px;
  }
  
  .tour-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .tour-questions-card {
    padding: 30px 25px;
  }
  
  .tour-info-card,
  .tour-contact-card {
    padding: 30px 25px;
  }
  
  .booking-form-wrapper {
    padding: 20px 10px;
  }
  
  .booking-help-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .tour-hero-title {
    font-size: 28px;
  }
  
  .tour-hero-meta {
    flex-direction: column;
    gap: 15px;
  }
  
  .tour-gallery-grid {
    grid-template-columns: 1fr;
  }
}