/* ============================================================================
   BOATS.CSS - Boats Page Specific Styles
   ========================================================================= */

/* ============================================================================
   FLEET INTRODUCTION SECTION
   ========================================================================= */

.fleet-intro {
  padding: 80px 0;
  background: var(--color-white);
}

.intro-content-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content-center h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 25px;
}

.intro-content-center p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-grey);
}

/* ============================================================================
   BOATS SECTIONS (Self-Drive & Skippered)
   ========================================================================= */

.boats-section {
  padding: 80px 0;
}

.self-drive-section {
  background: var(--color-bg-main);
}

.skippered-section {
  background: var(--color-white);
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  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: 15px;
}

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

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

.section-header p {
  font-size: 18px;
  color: var(--color-grey);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================================
   BOAT CARDS GRID
   ========================================================================= */

.boats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.boat-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-fast);
  position: relative;
}

.boat-card.featured {
  border: 3px solid var(--color-footer-bg);
}

.boat-card.premium-boat {
  border: 3px solid #FFB800;
}

/* .boat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
} */

.boat-popular-badge,
.boat-premium-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-footer-bg);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(7, 114, 149, 0.3);
}

.boat-premium-badge {
  background: #FFB800;
  color: var(--color-dark);
}

/* Boat Image */
.boat-image {
  position: relative;
  height: 340px;
  overflow: hidden;
}

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

/* Boat Image Slider */
.boat-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.boat-image-slider .boat-image-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}
.boat-image-slider .boat-image-slide {
  min-width: 100%;
  height: 100%;
}
.boat-image-slider .boat-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.boat-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.boat-slider-nav:hover {
  background: #fff;
}
.boat-slider-nav svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text);
}
.boat-slider-nav.prev {
  left: 10px;
}
.boat-slider-nav.next {
  right: 10px;
}
.boat-image-slider:hover .boat-slider-nav {
  opacity: 1;
}
.boat-slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.boat-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.boat-slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}
.boat-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.boat-image-slider:hover .boat-image-slide img {
  transform: none;
}

/* Boat Badge */
.boat-badge,
.boat-badge-premium {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}
.boat-badge-premium {
  background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%);
  color: var(--color-dark);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

/* Boat Content */
.boat-content {
  padding: 40px 35px;
}

.boat-header {
  margin-bottom: 30px;
}

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

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

.boat-models-list {
  font-size: 14px;
  color: var(--color-grey);
  margin-bottom: 1rem;
}
/* Boat Specifications */
.boat-specs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 30px;
}

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

.boat-spec img {
  width: 24px;
  height: 24px;
  opacity: 0.5;
  flex-shrink: 0;
}

.boat-spec div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.boat-spec strong {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.boat-spec span {
  font-size: 15px;
  color: var(--color-grey);
}

/* Boat Features */
.boat-features {
  margin-bottom: 30px;
}

.boat-features h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
  margin: 0 0 15px;
}

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

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

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

/* Boat CTA Button */
.boat-cta {
  margin-top: 30px;
}

.boat-cta .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ============================================================================
   CTA SECTION
   ========================================================================= */

.boats-cta {
  padding: 100px 0;
  background: var(--color-bg-main);
}

.boats-cta .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.boats-cta h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 20px;
}

.boats-cta p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-grey);
  margin-bottom: 40px;
}

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

.skippered-section .boats-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .boats-grid,
  .skippered-section .boats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .fleet-intro,
  .boats-section,
  .boats-cta {
    padding: 60px 0;
  }
  
  .intro-content-center h2,
  .section-header h2{
    font-size: 32px;
  }
  
  .boats-cta h2 {
    font-size: 36px;
  }
  
  .intro-content-center p,
  .section-header p{
    font-size: 16px;
  }
  
  .boats-cta p {
    font-size: 18px;
  }
  
  .boat-content {
    padding: 30px 25px;
  }
  
  .boat-image {
    height: 300px;
  }
  
  .boats-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .boats-cta .cta-buttons .btn {
    width: 100%;
  }
}
