/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Top bar styles */
.top-bar {
    background-color: #0a0a4a;
    color: white;
    padding: 8px 0;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.contact-info a {
    color: white;
    font-size: 14px;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

.contact-info i {
    margin-right: 5px;
}


/* Header styles */
.main-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  text-decoration: none;
}
.logo-image {
  max-height: 60px; 
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #0a0a3c;
  letter-spacing: 0.5px;
}

/* Existing Navigation Styles */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #0a0a3c;
}

/* General Button Styling (applies to all instances) */
.btn-book {
  background-color: #2095AE;
  color: white !important;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background-color 0.3s ease !important;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
}

.btn-book:hover {
  background-color: #1a1a6c;
}

/* Mobile Menu Button Fix */
.mobile-menu .btn-book {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 10px 0;
  box-sizing: border-box;
  text-align: center;
  font-weight: 500;
}

/* Extra styles to ensure the button is properly styled in all containers */
a.btn-book {
  color: white !important;
  text-decoration: none !important;
}

/* Mobile menu container adjustments */
.mobile-menu {
  padding-bottom: 20px;
}

/* Make sure the button has enough vertical space between menu items */
.mobile-menu a:not(:last-child) {
  margin-bottom: 10px;
}
/* Reduce header height */
.main-header {
  padding: 8px 0; 
}

.header-container {
  padding: 0 20px; /* Removed vertical padding completely */
}

.logo-image {
  max-height: 45px; /* Reduced from 60px to 45px */
}

/* Adjust button size to match more compact header */
.btn-book {
  padding: 8px 16px; /* Smaller padding */
  font-size: 13px; /* Slightly smaller font */
}

/* Adjust mobile settings */
@media (max-width: 768px) {
  .logo-image {
    max-height: 40px; /* Even smaller on mobile */
  }
  
  .header-container {
    padding: 0 15px;
  }
}
/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  cursor: pointer;
}

.hamburger-icon {
  width: 30px;
  height: 22px;
  position: relative;
  margin: 0;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}

.hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #0a0a3c;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
  top: 0px;
}

.hamburger-icon span:nth-child(2) {
  top: 9px;
}

.hamburger-icon span:nth-child(3) {
  top: 18px;
}

.hamburger-icon.active span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.hamburger-icon.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger-icon.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}
.header-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 0 !important;
  flex: 0 0 auto !important;
  text-align: left !important;
}

.hamburger-menu {
  display: block !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  position: relative !important;
  z-index: 1000 !important;
  flex: 0 0 auto !important;
}

@media (min-width: 769px) {
  .hamburger-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 75% !important;
    height: 100vh !important;
    background-color: #fff !important;
    padding: 80px 20px 20px !important;
    transition: right 0.3s ease !important;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1) !important;
    z-index: 100 !important;
  }
  
  .main-nav.active {
    display: block !important;
    right: 0 !important;
  }
  
  .header-container {
    padding: 15px !important;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Show hamburger menu, hide regular nav */
  .hamburger-menu {
    display: block;
    margin-left: auto;
    z-index: 101;
  }
  
  .main-header .container {
    display: flex;
    flex-direction: row;  /* Keep horizontal layout on mobile */
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0 15px;
    width: 100%;
  }
  
  .logo {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;  /* Hide off-screen initially */
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 100;
  }
  
  .main-nav.active {
    right: 0;  /* Slide in from right */
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .main-nav ul li {
    width: 100%;
  }
  
  .main-nav a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
  }
  
  .btn-book {
    display: inline-block;
    margin-top: 10px;
  }
}

/* Medium-sized screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .main-nav ul {
    gap: 20px;
  }
}

/* Add a backdrop for mobile menu */
.menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 99;
}

.menu-backdrop.active {
  display: block;
}


/* Hero section */
.hero {
    height: 80vh;
    background-image: url('/assets/img/hero/Magic-Studio-Magic-Expand-LP-1-1-1-e1715859481411.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero h2 {
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero .btn-book {
    padding: 12px 30px;
    font-size: 18px;
}

/* Brand logos section */
.brand-logos {
    background-color: #0a0a4a;
    padding: 30px 0;
}

.logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logos {
  background-color: #0a0a4a;
  padding: 30px 20px;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.logo-grid img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s;
  object-fit: contain; /* Preserve aspect ratio */
  max-width: 150px; /* Limit maximum width */
}

.logo-grid img:hover {
  opacity: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
  .logo-grid {
    gap: 25px;
  }
  
  .logo-grid img {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .brand-logos {
    padding: 25px 15px;
  }
  
  .logo-grid {
    gap: 20px;
  }
  
  .logo-grid img {
    height: 30px;
  }
}

/* Memories section styles */
/* Base styles for the memories section */
.memories-section {
  position: relative;
  padding: 80px 0;
  background-color: white;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Photo collage styles */
.photo-collage {
  position: relative;
  width: 50%;
  height: 600px;
}

.photo {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border: 3px solid white;
  transition: transform 0.3s ease;
}

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

.photo:hover {
  transform: scale(1.03);
  z-index: 5;
}

.photo-1 {
  width: 220px;
  height: 170px;
  top: 0;
  left: 100px;
  z-index: 1;
}

.photo-2 {
  width: 180px;
  height: 220px;
  top: 120px;
  left: 20px;
  z-index: 2;
}

.photo-3 {
  width: 220px;
  height: 280px;
  top: 80px;
  right: 90px;
  z-index: 3;
}

.photo-4 {
  width: 220px;
  height: 170px;
  top: 280px;
  left: 180px;
  z-index: 1;
}

.photo-5 {
  width: 220px;
  height: 170px;
  bottom: 0;
  left: 50px;
  z-index: 2;
}

.photo-6 {
  width: 180px;
  height: 220px;
  bottom: 30px;
  right: 60px;
  z-index: 3;
}

/* Content styles */
.memories-content {
  width: 50%;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.memories-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.1;
  color: #0a0a4a;
  margin-bottom: 30px;
  font-weight: 400;
}

.memories-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.memories-content strong {
  color: #0a0a4a;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  background-color: #2095AE !important;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background-color 0.3s;
  width: fit-content;
}

.cta-button:hover {
  background-color: #161673;
  color: #fff;
}

/* Responsive styles */
@media (max-width: 992px) {
  .memories-section {
      padding: 60px 20px;
  }
  
  .photo-1 {
      width: 180px;
      height: 140px;
      left: 70px;
  }
  
  .photo-2 {
      width: 150px;
      height: 180px;
      left: 10px;
  }
  
  .photo-3 {
      width: 180px;
      height: 230px;
      right: 60px;
  }
  
  .photo-4 {
      width: 180px;
      height: 140px;
      left: 140px;
  }
  
  .photo-5 {
      width: 180px;
      height: 140px;
      left: 30px;
  }
  
  .photo-6 {
      width: 150px;
      height: 180px;
      right: 40px;
  }
  
  .memories-content h2 {
      font-size: 42px;
  }
}

@media (max-width: 768px) {
  .memories-section {
      flex-direction: column;
      align-items: center;
      padding: 40px 15px;
  }
  
  .memories-content {
      width: 100%;
      padding-left: 0;
      text-align: center;
      order: 1;
      margin-bottom: 40px;
  }
  
  .memories-content h2 {
      font-size: 36px;
      /* Fix spacing in the heading */
      word-spacing: normal;
  }
  
  .cta-button {
      margin: 0 auto;
  }
  
  .photo-collage {
      width: 100%;
      height: 500px;
      order: 2;
  }
}

@media (max-width: 576px) {
  /* Completely rearrange photos for small screens */
  .photo-collage {
      height: 600px;
  }
  
  .photo-1 {
      width: 140px;
      height: 110px;
      top: 0;
      left: calc(50% - 140px);
  }
  
  .photo-2 {
      width: 110px;
      height: 140px;
      top: 0;
      left: calc(50% + 20px);
  }
  
  .photo-3 {
      width: 140px;
      height: 180px;
      top: 130px;
      left: calc(50% - 160px);
  }
  
  .photo-4 {
      width: 140px;
      height: 110px;
      top: 160px;
      left: calc(50% - 10px);
  }
  
  .photo-5 {
      width: 140px;
      height: 110px;
      top: 330px;
      left: calc(50% - 130px);
  }
  
  .photo-6 {
      width: 110px;
      height: 140px;
      top: 290px;
      left: calc(50% + 20px);
  }
  
  .memories-content h2 {
      font-size: 32px;
      /* Important: Fix word spacing in the title */
      word-spacing: 6px; 
  }
  
  .memories-content p {
      font-size: 15px;
  }
}
  
  /* WhatsApp button */
  .whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 100;
    transition: transform 0.3s;
  }
  
  .whatsapp-button img {
    width: 35px;
    height: 35px;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.1);
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .memories-section {
      flex-direction: column;
      padding: 60px 20px;
    }
    
    .photo-collage,
    .memories-content {
      width: 100%;
    }
    
    .photo-collage {
      height: 500px;
      margin-bottom: 40px;
    }
    
    .memories-content {
      padding-left: 0;
      text-align: center;
      align-items: center;
    }
    
    .memories-content h2 {
      font-size: 36px;
    }
  }
  
  @media (max-width: 768px) {
    .photo-collage {
      height: 400px;
    }
    
    .photo-1, .photo-3, .photo-4, .photo-5 {
      width: 160px;
      height: 120px;
    }
    
    .photo-2, .photo-6 {
      width: 140px;
      height: 180px;
    }
  }

  /* Testimonials Section */
.testimonials-section {
    background-color: #0a0a4a;
    color: white;
    padding: 80px 0;
    text-align: center;
  }
  
  .section-title {
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
  }
  
  .testimonials-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    background-color: white;
    color: #333;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 40px;
  }
  
  .testimonial-content {
    margin-bottom: 30px;
  }
  
  .testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
  }
  
  .testimonial-content strong {
    font-weight: 600;
  }
  
  .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .author-info {
    display: flex;
    flex-direction: column;
  }
  
  .author-name {
    font-weight: 700;
    font-size: 16px;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    bottom: -30px;
    right: 30px;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .testimonials-container {
      flex-direction: column;
      align-items: center;
    }
    
    .testimonial-card {
      max-width: 90%;
    }
  }
  
  @media (max-width: 576px) {
    .section-title {
      font-size: 32px;
      margin-bottom: 40px;
    }
    
    .testimonial-card {
      padding: 20px;
    }
    
    .testimonial-content p {
      font-size: 14px;
    }
  }

  /* Boats section */
.boats-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .boats-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    align-items: flex-start;
  }
  
  .header-left {
    flex: 0 0 40%;
  }
  
  .header-right {
    flex: 0 0 60%;
    display: flex;
    justify-content: flex-end;
  }
  
  .section-title {
    font-size: 42px;
    color: #0a0a4a;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
  }
  
  .trip-duration {
    text-align: center;
    position: relative;
  }
  
  .trip-number {
    font-size: 72px;
    color: #0a0a4a;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 0;
  }
  
  .trip-label {
    font-size: 24px;
    color: #333;
    margin: 0;
  }
  
  .underline {
    height: 2px;
    background-color: #0a0a4a;
    width: 100%;
    margin-top: 10px;
  }
  
  /* Boats grid */
  .boats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .boat-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .boat-card:hover {
    transform: translateY(-5px);
  }
  
  .boat-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  
  .boat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .boat-card:hover .boat-image img {
    transform: scale(1.05);
  }
  
  .boat-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 74, 0.7);
    color: white;
    padding: 10px 15px;
    font-size: 18px;
  }
  
  .boat-details {
    padding: 15px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .boat-info {
    display: flex;
    gap: 15px;
  }
  
  .capacity, .size {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
  }
  
  .price-link {
    display: inline-block;
    background-color: #3498db;
    color: white;
    font-size: 12px;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .price-link:hover {
    background-color: #2980b9;
  }
  
  .price-link::after {
    content: "→";
    font-size: 12px;
    margin-left: 3px;
  }
  /* Mobile-first boat grid styling */
.boats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

/* Boat card styling */
.boat-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

/* Boat image container */
.boat-image {
  position: relative;
  height: 0;
  padding-bottom: 66.67%; /* 3:2 aspect ratio */
  overflow: hidden;
}

.boat-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boat-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  padding: 15px 10px 10px;
  font-size: 16px;
  font-weight: 500;
}

/* Boat details */
.boat-details {
  padding: 12px;
}

.boat-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

/* Price link styling - minimal and subtle */
.price-link {
  display: inline-block;
  background-color: rgba(0, 102, 204, 0.9);
  color: white;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}

.price-link:hover {
  background-color: rgba(0, 82, 164, 0.9);
}

/* Responsive breakpoints */
@media (min-width: 576px) {
  .boats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .boats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Custom JavaScript will be needed to reorder the boats by size
   But here's the CSS part to support that order */
.boat-card[data-size="8.05m"] { order: 1; }
.boat-card[data-size="8.5m"] { order: 2; }
.boat-card[data-size="8.50M"] { order: 3; }
.boat-card[data-size="9m"] { order: 4; }
.boat-card[data-size="10m"] { order: 5; }
.boat-card[data-size="11m"] { order: 6; }
.boat-card[data-size="11.20m"] { order: 7; }
.boat-card[data-size="18m"] { order: 8; }
.boat-card[data-size="28.70m"] { order: 9; }

  /* More boats section */
.more-boats-section {
    text-align: center;
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .more-boats-count {
    font-size: 72px;
    color: #0a0a4a;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 1;
  }
  
  .more-boats-count span {
    font-size: 36px;
    margin-left: 10px;
  }
  
  .more-boats-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .more-boats-button {
    display: inline-block;
    background-color: #2095AE;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    margin-bottom: 40px;
  }
  
  .more-boats-button:hover {
    background-color: #161673;
  }
  
  .section-divider {
    height: 1px;
    background-color: #ddd;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Responsive adjustments */
  @media (max-width: 576px) {
    .more-boats-count {
      font-size: 56px;
    }
    
    .more-boats-count span {
      font-size: 28px;
    }
    
    .more-boats-description {
      font-size: 16px;
    }
  }

  /* What's on board section */
.onboard-section {
    position: relative;
    padding: 60px 0;
    background-image: url('/assets/img/boats/DeAntonioYachts_D50_21-scaled.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
  }
  
  .onboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 150, 176, 0.2);
    z-index: 1;
  }
  
  .onboard-title {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 50px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  }
  
  .onboard-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .onboard-card {
    flex: 1;
    max-width: 500px;
    background-color: rgba(245, 245, 250, 0.95);
    border-radius: 10px;
    position: relative;
    padding: 40px 30px;
  }
  
  .card-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0a0a4a;
    color: white;
    padding: 8px 30px;
    border-radius: 0 0 15px 15px;
    font-weight: bold;
    font-size: 14px;
  }
  
  .card-content {
    margin-top: 15px;
  }
  
  .onboard-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    text-align: left;
  }
  
  .onboard-item:last-child {
    margin-bottom: 0;
  }
  
  .item-icon {
    width: 24px;
    min-width: 24px;
    margin-right: 15px;
    color: #0a0a4a;
    font-size: 20px;
    text-align: center;
  }
  
  .item-text {
    font-size: 16px;
    color: #333;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .onboard-container {
      flex-direction: column;
      align-items: center;
    }
    
    .onboard-card {
      width: 100%;
    }
    
    .onboard-title {
      font-size: 36px;
    }
  }

  /* Why Just Enjoy Ibiza section */
.why-section {
    background-color: #0a0a4a;
    color: white;
    padding: 80px 0;
    position: relative;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-divider {
    width: 50px;
    height: 2px;
    background-color: white;
    margin: 0 auto 30px;
  }
  
  .section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
  }
  
  .features-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  
  .feature {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .feature-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 4px solid white;
  }
  
  .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .feature:hover .feature-image img {
    transform: scale(1.05);
  }
  
  .feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
  }
  
  .feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .feature-text strong {
    color: white;
    font-weight: 600;
  }
  
  .cta-container {
    text-align: center;
    margin-top: 40px;
  }
  
  .cta-button {
    display: inline-block;
    background-color: white;
    color: #0a0a4a;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
  }
  
  .special-background {
    background-color: #0a0a4a;
    color: #fff;
  }


  .special-title {
    color: #fff !important;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .features-container {
      flex-direction: column;
      align-items: center;
    }
    
    .feature {
      max-width: 500px;
      margin-bottom: 40px;
    }
    
    .section-title h2 {
      font-size: 36px;
      margin-bottom: 40px;
      color: #fff !important;
    }
  }

  /* FAQs Section */
.faqs-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .faqs-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
  }
  
  .faqs-column {
    flex: 0 0 65%;
  }
  
  .contact-column {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .section-title {
    font-size: 42px;
    color: #0a0a4a;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 40px;
  }
  
  .faq-list {
    display: flex;
    flex-direction: column;
  }
  
  .faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
  }
  
  .faq-question {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
    cursor: pointer;
    position: relative;
    font-weight: 500;
  }
  
  .faq-question:hover {
    color: #0a0a4a;
  }
  
  .question-dot {
    width: 10px;
    height: 10px;
    background-color: #0a0a4a;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .toggle-icon {
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
  }
  
  .toggle-icon:before,
  .toggle-icon:after {
    content: '';
    position: absolute;
    background-color: #0a0a4a;
    transition: transform 0.3s ease;
  }
  
  .toggle-icon:before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
  }
  
  .toggle-icon:after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
  }
  
  .faq-item.active .toggle-icon:after {
    transform: rotate(90deg);
    opacity: 0;
  }
  
  .faq-answer {
    display: none;
    padding: 20px 0 10px 25px;
    color: #555;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .faq-answer p {
    margin-bottom: 15px;
  }
  
  .faq-answer ul, .faq-answer ol {
    margin-left: 20px;
    margin-bottom: 15px;
  }
  
  .faq-answer li {
    margin-bottom: 5px;
  }
  
  .important-note {
    margin-top: 15px;
    background-color: rgba(10, 10, 74, 0.05);
    padding: 15px;
    border-left: 3px solid #0a0a4a;
  }
  
  .important-note strong {
    color: #0a0a4a;
  }
  
  .more-questions {
    font-size: 42px;
    color: #0a0a4a;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  
  .whatsapp-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #fff;
    color: #2095AE;
    border: 2px solid #0a0a4a;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .whatsapp-btn:hover {
    background-color: #0a0a4a;
    color: #fff;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .faqs-container {
      flex-direction: column;
    }
    
    .faqs-column, 
    .contact-column {
      flex: 0 0 100%;
    }
    
    .contact-column {
      align-items: center;
      text-align: center;
      margin-top: 50px;
    }
    
    .section-title, 
    .more-questions {
      font-size: 36px;
    }
    
    .faq-answer {
      padding-left: 15px;
    }
  }
  
  @media (max-width: 576px) {
    .faq-question {
      font-size: 14px;
    }
    
    .faq-answer {
      font-size: 14px;
    }
  }

  /* Contact Form Section */
.contact-section {
    background-color: #cce7f1; /* Light blue background */
    padding: 80px 0;
  }
  
  .contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  /* Left column - promotional content */
  .contact-left {
    flex: 0 0 40%;
    padding: 30px;
    background-image: url('/assets/img/Why/Magic-Studio-Magic-Expand-LP-1-1-1-e1715859481411.png'); /* Boat image background */
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
  }
  
  .contact-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
  }
  
  .contact-left-content {
    position: relative;
    z-index: 2;
    padding: 30px;
  }
  
  .logo-small {
    margin-bottom: 30px;
  }
  
  .contact-heading {
    font-size: 36px;
    color: #0a0a4a;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 30px;
  }
  
  .heading-accent {
    color: #c7a36f; /* Gold accent color */
    font-weight: 300;
  }
  
  .response-time {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .contact-or {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
  
  .contact-or strong {
    color: #0a0a4a;
  }
  
  /* Right column - form */
  .contact-right {
    flex: 0 0 60%;
    padding: 30px 50px;
  }
  
  .contact-form {
    width: 100%;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  .text-logo-small {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #0a0a4a; /* Navy blue color */
    letter-spacing: 0.5px;
  }
  
  /* You can remove this if you're replacing the image completely */
  .logo-small {
    margin-bottom: 30px;
    display: inline-block;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
  }
  
  input, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
  }
  
  input:focus, select:focus {
    outline: none;
    border-color: #0a0a4a;
  }
  
  .phone-input {
    display: flex;
  }
  
  .country-code {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 5px 0 0 5px;
    padding: 0 12px;
  }
  
  .flag {
    margin-right: 5px;
    font-size: 20px;
  }
  
  .code {
    font-size: 16px;
    color: #333;
  }
  
  .phone-input input {
    flex: 1;
    border-radius: 0 5px 5px 0;
  }
  
  .submit-button {
    background-color: #2095AE;
    color: white;
    font-weight: bold;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    width: auto;
    display: block;
    margin: 30px auto 0;
  }
  
  .submit-button:hover {
    background-color: #161673;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .contact-container {
      flex-direction: column;
    }
    
    .contact-left, .contact-right {
      flex: 0 0 100%;
    }
    
    .contact-left {
      min-height: 300px;
    }
    
    .contact-right {
      padding: 30px;
    }
    
    .contact-heading {
      font-size: 30px;
    }
  }
  
  @media (max-width: 576px) {
    .contact-section {
      padding: 50px 0;
    }
    
    .contact-left-content {
      padding: 20px;
    }
    
    .contact-heading {
      font-size: 28px;
    }
    
    .response-time, .contact-or {
      font-size: 15px;
    }
  }

  /* Phone input styling */
.phone-input-wrapper {
    display: flex;
    width: 100%;
  }
  
.country-selector {
    position: relative;
    flex: 0 0 120px;
  }
  
  #country-code-display {
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px;
    padding: 0 36px 0 12px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    background-color: #f8f8f8;
    text-align: left;
  }

  #country-code {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 46px;
    opacity: 0;
    cursor: pointer;
  }

  .country-selector::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
  }
  
  #phone {
    flex: 1;
    height: 46px;
    border-radius: 0 5px 5px 0;
    padding: 0 15px;
    border: 1px solid #ddd;
    font-size: 16px;
  }
  
  @media (max-width: 576px) {
    .country-selector {
      flex-basis: 105px;
    }
  }
  
  .list-header {
    padding: 8px 12px;
    color: #777;
    font-size: 14px;
    background-color: #f5f9fc;
  }
  
  /* Restaurant section styles */
  .restaurant-section {
    background-color: #0a0a3c;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.restaurant-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.restaurant-logo {
    margin: 15px 20px;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: default;
    pointer-events: none;
}

.restaurant-logo:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.restaurant-logo img {
    max-width: 100%;
    max-height: 100%;
}

.restaurant-name {
    color: white;
    font-size: 16px;
    margin-top: 10px;
}

.location {
    font-size: 12px;
    color: #cccccc;
    font-style: italic;
}

/* Footer styles */
.footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 15px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 14px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .restaurant-logos {
        flex-direction: column;
    }
    
    .restaurant-logo {
        margin: 15px 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #f8f8f8;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-button {
    color: #888;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #000;
}

.modal h2 {
    color: #0a0a3c;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.modal-body {
    margin-top: 20px;
}

.modal-body h3 {
    color: #0a0a3c;
    margin: 25px 0 15px;
    font-size: 18px;
}

.modal-body h4 {
    color: #333;
    margin: 20px 0 10px;
    font-size: 16px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body ul, .modal-body ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body li {
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .restaurant-logos {
        flex-direction: column;
    }
    
    .logo-container {
        margin: 15px 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }
}

/* Thank You Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
  }
  
  .popup-overlay.show {
    display: flex;
    opacity: 1;
  }
  
  .popup-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
  }
  
  .popup-overlay.show .popup-content {
    transform: translateY(0);
  }
  
  .popup-header {
    padding: 15px;
    text-align: right;
  }
  
  .popup-close {
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .popup-close:hover {
    color: #555;
  }
  
  .popup-body {
    padding: 15px 30px 30px;
    text-align: center;
  }
  
  .popup-icon {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
  }
  
  .popup-body h3 {
    color: #0a0a3c;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .popup-body p {
    color: #555;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .popup-body strong {
    color: #0a0a3c;
  }
  
  .popup-button {
    margin-top: 25px;
    background-color: #0a0a3c;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .popup-button:hover {
    background-color: #1a1a6c;
  }

/* Image Modal Container */
#image-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#image-modal-container.active {
  opacity: 1;
  visibility: visible;
}

/* Image Modal Backdrop */
.image-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1001;
}

/* Image Modal */
.image-modal {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s;
}

#image-modal-container.active .image-modal {
  transform: scale(1);
}

/* Close Button */
.close-image-modal {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  background-color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s;
}

.close-image-modal:hover {
  background-color: #f0f0f0;
}

/* Boat Info Image */
.boat-info-image {
  max-width: 100%;
  max-height: calc(90vh - 80px); /* Leave room for the button */
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Availability Button Container */
.availability-button-container {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Check Availability Button */
.check-availability-btn {
  background-color: #d4af37; /* Gold color */
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.check-availability-btn:hover {
  background-color: #c4a030;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.check-availability-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Boat Selection Notification in Contact Form */
.boat-selection-notification {
  background-color: #f8f4e8;
  border-left: 4px solid #d4af37;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.boat-selection-notification strong {
  color: #d4af37;
}

.clear-selection {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  margin-left: 10px;
  transition: color 0.2s;
}

.clear-selection:hover {
  color: #333;
}

/* Form highlight animation */
@keyframes highlight-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.contact-form.highlight {
  animation: highlight-pulse 1s ease-out;
}

.contact-form.boat-selected {
  border-color: #d4af37;
}

/* This ensures the notification is visible on mobile */
@media (max-width: 768px) {
  .close-image-modal {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  
  .check-availability-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .boat-selection-notification {
    padding: 10px;
    font-size: 14px;
  }
}

/* Video Experience Section - Clean Consolidated Version */

/* Video section core styles */
.video-experience-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: visible; /* Allow badge to extend outside */
  margin-bottom: 70px; /* Space for badge */
  z-index: 1;
}

.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.experience-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.video-content-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.video-headline {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 0;
}

/* Experience badge - consolidated */
.experience-badge {
  position: absolute;
  bottom: -65px; /* Half of badge height for straddling */
  right: 60px;
  width: 130px; /* Larger badge size */
  height: 130px;
  z-index: 100;
}

.badge-inner {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  border: 3px solid #f8c52d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.years {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #1a1a1a;
  position: relative;
}

.plus {
  font-size: 1.8rem;
  position: absolute;
  top: 0;
  right: -18px;
  font-weight: 700;
  color: #f8c52d;
}

.years-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: -5px;
}

.experience-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #666;
  margin-top: -2px;
}

/* Adjacent section handling */
.video-experience-section + section,
.video-experience-section + div {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  margin-top: -30px;
}

.video-experience-section + section::before,
.video-experience-section + div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: transparent;
  z-index: -1;
}

/* Video thumbnails */
.video-thumbnails {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 3;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.thumbnail {
  width: 180px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

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

/* Clean responsive styles */
@media (max-width: 992px) {
  .video-headline {
    font-size: 3.5rem;
  }
  
  .experience-badge {
    width: 120px;
    height: 120px;
    right: 40px;
    bottom: -60px;
  }
  
  .years {
    font-size: 2.8rem;
  }
  
  .plus {
    font-size: 1.6rem;
    right: -16px;
  }
  
  .years-text {
    font-size: 1.2rem;
  }
  
  .experience-text {
    font-size: 0.75rem;
  }
  
  .video-thumbnails {
    max-width: 450px;
  }
  
  .thumbnail {
    width: 160px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .video-headline {
    font-size: 2.8rem;
  }
  
  .experience-badge {
    width: 100px;
    height: 100px;
    right: 50px;
    bottom: -50px;
  }
  
  .years {
    font-size: 2.2rem;
  }
  
  .plus {
    font-size: 1.3rem;
    right: -12px;
  }
  
  .years-text {
    font-size: 1rem;
  }
  
  .experience-text {
    font-size: 0.65rem;
  }
  
  .video-thumbnails {
    bottom: 30px;
  }
  
  .thumbnail {
    width: 130px;
    height: 85px;
  }
}

@media (max-width: 576px) {
  .video-experience-section {
    height: 90vh;
  }
  
  .video-headline {
    font-size: 2.2rem;
  }
  
  .experience-badge {
    width: 90px;
    height: 90px;
    right: 40px;
    bottom: -45px;
  }
  
  .badge-inner {
    border-width: 2px;
  }
  
  .years {
    font-size: 2rem;
  }
  
  .plus {
    font-size: 1.1rem;
    right: -10px;
  }
  
  .years-text {
    font-size: 0.9rem;
  }
  
  .experience-text {
    font-size: 0.6rem;
  }
  
  .video-thumbnails {
    flex-wrap: wrap;
    gap: 10px;
    bottom: 20px;
  }
  
  .thumbnail {
    width: 110px;
    height: 70px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .experience-badge {
    right: 30px;
    width: 80px;
    height: 80px;
    bottom: -40px;
  }
}

@media (max-width: 360px) {
  .experience-badge {
    right: 20px;
    width: 70px;
    height: 70px;
    bottom: -35px;
  }
}

/* Featured boat styling - matched to your design */
.boat-card.featured-boat {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-column: 1 / -1;
  margin-bottom: 30px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  height: auto;
  border: none;
  background: white;
}

/* Boat image styles */
.boat-card.featured-boat .boat-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.boat-card.featured-boat .boat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide default boat name and details */
.boat-card.featured-boat .boat-name,
.boat-card.featured-boat .boat-details {
  display: none;
}

/* Featured content section */
.featured-content {
  background-color: #174a75;
  background: linear-gradient(135deg, #174a75 0%, #156082 100%);
  color: white;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title styling */
.featured-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  line-height: 1.1;
}

/* Description styling */
.featured-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

/* Specs section */
.featured-specs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.spec-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spec-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 20px;
}

.spec-value {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.spec-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Price section */
.featured-price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.price-value {
  font-size: 28px;
  font-weight: 700;
  color: white;
}

/* Book button */
.book-button {
  background-color: #f8c52d;
  color: #0a0a3c;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.book-button:hover {
  background-color: #ffda5e;
  transform: translateY(-2px);
}

/* Premium badge */
.featured-badge {
  position: absolute;
  top: 16px;
  right: 30px;
  background-color: #f8c52d;
  color: #0a0a3c;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  z-index: 5;
}

/* Responsive styles */
@media (max-width: 992px) {
  .boat-card.featured-boat {
    grid-template-columns: 1fr;
  }
  
  .boat-card.featured-boat .boat-image {
    min-height: 300px;
  }
  
  .featured-content {
    padding: 30px 25px;
  }
  
  .featured-specs {
    margin-bottom: 30px;
  }
}
#nautiq-link {
    display: none;
}

@media (max-width: 576px) {
  .featured-title {
    font-size: 28px;
  }
  
  .featured-price-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .book-button {
    width: 100%;
    text-align: center;
  }
  
  .spec-icon {
    width: 50px;
    height: 50px;
  }
}
