.hover-effect {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  overflow: hidden;
}

.btn-light {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Yacht Hero Section */
.yacht-hero-section {
  position: relative;
  overflow: hidden;
}

.yacht-image-container {
  width: 100%;
  height: 400px;
}

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

.yacht-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.yacht-hero-content {
  padding: 2rem;
  color: white;
}

.yacht-hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.yacht-hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
}

.location-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.experience-overlay {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.services-container {
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.service-item {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-content {
  padding: 2rem;
  text-align: center;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon-wrapper i {
  font-size: 2rem;
  color: white;
}

.service-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-details {
  margin-top: 1rem;
}

.service-details p {
  margin-bottom: 1rem;
  color: #666;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-details li {
  margin-bottom: 0.5rem;
  color: #666;
}

.btn-explore {
  background: #333;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  color: white;
  font-weight: 500;
  cursor: pointer;
}

.btn-explore:hover {
  opacity: 0.9;
}

.info-card {
  border-left: 5px solid #ea001e;
}

.step-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
  width: 40px;
  height: 40px;
  background: #ea001e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto;
}

.accordion-button {
  background-color: #f8f9fa;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #ea001e;
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.btn-primary {
  padding: 1rem 2rem;
  font-weight: 500;
}

/* Yacht Slider Styles */
.yacht-slider-container {
  height: calc(100vh - 90px);
  margin-top: 90px;
  background: #000;
}

.yacht-slider .owl-stage-outer {
  height: 100%;
}

.yacht-slider .owl-stage {
  height: 100%;
}

.yacht-slider .owl-item {
  height: 100%;
}

.yacht-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.yacht-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yacht-slide-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 1rem;
  max-width: 600px;
  backdrop-filter: blur(5px);
}

.yacht-slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.yacht-slide-content p {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.yacht-slider .owl-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  z-index: 1001;
}

.yacht-slider .owl-dot {
  width: 12px !important;
  height: 12px;
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.yacht-slider .owl-dot:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.2);
}

.yacht-slider .owl-dot.active {
  background: #fff !important;
  height: 36px;
  border-radius: 18px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .yacht-slider .owl-dots {
    right: 15px;
  }
  
  .info-card {
    margin-bottom: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .yacht-hero-section {
    display: flex;
    flex-direction: column;
  }

  .yacht-image-container {
    height: 250px;
  }

  .yacht-content-overlay {
    position: relative;
    background: #1B1B1B;
  }

  .yacht-hero-content {
    padding: 2rem 1rem;
  }

  .yacht-hero-title {
    font-size: 1.75rem;
    margin-top: 0;
  }

  .yacht-hero-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .yacht-hero-title {
    font-size: 1.5rem;
  }
  
  .yacht-hero-content {
    padding: 1.5rem 1rem;
  }
}
