/**
 * Yacht Landing Page Styles
 *
 * "Caribbean Elegance" — Luxury nautical aesthetic
 * Editorial magazine quality with organic Caribbean warmth.
 *
 * Typography: Playfair Display (display) + DM Sans (body)
 * Palette: Deep ocean blues, champagne gold, coral sunset
 *
 * @requires tokens.css
 */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ============================================
   YACHT-SPECIFIC DESIGN TOKENS
   ============================================ */
.yacht-landing-page {
  /* Refined ocean palette - deeper, more sophisticated */
  --yacht-ocean-abyss: #061729;
  --yacht-ocean-deep: #0c2942;
  --yacht-ocean-mid: #15405f;
  --yacht-ocean-light: #1e5a7e;
  --yacht-horizon: #3d8ab8;
  --yacht-sky: #7eb8d8;

  /* PCA Orange accents - vibrant tropical brand colors */
  --yacht-gold: #FF6B00;
  --yacht-gold-light: #FF8C61;
  --yacht-gold-glow: #FFAD8A;
  --yacht-champagne: #FFF5F0;

  /* Coral sunset - warm accents */
  --yacht-coral: #e07b5d;
  --yacht-coral-soft: #f0a891;
  --yacht-sunset: #f5c4a1;

  /* Neutral tones */
  --yacht-sand: #faf8f5;
  --yacht-sand-dark: #f0ebe4;
  --yacht-slate: #4a5568;
  --yacht-charcoal: #2d3748;

  /* Typography */
  --yacht-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --yacht-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --yacht-space-xs: 0.25rem;
  --yacht-space-sm: 0.5rem;
  --yacht-space-md: 1rem;
  --yacht-space-lg: 1.5rem;
  --yacht-space-xl: 2rem;
  --yacht-space-2xl: 3rem;
  --yacht-space-3xl: 4rem;

  /* Border radius */
  --yacht-radius-sm: 0.375rem;
  --yacht-radius-md: 0.5rem;
  --yacht-radius-lg: 0.75rem;
  --yacht-radius-xl: 1rem;
  --yacht-radius-2xl: 1.5rem;

  /* Shadows - more dramatic */
  --yacht-shadow-sm: 0 1px 3px rgba(6, 23, 41, 0.08);
  --yacht-shadow-md: 0 4px 12px rgba(6, 23, 41, 0.1);
  --yacht-shadow-lg: 0 8px 30px rgba(6, 23, 41, 0.12);
  --yacht-shadow-xl: 0 20px 50px rgba(6, 23, 41, 0.18);
  --yacht-shadow-gold: 0 8px 30px rgba(255, 107, 53, 0.25);

  /* Animation timing */
  --yacht-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --yacht-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --yacht-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   BASE STYLES
   ============================================ */
.yacht-landing-page {
  font-family: var(--yacht-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--yacht-charcoal);
  background: var(--yacht-sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain texture overlay for depth */
.yacht-landing-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Headings */
.yacht-landing-page h1,
.yacht-landing-page h2,
.yacht-landing-page h3,
.yacht-landing-page h4,
.yacht-landing-page h5,
.yacht-landing-page h6 {
  font-family: var(--yacht-font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--yacht-ocean-deep);
}

.yacht-landing-page .display-4,
.yacht-landing-page .display-5,
.yacht-landing-page .display-6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.yacht-landing-page .lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--yacht-slate);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .yacht-landing-page .lead {
    font-size: 1.25rem;
  }
}

/* Skip Link (Accessibility) */
.yacht-landing-page .skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--yacht-gold);
  color: var(--yacht-ocean-deep);
  padding: 12px 24px;
  z-index: 9999;
  transition: top 0.3s var(--yacht-ease-out);
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 var(--yacht-radius-md) 0;
}

.yacht-landing-page .skip-link:focus {
  top: 0;
}

/* Focus States */
.yacht-landing-page :focus-visible {
  outline: 3px solid var(--yacht-gold);
  outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .yacht-landing-page *,
  .yacht-landing-page *::before,
  .yacht-landing-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   BUTTONS - Primary CTA (matches brand gradient)
   ============================================ */
.yacht-landing-page .btn-primary {
  background: linear-gradient(135deg, #324FBE 0%, #2A42A1 100%);
  border: none;
  --bs-btn-hover-bg: #2A42A1;
  --bs-btn-hover-border-color: #2A42A1;
  --bs-btn-active-bg: #243890;
  --bs-btn-disabled-bg: var(--yacht-slate);
  --bs-btn-disabled-border-color: var(--yacht-slate);
  --bs-btn-color: #ffffff;
  --bs-btn-hover-color: #ffffff;
  /* Typography from design system */
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: var(--weight-semibold);
  line-height: 1.25;
  letter-spacing: 0.02em;
  border-radius: var(--yacht-radius-lg);
  padding: 14px 28px;
  transition: all 0.3s var(--yacht-ease-out);
  box-shadow: 0 4px 14px rgba(50, 79, 190, 0.3);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on hover */
.yacht-landing-page .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: left 0.6s var(--yacht-ease-out);
}

.yacht-landing-page .btn-primary:hover::before {
  left: 100%;
}

.yacht-landing-page .btn-primary:hover {
  background: #2A42A1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(50, 79, 190, 0.4);
}

.yacht-landing-page .btn-primary:active {
  transform: translateY(0);
}

.yacht-landing-page .btn-lg {
  padding: 18px 36px;
  font-size: var(--fs-h4); /* 16px per design system */
  border-radius: var(--yacht-radius-xl);
}

.yacht-landing-page .btn-outline-primary {
  --bs-btn-color: var(--yacht-ocean-mid);
  --bs-btn-border-color: var(--yacht-ocean-mid);
  --bs-btn-hover-bg: var(--yacht-ocean-mid);
  --bs-btn-hover-border-color: var(--yacht-ocean-mid);
  --bs-btn-hover-color: white;
  --bs-btn-active-bg: var(--yacht-ocean-deep);
  font-family: var(--yacht-font-display);
  font-weight: 600;
  border-radius: var(--yacht-radius-lg);
  border-width: 2px;
  transition: all 0.3s var(--yacht-ease-out);
}

.yacht-landing-page .btn-success {
  --bs-btn-bg: #25d366;
  --bs-btn-border-color: #25d366;
  --bs-btn-hover-bg: #20bd5a;
  --bs-btn-hover-border-color: #20bd5a;
  border-radius: var(--yacht-radius-lg);
  transition: all 0.3s var(--yacht-ease-out);
}

.yacht-landing-page .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ============================================
   FORMS
   ============================================ */

/* Prevent loading cursor on form elements */
.yacht-landing-page .yacht-form-card,
.yacht-landing-page .yacht-form-card * {
  cursor: auto;
}

.yacht-landing-page .form-control {
  border: 2px solid rgba(21, 64, 95, 0.15);
  border-radius: var(--yacht-radius-lg);
  padding: 16px 18px;
  font-size: 1rem;
  font-family: var(--yacht-font-body);
  transition: all 0.3s var(--yacht-ease-out);
  background: white;
  cursor: text;
}

.yacht-landing-page .form-control:focus {
  border-color: var(--yacht-gold);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.yacht-landing-page .form-control.is-invalid {
  border-color: var(--yacht-coral);
}

.yacht-landing-page .form-floating > label {
  padding: 16px 18px;
  color: var(--yacht-slate);
  font-size: 0.95rem;
}

.yacht-landing-page .form-floating > .form-control:focus ~ label,
.yacht-landing-page .form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--yacht-gold);
  font-weight: 500;
}

/* Form Select (Bootstrap 5 floating labels) */
.yacht-landing-page .form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  border: 2px solid rgba(21, 64, 95, 0.15);
  border-radius: var(--yacht-radius-lg);
  font-family: var(--yacht-font-body);
  transition: all 0.3s var(--yacht-ease-out);
}

.yacht-landing-page .form-floating > .form-select:focus {
  border-color: var(--yacht-gold);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.yacht-landing-page .form-floating > .form-select ~ label {
  padding: 16px 18px;
  color: var(--yacht-slate);
  font-size: 0.95rem;
}

/* Large group helper text */
.yacht-landing-page .yacht-group-helper {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  color: var(--yacht-gold);
}

/* Flexible date toggle checkbox - gold accent */
.yacht-landing-page .form-check-input:checked {
  background-color: var(--yacht-gold);
  border-color: var(--yacht-gold);
}

.yacht-landing-page .form-check-input:focus {
  border-color: var(--yacht-gold);
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.yacht-landing-page .form-check-label {
  font-size: 0.875rem;
  color: var(--yacht-slate);
}

/* Flatpickr date picker - fix readonly gray background */
.yacht-landing-page .flatpickr-input,
.yacht-landing-page .yacht-datepicker {
  cursor: pointer;
  background-color: #fff !important;
}

.yacht-landing-page .yacht-datepicker:read-only {
  background-color: #fff !important;
}

/* Multiple dates display */
.yacht-landing-page .flatpickr-input.flatpickr-multiple {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Phone progressive disclosure */
.yacht-landing-page .yacht-phone-toggle {
  color: var(--yacht-slate);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.yacht-landing-page .yacht-phone-toggle:hover {
  color: var(--yacht-gold);
}

.yacht-landing-page .yacht-phone-field {
  animation: yachtSlideDown 0.3s var(--yacht-ease-out);
}

@keyframes yachtSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Notes textarea */
.yacht-landing-page textarea.form-control {
  min-height: 80px;
  resize: vertical;
}

/* Form Section Divider */
.yacht-landing-page .yacht-form-divider {
  position: relative;
  margin: 0.75rem 0;
  padding: 0.25rem 0;
}

.yacht-landing-page .yacht-form-divider::before,
.yacht-landing-page .yacht-form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 90px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.yacht-landing-page .yacht-form-divider::before {
  left: 0;
}

.yacht-landing-page .yacht-form-divider::after {
  right: 0;
}

.yacht-landing-page .yacht-form-divider span {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--yacht-slate);
  letter-spacing: 0.02em;
}

/* Optional Fields Links */
.yacht-landing-page .yacht-optional-links {
  justify-content: center;
}

.yacht-landing-page .yacht-optional-links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.yacht-landing-page .yacht-optional-links a:hover {
  color: var(--yacht-gold) !important;
}

/* Flexible date link in label */
.yacht-landing-page .yacht-flexible-link {
  text-decoration: none;
  font-size: 0.7rem;
  margin-left: 0.25rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.yacht-landing-page .yacht-flexible-link:hover {
  color: var(--yacht-gold) !important;
}

.yacht-landing-page .yacht-flexible-link.text-success {
  color: #28a745 !important;
  font-weight: 500;
}

/* Compact form floating labels for mobile */
.yacht-landing-page .form-floating-sm > .form-control,
.yacht-landing-page .form-floating-sm > .form-select {
  height: calc(3rem + 2px);
  padding: 0.75rem 0.75rem;
}

.yacht-landing-page .form-floating-sm > label {
  padding: 0.75rem 0.75rem;
}

.yacht-landing-page .form-floating-sm > .form-control:focus ~ label,
.yacht-landing-page .form-floating-sm > .form-control:not(:placeholder-shown) ~ label,
.yacht-landing-page .form-floating-sm > .form-select ~ label {
  transform: scale(0.85) translateY(-0.4rem) translateX(0.1rem);
}

/* ============================================
   SELECT FLOATING LABEL - Always floated position
   ============================================ */
.yacht-landing-page .form-floating > .form-select ~ label,
.yacht-landing-page .form-floating-sm > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Focus state - highlight label */
.yacht-landing-page .form-floating > .form-select:focus ~ label,
.yacht-landing-page .form-floating-sm > .form-select:focus ~ label {
  color: var(--yacht-gold);
  opacity: 1;
}

/* Ensure select height matches inputs on mobile */
.yacht-landing-page .form-floating-sm > .form-select {
  height: calc(3rem + 2px);
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

/* ============================================
   CUSTOM SELECT STYLING
   ============================================ */
/* Custom dropdown arrow - brand orange (following Bootstrap form-select pattern) */
.yacht-landing-page .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FF6B00' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

/* Placeholder option styling */
.yacht-landing-page .form-select option[value=""] {
  color: var(--yacht-slate);
}

/* Invalid state for select */
.yacht-landing-page .form-select.is-invalid {
  border-color: var(--yacht-coral);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e07b5d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

/* ============================================
   TOM SELECT - Time Dropdown Styling
   ============================================ */
.yacht-landing-page .yacht-tom-select {
  width: 100%;
}

.yacht-landing-page .yacht-tom-select .ts-wrapper {
  position: relative;
  width: 100%;
}

/* Reset Bootstrap .form-select styles on Tom Select wrapper (prevents double-border/nested look) */
.yacht-landing-page .ts-wrapper.form-select {
  background-image: none;
  border: none;
  padding: 0;
  min-height: auto;
  background-color: transparent;
}

/* Control - matches .form-floating input styling */
.yacht-landing-page .yacht-tom-select .ts-control {
  min-height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem 0.25rem;
  border: 2px solid rgba(21, 64, 95, 0.15);
  border-radius: var(--yacht-radius-lg);
  background: white;
  color: var(--yacht-charcoal);
  font-size: 1rem;
  font-family: var(--yacht-font-body);
  transition: all 0.3s var(--yacht-ease-out);
  cursor: pointer;
}

.yacht-landing-page .yacht-tom-select .ts-control:focus,
.yacht-landing-page .yacht-tom-select.focus .ts-control {
  border-color: var(--yacht-gold);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
  outline: none;
}

/* Selected item text */
.yacht-landing-page .yacht-tom-select .ts-control .item {
  color: var(--yacht-charcoal);
  font-size: 1rem;
}

/* Placeholder text */
.yacht-landing-page .yacht-tom-select .ts-control > input::placeholder {
  color: var(--yacht-slate);
  opacity: 0.7;
}

/* Dropdown arrow */
.yacht-landing-page .yacht-tom-select .ts-control::after {
  content: '';
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FF6B00' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Dropdown menu */
.yacht-landing-page .yacht-tom-select .ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1040;
  margin-top: 4px;
  background: white;
  border: 2px solid rgba(21, 64, 95, 0.15);
  border-radius: var(--yacht-radius-lg);
  box-shadow: var(--yacht-shadow-lg);
  max-height: 200px;
  overflow-y: auto;
}

/* Dropdown options */
.yacht-landing-page .yacht-tom-select .ts-dropdown .option {
  padding: 0.75rem 1rem;
  color: var(--yacht-charcoal);
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.yacht-landing-page .yacht-tom-select .ts-dropdown .option:hover,
.yacht-landing-page .yacht-tom-select .ts-dropdown .option.active {
  background-color: var(--yacht-champagne);
}

.yacht-landing-page .yacht-tom-select .ts-dropdown .option.selected {
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--yacht-gold);
  font-weight: 500;
}

/* Error state - applied to wrapper */
.yacht-landing-page .yacht-tom-select.is-invalid .ts-control {
  border-color: var(--yacht-coral);
  box-shadow: 0 0 0 4px rgba(224, 123, 93, 0.15);
}

.yacht-landing-page .form-floating .yacht-tom-select .ts-control.is-invalid {
  border-color: var(--yacht-coral);
}

/* Hide native select when Tom Select is active */
.yacht-landing-page .yacht-tom-select + select.tomselected,
.yacht-landing-page select.tomselected {
  display: none !important;
}

/* Position the wrapper within floating label container */
.yacht-landing-page .form-floating .yacht-tom-select {
  height: auto;
}

/* Floating label for Tom Select */
.yacht-landing-page .form-floating .yacht-tom-select ~ label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem 0.75rem;
  pointer-events: none;
  color: var(--yacht-slate);
  font-size: 0.95rem;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Mobile - prevent iOS zoom */
@media (max-width: 991.98px) {
  .yacht-landing-page .yacht-tom-select .ts-control {
    font-size: 16px;
  }

  .yacht-landing-page .yacht-tom-select .ts-dropdown {
    max-height: 180px;
  }

  .yacht-landing-page .yacht-tom-select .ts-dropdown .option {
    font-size: 16px;
  }
}

/* ============================================
   HIGH CONTRAST MODE SUPPORT
   ============================================ */
/* Windows High Contrast Mode support */
@media (forced-colors: active) {
  .yacht-landing-page :focus-visible {
    outline-color: Highlight;
  }

  .yacht-landing-page .form-select,
  .yacht-landing-page .form-control {
    border-color: CanvasText;
  }

  .yacht-landing-page .btn-primary {
    border: 2px solid ButtonText;
  }

  .yacht-landing-page .form-select.is-invalid,
  .yacht-landing-page .form-control.is-invalid {
    border-color: LinkText;
  }
}

/* Inline trust strip */
.yacht-landing-page .yacht-trust-inline {
  font-size: 0.75rem;
  opacity: 0.85;
}


/* Form Success State */
.yacht-landing-page .yacht-form-success {
  animation: yachtFadeInUp 0.5s var(--yacht-ease-out);
}

@keyframes yachtFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CARDS
   ============================================ */
.yacht-landing-page .card {
  border: none;
  border-radius: var(--yacht-radius-2xl);
  box-shadow: var(--yacht-shadow-lg);
  background: white;
}

.yacht-landing-page .card-body {
  padding: var(--yacht-space-xl);
}

/* Frosted glass card variant */
.yacht-landing-page .yacht-form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 32px rgba(6, 23, 41, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ============================================
   HERO SECTION
   ============================================ */
.yacht-landing-page .yacht-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* Subtle base - let the image shine */
  background: linear-gradient(
    135deg,
    #0a3d5c 0%,
    #0d5472 50%,
    #1a7a8a 100%
  );
}

/* Background image - VIBRANT, show the azure water */
.yacht-landing-page .yacht-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2026/01/Punta-Cana-Private-Boat-Rental.webp');
  background-size: cover;
  /* Position boat in top-right, clear water on left for text */
  background-position: right 15% top 0;
  /* High opacity to show beautiful colors */
  opacity: 0.92;
  /* No blend mode - preserve natural azure tones */
}

/* Mobile hero background - vertical image */
@media (max-width: 767px) {
  .yacht-landing-page .yacht-hero::before {
    background-image: url('https://www.puntacanaadventures.com/wp-content/uploads/2026/01/Punta-Cana-Private-Boat-Rentals.webp');
    background-position: center top;
  }
}

/* Subtle vignette for depth */
.yacht-landing-page .yacht-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 120% 100% at 50% 50%,
    transparent 40%,
    rgba(6, 40, 60, 0.2) 100%
  );
  pointer-events: none;
}

/* Strategic overlay - dark left for text, bright right for boat */
.yacht-landing-page .yacht-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Top-left corner gradient for logo */
    linear-gradient(
      135deg,
      rgba(6, 35, 55, 0.25) 0%,
      transparent 35%
    ),
    /* Left side text region - stronger contrast for readability */
    linear-gradient(
      to right,
      rgba(6, 35, 55, 0.55) 0%,
      rgba(6, 35, 55, 0.35) 30%,
      rgba(6, 35, 55, 0.15) 45%,
      transparent 55%
    );
}

/* ══════════════════════════════════════════════════════
   LOGO BAR - Minimal header for standalone landing page
   ══════════════════════════════════════════════════════ */

.yacht-logo-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 24px 0;
  /* Subtle gradient for legibility against hero image */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 60%,
    transparent 100%
  );
}

.yacht-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.yacht-logo-link:hover {
  opacity: 0.85;
}

.yacht-logo-link:active {
  transform: scale(0.98);
}

.yacht-logo-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}

.yacht-logo {
  width: 160px;
  height: auto;
  /* Invert to white + subtle shadow for depth */
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: filter 0.2s ease;
}

/* Responsive Logo Adjustments */
@media (max-width: 991.98px) {
  .yacht-logo-bar {
    padding: 20px 0;
  }

  .yacht-logo {
    width: 140px;
  }
}

@media (max-width: 767.98px) {
  .yacht-logo-bar {
    padding: 16px 0;
    text-align: center;
  }

  .yacht-logo {
    width: 120px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .yacht-logo-link,
  .yacht-logo {
    transition: none;
  }
}

/* ============================================
   HERO GRID LAYOUT - Single Form Positioning
   ============================================ */
/* Let Bootstrap's row/col grid handle the layout naturally */
/* Mobile: form stacks below hero copy via Bootstrap's col system */
/* Desktop: two-column layout via col-lg-6 and col-lg-5 */

/* Mobile: reduce horizontal padding on form column */
@media (max-width: 991.98px) {
  .yacht-landing-page .yacht-hero-grid > .col-lg-5 {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Wave pattern SVG decoration */
.yacht-landing-page .min-vh-75 {
  min-height: 75vh;
  min-height: 75svh;
}

/* Trust Badge */
.yacht-landing-page .yacht-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 23, 41, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.2s both;
}

.yacht-landing-page .yacht-trust-badge i {
  color: var(--yacht-gold);
  font-size: 1rem;
}

/* Hero Title - staggered reveal */
.yacht-landing-page .yacht-hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: white;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.3s both;
}

.yacht-landing-page .yacht-hero-subtitle {
  font-family: var(--yacht-font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--yacht-gold-light) !important;
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.4s both;
}

/* Hero lead paragraph */
.yacht-landing-page .yacht-hero .lead {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.5s both;
}

/* Hero subcopy - scannable with emphasis */
.yacht-landing-page .yacht-hero-subcopy {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff !important;
}

.yacht-landing-page .yacht-hero-subcopy strong {
  color: var(--yacht-gold-light, #FFD700) !important;
  font-weight: 600;
}

/* Hero USP List - Stacked layout */
.yacht-landing-page .yacht-usp-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.6s both;
}

/* Desktop: 2 columns */
@media (min-width: 768px) {
  .yacht-landing-page .yacht-usp-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
  }
}

.yacht-landing-page .yacht-usp-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff !important;
  font-size: 0.9375rem;
}

/* Override global .align-items-center span { color: #000 } rule from style.css */
.yacht-landing-page .yacht-usp-item span {
  color: #ffffff !important;
}

.yacht-landing-page .yacht-usp-item i {
  color: #FF6B00;
  font-size: 1rem;
  width: 1.25rem;
  flex-shrink: 0;
}

/* Legacy trust signals (keep for compatibility) */
.yacht-landing-page .yacht-trust-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.6s both;
}

.yacht-landing-page .yacht-trust-signal i {
  color: #FF6B00;
  font-size: 1.25rem;
}

/* Proof quote above form */
.yacht-landing-page .yacht-proof-quote {
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.5s both;
}

.yacht-landing-page .yacht-proof-quote p {
  font-family: var(--font-display); /* Plus Jakarta Sans - readable */
  font-style: normal;
  font-weight: var(--weight-medium);
  font-size: 1.125rem;
  line-height: 1.5;
}

.yacht-landing-page .yacht-proof-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
}

/* Desktop form card animation */
.yacht-landing-page .yacht-hero .yacht-form-container {
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.6s both;
}

/* Mobile form animation */
.yacht-landing-page .yacht-hero #yacht-mobile-form .yacht-form-container {
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.7s both;
}

/* Scroll Indicator */
.yacht-landing-page .yacht-scroll-indicator {
  margin-top: auto;
  padding-bottom: 40px;
  text-align: center;
  z-index: 11;
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 1s both;
}

.yacht-landing-page .yacht-scroll-indicator a {
  color: white !important;
  text-decoration: none;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.yacht-landing-page .yacht-bounce {
  animation: yachtBounce 2.5s infinite var(--yacht-ease-in-out);
}

@keyframes yachtBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ============================================
   GOOGLE REVIEWS TRUST STRIP
   ============================================ */
.yacht-landing-page .yacht-google-strip {
  background: #1a1f2e;
  padding: 1rem 0;
}

.yacht-landing-page .yacht-google-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Stacked overlapping avatars */
.yacht-landing-page .yacht-avatars {
  display: flex;
}

.yacht-landing-page .yacht-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #1a1f2e;
  margin-left: -12px;
  object-fit: cover;
}

.yacht-landing-page .yacht-avatars img:first-child {
  margin-left: 0;
}

/* Google badge */
.yacht-landing-page .yacht-google-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.9375rem;
}

.yacht-landing-page .yacht-google-badge i {
  color: #4285f4;
  font-size: 1.25rem;
}

.yacht-landing-page .yacht-google-badge strong {
  color: #ffffff;
}

/* ============================================
   VALUE STACK SECTION
   ============================================ */
.yacht-landing-page .yacht-value-section {
  background: white;
  position: relative;
  padding-top: 5rem;
}

/* Decorative wave at top (continuation from hero) */
.yacht-landing-page .yacht-value-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    rgba(61, 138, 184, 0.03) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.yacht-landing-page .yacht-value-card {
  background: white;
  border: 1px solid rgba(21, 64, 95, 0.08);
  border-radius: var(--yacht-radius-2xl);
  padding: var(--yacht-space-xl);
  transition: all 0.4s var(--yacht-ease-out);
  height: 100%;
  position: relative;
}

.yacht-landing-page .yacht-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yacht-gold), var(--yacht-gold-light));
  border-radius: var(--yacht-radius-2xl) var(--yacht-radius-2xl) 0 0;
  opacity: 0;
  transition: opacity 0.4s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--yacht-shadow-xl);
  border-color: rgba(255, 107, 53, 0.2);
}

.yacht-landing-page .yacht-value-card:hover::before {
  opacity: 1;
}

.yacht-landing-page .yacht-value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yacht-champagne) 0%, var(--yacht-sand) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--yacht-radius-xl);
  margin-bottom: var(--yacht-space-lg);
}

.yacht-landing-page .yacht-value-icon i {
  font-size: 1.5rem;
  color: var(--yacht-ocean-mid);
}

.yacht-landing-page .yacht-value-card h4 {
  font-family: var(--yacht-font-display);
  color: var(--yacht-ocean-deep);
}

.yacht-landing-page .yacht-value-card ul li {
  font-size: 0.875rem;
  line-height: 1.4;
}

.yacht-landing-page .yacht-value-card ul li span {
  color: #475569;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.yacht-landing-page .yacht-testimonials-section {
  background: linear-gradient(180deg, var(--yacht-sand) 0%, var(--yacht-sand-dark) 100%);
  position: relative;
}

.yacht-landing-page .yacht-testimonial-card {
  background: white;
  border-radius: var(--yacht-radius-2xl);
  padding: var(--yacht-space-lg);
  box-shadow: var(--yacht-shadow-md);
  transition: all 0.4s var(--yacht-ease-out);
  height: 100%;
  border: 1px solid transparent;
  position: relative;
  /* Flexbox for consistent card heights */
  display: flex;
  flex-direction: column;
}

/* Make blockquote grow to push footer down */
.yacht-landing-page .yacht-testimonial-card blockquote {
  flex: 1;
}

/* Quote mark decoration */
.yacht-landing-page .yacht-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--yacht-font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--yacht-gold);
  opacity: 0.15;
  pointer-events: none;
}

.yacht-landing-page .yacht-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--yacht-shadow-lg);
  border-color: rgba(255, 107, 53, 0.3);
}

.yacht-landing-page .yacht-stars {
  color: var(--yacht-gold);
  font-size: 0.875rem;
  gap: 1px;
}

.yacht-landing-page .yacht-testimonial-card .yacht-stars {
  margin-bottom: 0.75rem !important;
}

.yacht-landing-page .yacht-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--yacht-ocean-mid) 0%, var(--yacht-ocean-deep) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--yacht-font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

/* Hide avatar when photo is present */
.yacht-landing-page .yacht-testimonial-with-photo .yacht-avatar {
  display: none;
}

/* Testimonial with customer photo */
.yacht-landing-page .yacht-testimonial-photo {
  margin: calc(-1 * var(--yacht-space-lg));
  margin-bottom: var(--yacht-space-md);
  border-radius: var(--yacht-radius-2xl) var(--yacht-radius-2xl) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.yacht-landing-page .yacht-testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-testimonial-with-photo:hover .yacht-testimonial-photo img {
  transform: scale(1.03);
}

/* Hide quote mark for cards with photos */
.yacht-landing-page .yacht-testimonial-with-photo::before {
  display: none;
}

.yacht-landing-page blockquote {
  margin-bottom: 1rem !important;
}

.yacht-landing-page blockquote p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--yacht-charcoal);
  position: relative;
  z-index: 1;
}

/* Tighter footer in testimonial cards */
.yacht-landing-page .yacht-testimonial-card footer {
  margin-bottom: 0.75rem;
}

.yacht-landing-page .yacht-testimonial-card .border-top {
  padding-top: 0.75rem !important;
  margin-top: 0.75rem !important;
}

/* Typography hierarchy for reviewer attribution */
.yacht-landing-page .yacht-testimonial-card footer strong {
  font-size: 0.9375rem;
  font-family: var(--yacht-font-display);
  color: var(--yacht-ocean-deep);
  font-weight: 600;
}

.yacht-landing-page .yacht-testimonial-card footer small {
  font-size: 0.75rem;
  color: var(--yacht-slate);
}

/* External link icon */
.yacht-landing-page .yacht-testimonial-card .bi-box-arrow-up-right {
  font-size: 0.7em;
  opacity: 0.7;
}

/* Verified badge icon - Google blue */
.yacht-landing-page .yacht-testimonial-card .bi-patch-check-fill {
  color: #0d6efd !important;
}

/* Testimonial responsive breakpoints */
@media (max-width: 991px) {
  .yacht-landing-page .yacht-testimonial-card {
    padding: var(--yacht-space-md);
  }

  .yacht-landing-page .yacht-testimonial-photo {
    margin: calc(-1 * var(--yacht-space-md));
    margin-bottom: var(--yacht-space-sm);
    aspect-ratio: 16 / 9;
  }

  .yacht-landing-page .yacht-testimonial-photo img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 575px) {
  .yacht-landing-page .yacht-testimonial-card {
    border-radius: var(--yacht-radius-xl);
  }

  .yacht-landing-page .yacht-testimonial-photo {
    border-radius: var(--yacht-radius-xl) var(--yacht-radius-xl) 0 0;
  }

  .yacht-landing-page blockquote p {
    font-size: 0.8125rem;
  }

  /* Mobile touch targets */
  .yacht-landing-page .yacht-testimonial-card .border-top a {
    display: inline-block;
    padding: 0.5rem 0;
    min-height: 44px;
    line-height: 2;
  }
}

/* Trust Badges Row */
.yacht-landing-page .yacht-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--yacht-space-2xl);
}

.yacht-landing-page .yacht-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.yacht-landing-page .yacht-trust-item i {
  font-size: 1.75rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.yacht-landing-page .yacht-gallery-section {
  background: white;
  overflow: visible;
  position: relative;
}

.yacht-landing-page .yacht-gallery-section .container {
  position: relative;
  z-index: 1;
}

.yacht-landing-page .yacht-gallery-section .row.justify-content-center {
  margin-bottom: 3rem !important;
  position: relative;
  z-index: 2;
}

.yacht-landing-page .yacht-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
  margin-top: 2rem;
  clear: both;
}

@media (max-width: 768px) {
  .yacht-landing-page .yacht-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
    margin-top: 1.5rem;
  }
  
  .yacht-landing-page .yacht-gallery-item {
    min-height: 180px;
  }
  
  .yacht-landing-page .yacht-gallery-item--wide {
    min-height: 180px;
  }
  
  .yacht-landing-page .yacht-gallery-item--tall {
    min-height: 380px;
  }
}

@media (max-width: 480px) {
  .yacht-landing-page .yacht-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    margin-top: 1.5rem;
  }
  
  .yacht-landing-page .yacht-gallery-item {
    min-height: 220px;
  }
  
  .yacht-landing-page .yacht-gallery-item--wide {
    min-height: 220px;
  }
  
  .yacht-landing-page .yacht-gallery-item--tall {
    min-height: 220px;
  }
}

.yacht-landing-page .yacht-gallery-item {
  border-radius: var(--yacht-radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 240px;
  height: 100%;
  display: flex;
  align-items: stretch;
}

/* Hover overlay */
.yacht-landing-page .yacht-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 23, 41, 0.4) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-gallery-item:hover::after {
  opacity: 1;
}

.yacht-landing-page .yacht-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--yacht-ease-out);
  display: block;
}

.yacht-landing-page .yacht-gallery-item:hover img {
  transform: scale(1.1);
}

.yacht-landing-page .yacht-gallery-item--wide {
  grid-column: span 2;
  min-height: 400px;
}

.yacht-landing-page .yacht-gallery-item--tall {
  grid-row: span 2;
  min-height: 500px;
}

@media (max-width: 480px) {
  .yacht-landing-page .yacht-gallery-item--wide,
  .yacht-landing-page .yacht-gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.yacht-landing-page .yacht-how-section {
  background: var(--yacht-sand);
  position: relative;
}

/* Connecting line between steps (desktop) */
@media (min-width: 768px) {
  .yacht-landing-page .yacht-how-section .row {
    position: relative;
  }

  .yacht-landing-page .yacht-how-section .row::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--yacht-gold) 20%,
      var(--yacht-gold) 80%,
      transparent 100%
    );
    opacity: 0.3;
    z-index: 0;
  }
}

.yacht-landing-page .yacht-step-card {
  text-align: center;
  padding: var(--yacht-space-xl);
  position: relative;
  z-index: 1;
}

.yacht-landing-page .yacht-step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--yacht-gold) 0%, var(--yacht-gold-light) 100%);
  color: var(--yacht-ocean-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--yacht-font-display);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto var(--yacht-space-lg);
  box-shadow: var(--yacht-shadow-gold);
  position: relative;
}

/* Subtle ring around step number */
.yacht-landing-page .yacht-step-number::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--yacht-gold);
  border-radius: 50%;
  opacity: 0.3;
}

.yacht-landing-page .yacht-step-card h5 {
  font-family: var(--yacht-font-display);
  color: var(--yacht-ocean-deep);
}

/* ============================================
   RISK REVERSAL SECTION
   ============================================ */
.yacht-landing-page .yacht-risk-section {
  background: white;
}

.yacht-landing-page .yacht-risk-card {
  text-align: center;
  padding: var(--yacht-space-xl);
  background: var(--yacht-sand);
  border-radius: var(--yacht-radius-2xl);
  height: 100%;
  border: 1px solid rgba(21, 64, 95, 0.08);
  transition: all 0.4s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-risk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--yacht-shadow-md);
}

.yacht-landing-page .yacht-risk-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  margin: 0 auto var(--yacht-space-lg);
}

.yacht-landing-page .yacht-risk-icon i {
  font-size: 2.25rem;
  color: #10b981;
}

.yacht-landing-page .yacht-risk-card h5 {
  font-family: var(--yacht-font-display);
  color: var(--yacht-ocean-deep);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.yacht-landing-page .yacht-faq-section {
  background: var(--yacht-sand);
}

.yacht-landing-page .yacht-accordion-item {
  background: white;
  border-radius: var(--yacht-radius-xl) !important;
  margin-bottom: var(--yacht-space-md);
  box-shadow: var(--yacht-shadow-sm);
  border: 1px solid rgba(21, 64, 95, 0.08);
  overflow: hidden;
  transition: all 0.3s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-accordion-item:hover {
  box-shadow: var(--yacht-shadow-md);
}

.yacht-landing-page .accordion-button {
  font-family: var(--yacht-font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--yacht-ocean-deep);
  background: transparent;
  padding: 22px 28px;
  border-radius: var(--yacht-radius-xl) !important;
}

.yacht-landing-page .accordion-button:not(.collapsed) {
  color: var(--yacht-ocean-mid);
  background: transparent;
  box-shadow: none;
}

.yacht-landing-page .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.yacht-landing-page .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2315405f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s var(--yacht-ease-out);
}

.yacht-landing-page .accordion-body {
  padding: 0 28px 24px 28px;
  color: var(--yacht-slate);
  line-height: 1.75;
  font-size: 0.9375rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.yacht-landing-page .yacht-final-cta {
  position: relative;
  overflow: hidden;

  /* Orange-azure sunset gradient */
  background: linear-gradient(
    165deg,
    #1a3a5c 0%,
    #2d5a7b 25%,
    #e8824c 60%,
    #f4a261 85%,
    #ffb366 100%
  );
}

.yacht-landing-page .yacht-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
    url('https://www.puntacanaadventures.com/wp-content/uploads/2025/03/Punta-Cana-Private-Boat.webp');
  background-size: cover;
  background-position: center 40%;
}

/* Warm sunset glow */
.yacht-landing-page .yacht-final-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(255, 107, 53, 0.15) 0%,
    rgba(255, 107, 53, 0.08) 30%,
    transparent 100%
  );
  pointer-events: none;
}

.yacht-landing-page .yacht-final-cta h2 {
  color: white !important;
  font-family: var(--yacht-font-display);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.yacht-landing-page .yacht-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(21, 64, 95, 0.1);
  padding: var(--yacht-space-md);
  padding-bottom: max(var(--yacht-space-md), env(safe-area-inset-bottom, 16px));
  z-index: 1000;
  box-shadow: 0 -8px 30px rgba(6, 23, 41, 0.12);
  animation: yachtSlideUp 0.4s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-sticky-cta.visible {
  display: block;
}

@keyframes yachtSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .yacht-landing-page .yacht-sticky-cta {
    display: none !important;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.yacht-landing-page .yacht-footer {
  background: white;
  border-top: 1px solid var(--yacht-sand-dark);
}

.yacht-landing-page .yacht-footer p {
  color: var(--yacht-slate) !important;
}

.yacht-landing-page .yacht-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--yacht-slate) !important;
  transition: all 0.3s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-footer a:hover {
  opacity: 1 !important;
  color: var(--yacht-gold) !important;
  transform: translateY(-2px);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.yacht-landing-page .py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 992px) {
  .yacht-landing-page .py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* Section Headers */
.yacht-landing-page .yacht-section-title {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 600;
  color: var(--yacht-ocean-deep);
  line-height: 1.15;
}

.yacht-landing-page .yacht-section-subtitle {
  font-size: 1.125rem;
  color: var(--yacht-slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Success check icon styling */
.yacht-landing-page .text-success {
  color: #10b981 !important;
}

.yacht-landing-page .text-primary {
  color: var(--yacht-ocean-mid) !important;
}

.yacht-landing-page .text-warning {
  color: var(--yacht-gold) !important;
}

/* ============================================
   LOADING STATES
   ============================================ */
.yacht-landing-page .btn .spinner-border {
  width: 1.125rem;
  height: 1.125rem;
  border-width: 0.15em;
}

.yacht-landing-page .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* Invalid feedback styling */
.yacht-landing-page .invalid-feedback {
  font-size: 0.8125rem;
  color: var(--yacht-coral);
  margin-top: 6px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .yacht-landing-page .yacht-value-card,
  .yacht-landing-page .yacht-testimonial-card,
  .yacht-landing-page .yacht-step-card,
  .yacht-landing-page .yacht-risk-card,
  .yacht-landing-page .yacht-gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--yacht-ease-out), transform 0.6s var(--yacht-ease-out);
  }

  .yacht-landing-page .yacht-value-card.visible,
  .yacht-landing-page .yacht-testimonial-card.visible,
  .yacht-landing-page .yacht-step-card.visible,
  .yacht-landing-page .yacht-risk-card.visible,
  .yacht-landing-page .yacht-gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   TRUST STRIP (CRO v3.0)
   ============================================ */
.yacht-landing-page .yacht-trust-strip {
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.7s both;
}

.yacht-landing-page .yacht-trust-strip .badge {
  font-family: var(--yacht-font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(21, 64, 95, 0.1);
  transition: all 0.3s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-trust-strip .badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--yacht-shadow-sm);
}

.yacht-landing-page .yacht-trust-strip .badge i {
  font-size: 0.875rem;
}

/* Form Microcopy */
.yacht-landing-page .yacht-form-microcopy {
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.8s both;
}

.yacht-landing-page .yacht-form-microcopy i {
  color: var(--yacht-gold);
}

/* Secondary CTA Link */
.yacht-landing-page .yacht-secondary-cta {
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.9s both;
}

.yacht-landing-page .yacht-secondary-cta a {
  transition: color 0.3s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-secondary-cta a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ============================================
   COMPACT GALLERY 2x3 GRID (CRO v3.0)
   ============================================ */
.yacht-landing-page .yacht-gallery-card {
  position: relative;
  border-radius: var(--yacht-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--yacht-shadow-md);
  transition: all 0.4s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--yacht-shadow-lg);
}

.yacht-landing-page .yacht-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-gallery-card:hover img {
  transform: scale(1.08);
}

.yacht-landing-page .yacht-gallery-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(6, 23, 41, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--yacht-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-gallery-card:hover .yacht-gallery-label {
  background: var(--yacht-gold);
  color: var(--yacht-ocean-deep);
  border-color: transparent;
}

/* Gallery CTA Button */
.yacht-landing-page .yacht-gallery-section .btn-primary {
  margin-top: var(--yacht-space-lg);
}

/* Responsive Gallery Grid */
@media (max-width: 767.98px) {
  .yacht-landing-page .yacht-gallery-card {
    aspect-ratio: 3/2;
  }

  .yacht-landing-page .yacht-gallery-label {
    font-size: 0.75rem;
    padding: 5px 12px;
    bottom: 8px;
    left: 8px;
  }
}

/* ============================================
   TRUSTED BY UNIVERSITIES (Social Proof)
   ============================================ */
.yacht-landing-page .yacht-trusted-by {
  max-width: 100%;
  animation: yachtFadeInUp 0.8s var(--yacht-ease-out) 0.8s both;
}

.yacht-landing-page .yacht-trusted-label {
  font-family: var(--yacht-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Horizontal scroll container */
.yacht-landing-page .yacht-uni-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;

  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */

  /* Fade edges for scroll affordance */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
}

.yacht-landing-page .yacht-uni-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* University chips - glass morphism */
.yacht-landing-page .yacht-uni-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--yacht-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: all 0.2s var(--yacht-ease-out);
}

.yacht-landing-page .yacht-uni-chip:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
}

.yacht-landing-page .yacht-uni-chip i {
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* Desktop: mousewheel horizontal scroll via CSS scroll-snap */
@media (min-width: 992px) {
  .yacht-landing-page .yacht-uni-scroll {
    /* Slightly larger chips on desktop */
    gap: 10px;
  }

  .yacht-landing-page .yacht-uni-chip {
    padding: 7px 14px;
    font-size: 0.8125rem;
  }
}

/* Mobile: ensure touch scroll works smoothly */
@media (max-width: 991.98px) {
  .yacht-landing-page .yacht-trusted-by {
    /* Full width to edge on mobile */
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .yacht-landing-page .yacht-uni-scroll {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Desktop inline chips layout (under USPs) */
.yacht-landing-page .yacht-uni-chips-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* "+ more" button styling */
.yacht-landing-page .yacht-uni-more {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.yacht-landing-page .yacht-uni-more:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Universities Modal styling */
.yacht-uni-modal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.yacht-uni-chip-modal {
  display: inline-block;
  padding: 6px 12px;
  background: #f1f5f9;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1e293b;
}
