/* ============================================================================
   RENTALS.CSS - License-Free Boat Rentals Page Specific Styles
   ========================================================================= */

/* ============================================================================
   RENTALS INTRODUCTION SECTION
   ========================================================================= */

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

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

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

.intro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 35px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--color-bg-main);
  border-radius: 8px;
}

.intro-feature img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  flex-shrink: 0;
}

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

.intro-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  height: 500px;
}

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

/* ============================================================================
   BOAT OPTIONS SECTION
   ========================================================================= */

.boat-options {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.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);
}

.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:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
} */

.boat-popular-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-image {
  position: relative;
  height: 300px;
  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-models-list {
  font-size: 14px;
  color: var(--color-grey);
  margin-bottom: 1rem;
}

.boat-badge {
  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-content {
  padding: 40px 35px;
}

.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 0 30px;
}

.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 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;
}

/* ============================================================================
   PRICING SECTION STYLES
   ========================================================================= */

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

.pricing-tables-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.pricing-block {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pricing-block.featured {
  border: 2px solid var(--color-footer-bg);
  box-shadow: 0 10px 30px rgba(7, 114, 149, 0.1);
}

.pricing-block-header {
  padding: 20px 30px;
  background: var(--color-bg-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.pricing-block.featured .pricing-block-header {
  background: var(--color-footer-bg);
  color: white;
}

.pricing-block-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.engine-badge {
  font-size: 12px;
  font-weight: 700;
  background: rgba(0,0,0,0.1);
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.pricing-block.featured .engine-badge {
  background: rgba(255,255,255,0.2);
}

/* Table Styling */
.table-responsive {
  overflow-x: auto;
}

.rental-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 600px; /* Ensures readability on small screens */
}

.rental-table th {
  background: #f8fafc;
  padding: 15px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-border);
}

.rental-table th small {
  display: block;
  font-weight: 400;
  color: var(--color-grey);
}

.rental-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: var(--color-text);
}

.rental-table td:first-child {
  font-weight: 700;
  background: #f8fafc;
  width: 120px;
}

.rental-table tr:hover td {
  background: rgba(7, 114, 149, 0.03);
}

/* Footer Note */
.pricing-footer-note {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: #eef7fa;
  border-radius: 10px;
}

.pricing-footer-note p {
  margin: 0;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--color-footer-bg);
}

@media (max-width: 768px) {
  .pricing-block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .rental-table td, .rental-table th {
    padding: 10px 5px;
    font-size: 13px;
  }
}

/* ============================================================================
   EXPLORATION ZONES SECTION
   ========================================================================= */

.exploration-zones {
  padding: 80px 0;
  background: var(--color-bg-main);
}

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

.zone-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);
}

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

.zone-image {
  position: relative;
  height: 340px;
  overflow: hidden;
}

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

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

.zone-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.zone-content {
  padding: 35px 30px;
}

.zone-content h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 15px;
}

.zone-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-grey);
  margin-bottom: 30px;
}

.zone-highlights h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
  margin: 0 0 20px;
}

.zone-destinations {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.zone-destination {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--color-bg-main);
  border-radius: 10px;
  transition: var(--transition-fast);
}

/* .zone-destination:hover {
  background: #E8F4F8;
} */

.zone-destination img {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 2px;
}

.zone-destination div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

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

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

.zone-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 25px;
  border-top: 2px solid var(--color-border);
}

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

.zone-feature img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.zone-feature span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.zone-map-section {
  background: var(--color-white);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
}

.zone-map-section h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 10px;
}

.zone-map-section p {
  font-size: 16px;
  color: var(--color-grey);
  margin: 0 0 30px;
}

.zone-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.zone-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================================
   HOW IT WORKS SECTION
   ========================================================================= */

.how-it-works {
  padding: 80px 0;
  background: var(--color-white);
}

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

.step-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--color-bg-main);
  border-radius: 15px;
  position: relative;
  transition: var(--transition-fast);
}

/* .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
} */

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--color-footer-bg);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(7, 114, 149, 0.3);
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 25px auto 20px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 32px;
  height: 32px;
  opacity: 0.7;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
}

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

/* ============================================================================
   WHAT TO BRING SECTION
   ========================================================================= */

.what-to-bring {
  padding: 80px 0;
  background: var(--color-white);
}

.what-to-bring h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 50px;
}

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

.bring-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--color-bg-main);
  border-radius: 10px;
  transition: var(--transition-fast);
}

/* .bring-item:hover {
  background: #E8F4F8;
  transform: translateX(5px);
} */

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

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

/* ============================================================================
   RENTALS FAQ SECTION
   ========================================================================= */

.rentals-faq {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.rentals-faq .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 50px;
}

.rentals-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rentals-faq .faq-item {
  background: var(--color-white);
  padding: 30px 35px;
  border-radius: 12px;
  transition: var(--transition-fast);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* .rentals-faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
} */

.rentals-faq .faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
}

.rentals-faq .faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-grey);
  margin: 0;
}

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

.rentals-cta {
  padding: 100px 0;
  background: var(--color-white);
}

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

.rentals-cta h2 {
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 20px;
}

.rentals-cta p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.rentals-cta .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.rentals-cta .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-footer-bg);
}

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

@media (max-width: 1200px) {
  .boats-grid,
  .pricing-tables {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  .intro-grid,
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .zones-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bring-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .boats-grid,
  .pricing-tables {
    grid-template-columns: 1fr;
  }
  .rentals-intro,
  .boat-options,
  .rentals-pricing,
  .exploration-zones,
  .how-it-works,
  .safety-requirements,
  .what-to-bring,
  .rentals-faq,
  .rentals-cta {
    padding: 60px 0;
  }
  
  .intro-content h2,
  .section-header h2,
  .safety-content h2,
  .what-to-bring h2,
  .rentals-faq .section-title {
    font-size: 32px;
  }
  
  .rentals-cta h2 {
    font-size: 36px;
  }
  
  .intro-content p,
  .section-header p,
  .safety-intro {
    font-size: 16px;
  }
  
  .intro-features {
    grid-template-columns: 1fr;
  }
  
  .intro-image,
  .safety-image {
    height: 350px;
  }
  
  .boat-content {
    padding: 30px 25px;
  }
  
  .pricing-notice {
    padding: 25px 20px;
  }
  
  .pricing-notice img {
    width: 32px;
    height: 32px;
  }
  
  .pricing-buttons,
  .rentals-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .pricing-buttons .btn,
  .rentals-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .steps-grid,
  .bring-grid {
    grid-template-columns: 1fr;
  }
  
  .zone-content {
    padding: 30px 20px;
  }
  
  .zone-map-section {
    padding: 40px 20px;
  }
  
  .rentals-faq .faq-item {
    padding: 25px 20px;
  }
}