/* ============================================
   YACHT CHARTER - PREMIUM LUXURY DESIGN
   ============================================ */

/* CSS Custom Properties - Luxury Yacht Charter Theme */
:root {
  /* Brand Colors - Sophisticated Teal/Green Palette */
  --yacht-primary: #35b5b0;
  --yacht-primary-dark: #2a8f8b;
  --yacht-primary-light: #4dd4ce;
  --yacht-accent-gold: #d4af37;
  --yacht-accent-copper: #b87333;

  /* Sophisticated Neutrals */
  --yacht-surface: #ffffff;
  --yacht-surface-elevated: #f8fafb;
  --yacht-surface-overlay: rgba(255, 255, 255, 0.95);
  --yacht-border: rgba(53, 181, 176, 0.15);
  --yacht-border-hover: rgba(53, 181, 176, 0.3);

  /* Typography Colors */
  --yacht-text-primary: #1a2332;
  --yacht-text-secondary: #4a5568;
  --yacht-text-muted: #718096;
  --yacht-text-inverse: #ffffff;

  /* Shadows - Elegant Depth */
  --yacht-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --yacht-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --yacht-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --yacht-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Spacing System - Generous & Breathable */
  --yacht-space-xs: 0.5rem;
  --yacht-space-sm: 0.75rem;
  --yacht-space-md: 1.25rem;
  --yacht-space-lg: 2.5rem;
  --yacht-space-xl: 4rem;
  --yacht-space-2xl: 5rem;

  /* Typography Scale */
  --yacht-font-display: 'Cormorant', serif;
  --yacht-font-body: 'Lato', sans-serif;
  --yacht-font-accent: 'anthony-hunter-italic', cursive;

  /* Motion - Smooth & Deliberate */
  --yacht-transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --yacht-transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --yacht-transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   HERO SECTION - SOPHISTICATED PREMIUM
   ============================================ */

.yacht-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.yacht-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.75) 0%,
    rgba(53, 181, 176, 0.25) 50%,
    rgba(26, 35, 50, 0.65) 100%
  );
  z-index: 1;
}

.yacht-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--yacht-surface) 0%, transparent 100%);
  z-index: 2;
}

.yacht-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--yacht-space-xl) var(--yacht-space-md);
}

.yacht-hero-title {
  font-family: var(--yacht-font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--yacht-text-inverse);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: var(--yacht-space-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.yacht-hero-title span {
  display: block;
  font-family: var(--yacht-font-accent);
  color: var(--yacht-primary-light);
  font-size: 0.7em;
  margin-top: var(--yacht-space-sm);
  letter-spacing: 0.05em;
}

.yacht-hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* ============================================
   CONTENT SECTIONS - LUXURY SPACING
   ============================================ */

.yacht-section {
  padding: var(--yacht-space-xl) 0;
  position: relative;
}

.yacht-section-sm {
  padding: var(--yacht-space-xl) 0;
}

.yacht-section-header {
  text-align: center;
  margin-bottom: var(--yacht-space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.yacht-section-title {
  font-family: var(--yacht-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  color: var(--yacht-primary);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: var(--yacht-space-md);
}

.yacht-section-subtitle {
  font-size: 1.25rem;
  color: var(--yacht-text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================
   YACHT SHOWCASE CARDS - PREMIUM DESIGN
   ============================================ */

.yacht-card {
  position: relative;
  background: var(--yacht-surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--yacht-shadow-md);
  transition: all var(--yacht-transition-base);
  margin-bottom: var(--yacht-space-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.yacht-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--yacht-shadow-xl);
}

.yacht-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--yacht-surface-elevated);
  flex-shrink: 0;
}

.yacht-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--yacht-transition-slow);
}

.yacht-card:hover .yacht-card-image img {
  transform: scale(1.08);
}

.yacht-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(26, 35, 50, 0.7) 0%, transparent 100%);
}

.yacht-card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--yacht-primary);
  color: var(--yacht-text-inverse);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: var(--yacht-shadow-md);
}

.yacht-card-content {
  padding: var(--yacht-space-md);
  background: var(--yacht-surface);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.yacht-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--yacht-space-sm);
  padding-bottom: var(--yacht-space-sm);
  border-bottom: 1px solid var(--yacht-border);
}

.yacht-card-title {
  font-family: var(--yacht-font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--yacht-primary);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.yacht-card-year {
  font-size: 1rem;
  color: var(--yacht-text-muted);
  font-style: italic;
  margin-top: 0.25rem;
}

.yacht-card-description {
  font-size: 0.9375rem;
  color: var(--yacht-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--yacht-space-sm);
}

/* Yacht Specifications Table */
.yacht-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--yacht-space-sm);
  margin: var(--yacht-space-sm) 0;
  padding: var(--yacht-space-sm);
  background: var(--yacht-surface-elevated);
  border-radius: 12px;
  border: 1px solid var(--yacht-border);
}

.yacht-spec-item {
  text-align: center;
  padding: var(--yacht-space-xs);
}

.yacht-spec-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yacht-text-muted);
  margin-bottom: 0.5rem;
}

.yacht-spec-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--yacht-primary);
  font-family: var(--yacht-font-display);
}

.yacht-card-pricing {
  display: flex;
  flex-direction: column;
  gap: var(--yacht-space-sm);
  margin-top: auto;
  padding-top: var(--yacht-space-md);
  border-top: 1px solid var(--yacht-border);
}

.yacht-price {
  font-family: var(--yacht-font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--yacht-primary);
}

.yacht-price-period {
  font-size: 0.875rem;
  color: var(--yacht-text-muted);
  font-weight: 400;
  margin-left: 0.5rem;
}

.yacht-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--yacht-primary);
  border: 1.5px solid var(--yacht-primary);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all var(--yacht-transition-base);
  width: 100%;
}

.yacht-cta-btn:hover {
  background: var(--yacht-primary);
  color: var(--yacht-text-inverse);
  border-color: var(--yacht-primary);
  box-shadow: var(--yacht-shadow-sm);
}

/* ============================================
   CONTENT BLOCKS - REFINED TYPOGRAPHY
   ============================================ */

.yacht-content-block {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--yacht-space-xl) var(--yacht-space-md);
}

.yacht-content-block h2 {
  font-family: var(--yacht-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--yacht-primary);
  margin-bottom: var(--yacht-space-md);
  line-height: 1.3;
}

.yacht-content-block h3 {
  font-family: var(--yacht-font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--yacht-primary);
  margin-top: var(--yacht-space-lg);
  margin-bottom: var(--yacht-space-md);
  line-height: 1.3;
}

.yacht-content-block h4 {
  font-family: var(--yacht-font-accent);
  font-size: 1.75rem;
  color: var(--yacht-primary);
  margin-top: var(--yacht-space-lg);
  margin-bottom: var(--yacht-space-sm);
}

.yacht-content-block p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--yacht-text-secondary);
  margin-bottom: var(--yacht-space-md);
}

.yacht-content-block p strong,
.yacht-content-block p b {
  color: var(--yacht-text-primary);
  font-weight: 600;
}

.yacht-content-block a {
  color: var(--yacht-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--yacht-border);
  transition: all var(--yacht-transition-fast);
}

.yacht-content-block a:hover {
  border-bottom-color: var(--yacht-primary);
  color: var(--yacht-primary-dark);
}

/* Feature Image with Caption */
.yacht-feature-image {
  margin: var(--yacht-space-xl) 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--yacht-shadow-lg);
}

.yacht-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.yacht-feature-image figcaption {
  padding: var(--yacht-space-md);
  background: var(--yacht-surface-elevated);
  font-size: 0.9375rem;
  color: var(--yacht-text-muted);
  text-align: center;
  font-style: italic;
  margin-top: 0;
}

/* ============================================
   DESTINATIONS & FEATURES GRID
   ============================================ */

.yacht-destinations-list {
  display: grid;
  gap: var(--yacht-space-md);
  margin: var(--yacht-space-lg) 0;
}

.yacht-destination-item {
  padding: var(--yacht-space-md);
  background: var(--yacht-surface-elevated);
  border-radius: 12px;
  border-left: 4px solid var(--yacht-primary);
  transition: all var(--yacht-transition-base);
}

.yacht-destination-item:hover {
  transform: translateX(8px);
  box-shadow: var(--yacht-shadow-sm);
  background: var(--yacht-surface);
}

.yacht-destination-item h4 {
  font-family: var(--yacht-font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yacht-primary);
  margin: 0 0 0.5rem 0;
}

.yacht-destination-item p {
  margin: 0;
  color: var(--yacht-text-secondary);
  line-height: 1.7;
}

/* ============================================
   FAQ SECTION - ELEGANT ACCORDION
   ============================================ */

.yacht-faq-section {
  background: var(--yacht-surface-elevated);
  padding: var(--yacht-space-2xl) 0;
  margin-top: var(--yacht-space-2xl);
}

.yacht-faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--yacht-space-md);
}

.yacht-faq-item {
  background: var(--yacht-surface);
  border-radius: 16px;
  margin-bottom: var(--yacht-space-md);
  overflow: hidden;
  box-shadow: var(--yacht-shadow-sm);
  transition: all var(--yacht-transition-base);
}

.yacht-faq-item:hover {
  box-shadow: var(--yacht-shadow-md);
}

.yacht-faq-question {
  padding: var(--yacht-space-md) var(--yacht-space-lg);
  cursor: pointer;
  font-family: var(--yacht-font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--yacht-text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--yacht-transition-fast);
  background: transparent;
}

.yacht-faq-question:hover {
  color: var(--yacht-primary);
}

.yacht-faq-item.active .yacht-faq-question {
  color: var(--yacht-text-primary) !important;
}

.yacht-faq-item.active .yacht-faq-question:hover {
  color: var(--yacht-text-primary) !important;
}

.yacht-faq-answer {
  padding: 0 var(--yacht-space-lg) var(--yacht-space-md);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--yacht-text-secondary);
}

/* ============================================
   TESTIMONIALS - LUXURY CAROUSEL
   ============================================ */

.yacht-testimonials {
  background: linear-gradient(135deg, var(--yacht-surface-elevated) 0%, var(--yacht-surface) 100%);
  padding: var(--yacht-space-2xl) 0;
}

.yacht-testimonial-card {
  background: var(--yacht-surface);
  border-radius: 20px;
  padding: var(--yacht-space-xl);
  box-shadow: var(--yacht-shadow-md);
  position: relative;
  margin: var(--yacht-space-md);
}

.yacht-testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 8rem;
  font-family: var(--yacht-font-display);
  color: var(--yacht-primary);
  opacity: 0.15;
  line-height: 1;
}

.yacht-testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--yacht-text-secondary);
  margin-bottom: var(--yacht-space-md);
  position: relative;
  z-index: 1;
}

.yacht-testimonial-author {
  font-weight: 600;
  color: var(--yacht-primary);
  font-size: 1.125rem;
}

.yacht-testimonial-year {
  color: var(--yacht-text-muted);
  font-size: 0.9375rem;
  margin-left: 0.5rem;
}

/* ============================================
   CTA SECTIONS - CONVERSION OPTIMIZED
   ============================================ */

.yacht-cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--yacht-primary) 0%, var(--yacht-primary-dark) 100%);
  padding: var(--yacht-space-2xl) var(--yacht-space-md);
  text-align: center;
  border-radius: 24px;
  margin: var(--yacht-space-2xl) 0;
  overflow: hidden;
}

.yacht-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.yacht-cta-content {
  position: relative;
  z-index: 1;
}

.yacht-cta-title {
  font-family: var(--yacht-font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--yacht-text-inverse);
  margin-bottom: var(--yacht-space-md);
  line-height: 1.2;
}

.yacht-cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--yacht-space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.yacht-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: var(--yacht-text-inverse);
  color: var(--yacht-primary);
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--yacht-transition-base);
  box-shadow: var(--yacht-shadow-lg);
}

.yacht-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: var(--yacht-shadow-xl);
  color: var(--yacht-primary-dark);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE REFINEMENTS
   ============================================ */

@media (max-width: 768px) {
  :root {
    --yacht-space-xl: 4rem;
    --yacht-space-2xl: 5rem;
  }

  .yacht-hero {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .yacht-hero-title {
    font-size: 2.5rem;
  }

  .yacht-card-image {
    height: 300px;
  }

  .yacht-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--yacht-space-sm);
  }

  .yacht-card-pricing {
    flex-direction: column;
    gap: var(--yacht-space-md);
    align-items: stretch;
  }

  .yacht-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .yacht-content-block {
    padding: var(--yacht-space-md) var(--yacht-space-sm);
  }
}

/* ============================================
   UTILITY CLASSES - LUXURY EXTENSIONS
   ============================================ */

.yacht-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--yacht-primary) 50%, transparent 100%);
  margin: var(--yacht-space-lg) auto;
}

.yacht-badge-premium {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--yacht-accent-gold);
  color: var(--yacht-text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}

.yacht-text-highlight {
  color: var(--yacht-primary);
  font-weight: 600;
}

.yacht-lead-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--yacht-text-secondary);
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
  background: var(--yacht-primary);
  color: var(--yacht-text-inverse);
}

::-moz-selection {
  background: var(--yacht-primary);
  color: var(--yacht-text-inverse);
}

/* ============================================
   CAROUSEL SECTIONS - DESTINATIONS & EXCURSIONS
   ============================================ */

.yacht-carousel-section {
  padding: var(--yacht-space-2xl) 0;
  overflow: hidden;
}

.yacht-carousel-card {
  position: relative;
  display: block;
  background: var(--yacht-surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  transition: all var(--yacht-transition-base);
  margin: 0 var(--yacht-space-sm);
  height: 450px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.yacht-carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--yacht-shadow-md);
  text-decoration: none;
}

.yacht-carousel-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.yacht-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--yacht-transition-slow);
}

.yacht-carousel-card:hover .yacht-carousel-image img {
  transform: scale(1.1);
}

.yacht-carousel-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.yacht-carousel-content {
  padding: var(--yacht-space-md);
  position: relative;
}

.yacht-carousel-title {
  font-family: var(--yacht-font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--yacht-primary);
  margin-bottom: var(--yacht-space-sm);
  line-height: 1.3;
}

.yacht-carousel-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--yacht-text-secondary);
  margin-bottom: var(--yacht-space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yacht-carousel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yacht-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--yacht-transition-fast);
}

.yacht-carousel-link:hover {
  color: var(--yacht-primary-dark);
  gap: 0.75rem;
}

/* Owl Carousel Custom Styling */
.yacht-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--yacht-surface) !important;
  border-radius: 50%;
  box-shadow: var(--yacht-shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--yacht-transition-base);
  z-index: 10;
}

.yacht-carousel .owl-nav button:hover {
  background: var(--yacht-primary) !important;
  box-shadow: var(--yacht-shadow-lg);
}

.yacht-carousel .owl-nav button.owl-prev {
  left: -25px;
}

.yacht-carousel .owl-nav button.owl-next {
  right: -25px;
}

.yacht-carousel .owl-nav button span {
  font-size: 2rem;
  color: var(--yacht-primary);
  transition: color var(--yacht-transition-fast);
}

.yacht-carousel .owl-nav button:hover span {
  color: var(--yacht-text-inverse);
}

/* CRITICAL: Override all Owl Carousel default theme dots styling */
.yacht-carousel .owl-dots,
.owl-carousel.yacht-carousel .owl-dots,
#excursions-carousel .owl-dots,
#destinations-carousel .owl-dots {
  text-align: center !important;
  margin-top: var(--yacht-space-lg) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
}

.yacht-carousel .owl-dot,
.owl-carousel.yacht-carousel .owl-dot,
#excursions-carousel .owl-dot,
#destinations-carousel .owl-dot,
.yacht-carousel button.owl-dot,
.owl-carousel.yacht-carousel button.owl-dot,
#excursions-carousel button.owl-dot,
#destinations-carousel button.owl-dot {
  width: 12px !important;
  height: 12px !important;
  background: rgba(0, 0, 0, 0.15) !important;
  border-radius: 50% !important;
  display: inline-block !important;
  margin: 0 6px !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  transition: all var(--yacht-transition-base) !important;
  box-shadow: none !important;
}

.yacht-carousel .owl-dot span,
.owl-carousel.yacht-carousel .owl-dot span,
#excursions-carousel .owl-dot span,
#destinations-carousel .owl-dot span,
.yacht-carousel button.owl-dot span,
.owl-carousel.yacht-carousel button.owl-dot span,
#excursions-carousel button.owl-dot span,
#destinations-carousel button.owl-dot span {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.yacht-carousel .owl-dot.active,
.owl-carousel.yacht-carousel .owl-dot.active,
#excursions-carousel .owl-dot.active,
#destinations-carousel .owl-dot.active,
.yacht-carousel button.owl-dot.active,
.owl-carousel.yacht-carousel button.owl-dot.active,
#excursions-carousel button.owl-dot.active,
#destinations-carousel button.owl-dot.active {
  background: var(--yacht-primary) !important;
  width: 32px !important;
  height: 12px !important;
  border-radius: 6px !important;
}

.yacht-carousel .owl-dot:hover,
.owl-carousel.yacht-carousel .owl-dot:hover,
#excursions-carousel .owl-dot:hover,
#destinations-carousel .owl-dot:hover,
.yacht-carousel button.owl-dot:hover,
.owl-carousel.yacht-carousel button.owl-dot:hover,
#excursions-carousel button.owl-dot:hover,
#destinations-carousel button.owl-dot:hover {
  background: rgba(53, 181, 176, 0.4) !important;
}

.yacht-carousel .owl-dot.active:hover,
.owl-carousel.yacht-carousel .owl-dot.active:hover,
#excursions-carousel .owl-dot.active:hover,
#destinations-carousel .owl-dot.active:hover,
.yacht-carousel button.owl-dot.active:hover,
.owl-carousel.yacht-carousel button.owl-dot.active:hover,
#excursions-carousel button.owl-dot.active:hover,
#destinations-carousel button.owl-dot.active:hover {
  background: var(--yacht-primary) !important;
}

@media (max-width: 768px) {
  .yacht-carousel-card {
    height: auto;
    margin: 0;
  }

  .yacht-carousel-image {
    height: 220px;
  }

  .yacht-carousel .owl-nav button {
    width: 40px;
    height: 40px;
  }

  .yacht-carousel .owl-nav button.owl-prev {
    left: 10px;
  }

  .yacht-carousel .owl-nav button.owl-next {
    right: 10px;
  }
}
