:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f9fc;
  --bg-dark: #071529;
  --bg-dark-blue: #071529;
  --bg-dark-card: #0d203a;
  --text-dark: #0a121e;
  --text-light: #ffffff;
  --text-muted-dark: #536278;
  --text-muted-light: #a3b2c7;
  --accent-gold: #c5a880;
  --accent-gold-hover: #b5976f;
  --accent-gold-glow: rgba(197, 168, 128, 0.2);
  --accent-gold-dark: #856b46;
  
  /* Fonts */
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout & Speeds */
  --header-height: 90px;
  --header-height-scrolled: 70px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Shadows & Borders */
  --shadow-premium: 0 15px 45px rgba(7, 21, 41, 0.05);
  --shadow-dark: 0 25px 60px rgba(7, 21, 41, 0.45);
  --border-gold: 1px solid var(--accent-gold);
  --border-subtle: 1px solid rgba(7, 21, 41, 0.06);
  --border-subtle-dark: 1px solid rgba(197, 168, 128, 0.2);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-padding {
  padding: 8rem 2rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 1.5rem;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Section Title */
.section-title-wrap {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title-wrap span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold-dark);
  margin-bottom: 1rem;
}

.sport-fishing-section .section-title-wrap span {
  color: var(--accent-gold);
}

.section-title-wrap h2 {
  font-size: 3rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title-wrap h2 {
    font-size: 2.2rem;
  }
}

/* Premium Buttons */
.btn-gold {
  display: inline-block;
  padding: 1rem 2.2rem;
  background-color: transparent;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--accent-gold);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-gold);
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  color: #fff;
}

.btn-gold:hover::before {
  left: 0;
}

.btn-gold.btn-light-text {
  color: var(--text-light); /* Enforces crisp white button text against dark hero backgrounds */
}

.btn-gold.btn-light-text:hover {
  color: var(--bg-dark);
}

.btn-gold-solid {
  display: inline-block;
  padding: 1rem 2.2rem;
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--accent-gold);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-gold-solid:hover {
  background-color: transparent;
  color: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* Header & Navigation */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  transition: var(--transition-smooth);
  background-color: rgba(250, 250, 250, 0.02);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  color: var(--text-light); /* Off-white text on dark backgrounds by default */
}

.header-nav.scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(250, 250, 250, 0.95); /* Polished white glassmorphic blur when scrolled */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
  box-shadow: var(--shadow-premium);
  color: var(--text-dark); /* Crisp dark text when header scrolls over page content */
}

/* Fallbacks for sub-menus and active colors */
.header-nav.scrolled.dark-active {
  background-color: rgba(10, 13, 20, 0.95);
  border-bottom: var(--border-subtle-dark);
  color: var(--text-light);
}

.header-nav.dark-active:not(.scrolled) {
  color: var(--text-light);
}

.logo-container img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
  filter: brightness(0) invert(1); /* Elegant filter to turn the dark brand logo into pure white over hero banner */
}

.header-nav.scrolled .logo-container img {
  height: 38px;
  filter: none; /* Restores the original colored logo against scrolled light background */
}

.header-nav.scrolled.dark-active .logo-container img {
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* Language Selector */
.lang-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0.2rem 0.5rem;
  transition: var(--transition-fast);
  opacity: 0.5;
}

.lang-btn.active {
  opacity: 1;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  color: inherit;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .header-nav {
    padding: 0 2rem;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-dark);
    z-index: 105;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-toggle.active span {
    background-color: var(--text-light);
  }
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Parallax Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
  background-color: var(--bg-dark);
}

/* High-end linear overlay to shade top and bottom edges of the hero video/image, guaranteeing perfect contrast */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 13, 20, 0.6) 0%,      /* Top shadow to render floating nav links extremely readable */
    rgba(10, 13, 20, 0.25) 30%,
    rgba(10, 13, 20, 0.25) 70%,
    rgba(10, 13, 20, 0.8) 100%     /* Bottom shadow to smoothly blend the hero edge into the fleet grid background */
  );
  z-index: 2;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax pure CSS */
  z-index: 1;
  filter: brightness(0.5);
}

/* Smooth fallback for iOS where background-attachment: fixed is problematic */
@supports (-webkit-touch-callout: none) {
  .hero-bg {
    background-attachment: scroll;
  }
}



/* Contenedor del vídeo de fondo */
.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Truco de escala 16:9 para cubrir toda la sección hero en cualquier proporción */
.hero-video-wrap iframe,
.hero-video-wrap #hero-video-player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* Ratio 16:9 */
  min-height: 100vh;
  min-width: 177.77vh; /* Ratio 16:9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0; /* Oculto por defecto mientras carga para evitar parpadeos de interfaz de YouTube */
  transition: opacity 0.8s ease-in-out;
}

/* Mostrar suavemente el vídeo una vez se ha iniciado la reproducción real */
.hero-video-wrap.video-playing iframe,
.hero-video-wrap.video-playing #hero-video-player {
  opacity: 1;
}

/* Escudo protector transparente para evitar cualquier interacción del cursor/toques con el iframe de YouTube */
.video-shield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;
  pointer-events: auto; /* Intercepta clics, deslizamientos y toques evitando que lleguen al reproductor */
}

/* Ocultar el vídeo en dispositivos móviles y usar la imagen de fondo estática de fallback */
@media (max-width: 768px) {
  .hero-video-wrap {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 3; /* Increased z-index to sit perfectly above the background and linear overlay */
  max-width: 800px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2rem;
  font-family: var(--font-title);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-actions {
  animation: fadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    letter-spacing: 0.25em;
    font-size: 0.8rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
}

/* Fleet Grid & 3D Cards */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* 3D perspective setup on parent */
/* 3D perspective setup on parent */
.fleet-card-container {
  perspective: 1000px;
  width: 100%;
}

.fleet-card {
  position: relative;
  background-color: var(--bg-dark-card); /* Deep navy card background */
  border: 1px solid rgba(197, 168, 128, 0.2); /* Soft gold border */
  border-radius: 12px;
  overflow: hidden;
  height: 590px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  box-shadow: 0 25px 50px rgba(7, 21, 41, 0.35), 0 0 15px rgba(197, 168, 128, 0.15);
  border-color: var(--accent-gold);
}

.fleet-card-img-wrap {
  position: relative;
  height: 330px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.fleet-card-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(7, 21, 41, 0) 50%, rgba(7, 21, 41, 0.6) 100%);
  opacity: 0.8;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.fleet-card:hover .fleet-card-img-wrap::after {
  opacity: 0.4;
}

.fleet-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  transform: translateZ(0) scale(1.02);
}

.fleet-card:hover .fleet-card-img-wrap img {
  transform: translateZ(15px) scale(1.05);
}

.fleet-card-content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--bg-dark-card); /* Deep navy card background */
  transform-style: preserve-3d;
  transform: translateZ(10px); /* Lifts content up in 3D space with high-end subtlety */
}

.fleet-card-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.fleet-card-title {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--text-light); /* Crisp white on dark background */
  transition: var(--transition-fast);
}

.fleet-card:hover .fleet-card-title {
  color: var(--accent-gold); /* Gold title on hover */
}

.fleet-card-desc {
  color: var(--text-muted-light); /* Light blue-grey description text */
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.fleet-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  margin-bottom: 1.8rem;
  border-top: 1px solid rgba(197, 168, 128, 0.25); /* Gold horizontal borders */
  border-bottom: 1px solid rgba(197, 168, 128, 0.25);
  padding: 0.8rem 0;
  transform: translateZ(5px);
}

.fleet-spec-item {
  text-align: center;
  border-right: 1px solid rgba(197, 168, 128, 0.25); /* Gold vertical separator */
}

.fleet-spec-item:last-child {
  border-right: none;
}

.fleet-spec-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-light);
  display: block;
  margin-bottom: 0.2rem;
}

.fleet-spec-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.fleet-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  transform: translateZ(12px);
}

.fleet-price-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-light);
  display: block;
}

.fleet-price-val {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-title);
  color: var(--text-light);
}

.fleet-price-val span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted-light);
}

.fleet-more-btn {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.fleet-more-btn::after {
  content: '→';
  transition: var(--transition-fast);
}

.fleet-card:hover .fleet-more-btn {
  background-color: var(--accent-gold);
  color: var(--bg-dark) !important; /* Elegant dark blue text on gold button */
  border-color: var(--accent-gold);
}

.fleet-card:hover .fleet-more-btn::after {
  transform: translateX(4px);
}

/* Experiences / Asymmetric Layout */
.exp-row {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 8rem;
}

.exp-row:nth-child(even) {
  flex-direction: row-reverse;
}

.exp-row:last-child {
  margin-bottom: 0;
}

.exp-img-wrap {
  flex: 1.2;
  position: relative;
  overflow: hidden;
  height: 480px;
  border: var(--border-subtle);
  box-shadow: var(--shadow-premium);
}

.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-img-wrap:hover img {
  transform: scale(1.05);
}

.exp-content {
  flex: 1;
}

.exp-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.exp-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.exp-desc {
  color: var(--text-muted-dark);
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.exp-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.exp-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  font-weight: 400;
}

.exp-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 992px) {
  .exp-row, .exp-row:nth-child(even) {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  .exp-img-wrap {
    width: 100%;
    height: 350px;
  }
  .exp-title {
    font-size: 2.2rem;
  }
}

/* Sport Fishing Section (Dark theme) */
.sport-fishing-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: var(--border-subtle-dark);
  border-bottom: var(--border-subtle-dark);
}

.sport-fishing-section .section-title-wrap h2 {
  color: var(--text-light);
}

.fishing-layout {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.fishing-content {
  flex: 1;
}

.fishing-desc {
  color: var(--text-muted-light);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.fishing-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.fishing-spec-card {
  background-color: var(--bg-dark-card);
  padding: 2rem;
  border-left: 3px solid var(--accent-gold);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.fishing-spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.fishing-spec-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.fishing-spec-desc {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  font-weight: 300;
}

.fishing-visuals {
  flex: 1.2;
  position: relative;
}

.fishing-image-container {
  height: 520px;
  overflow: hidden;
  border: var(--border-subtle-dark);
}

.fishing-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 1.5s var(--transition-smooth);
}

.fishing-image-container:hover img {
  transform: scale(1.05);
}

.fishing-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  padding: 2rem;
  text-align: center;
  font-family: var(--font-title);
  box-shadow: var(--shadow-dark);
}

.fishing-badge span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.fishing-badge label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-body);
  font-weight: 600;
}

@media (max-width: 992px) {
  .fishing-layout {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  .fishing-image-container {
    height: 350px;
  }
  .fishing-badge {
    bottom: -15px;
    left: 15px;
    padding: 1.5rem;
  }
  .fishing-badge span {
    font-size: 1.8rem;
  }
}

/* Contact & Luxury Booking */
.booking-layout {
  display: flex;
  gap: 5rem;
  background-color: #fff;
  border: var(--border-subtle);
  box-shadow: var(--shadow-premium);
}

.booking-form-side {
  flex: 1.2;
  padding: 4.5rem;
}

.booking-form-side h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.booking-form-side p {
  color: var(--text-muted-dark);
  margin-bottom: 3rem;
  font-weight: 300;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.form-control {
  font-family: var(--font-body);
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(17, 20, 26, 0.15);
  background: transparent;
  color: var(--text-dark);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-bottom-color: var(--accent-gold);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.booking-info-side {
  flex: 1;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: var(--border-subtle-dark);
}

.booking-info-side h3 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
}

.contact-details {
  list-style: none;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  color: var(--accent-gold);
  font-size: 1.2rem;
  line-height: 1.2;
}

.contact-text label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-light);
  margin-bottom: 0.3rem;
}

.contact-text p {
  font-size: 1.05rem;
  font-weight: 300;
}

.contact-text a:hover {
  color: var(--accent-gold);
}

.map-placeholder {
  height: 200px;
  border: var(--border-subtle-dark);
  background-color: var(--bg-dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%); /* Dark map theme */
}

@media (max-width: 992px) {
  .booking-layout {
    flex-direction: column;
  }
  .booking-form-side, .booking-info-side {
    padding: 3rem 2rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* Detail Yacht Pages (Perseo / Mystic) */
.boat-hero {
  position: relative;
  height: 70vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  color: var(--text-light);
  overflow: hidden;
}

/* Cinematic shaded gradient overlay for the subpage yacht hero header, ensuring clear contrast for links and titles */
.boat-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 13, 20, 0.6) 0%,      /* Top shadow to keep back navigation and logo highly visible */
    rgba(10, 13, 20, 0.1) 40%,
    rgba(10, 13, 20, 0.6) 100%     /* Bottom shadow to create an elegant visual shelf for yacht title */
  );
  z-index: 2;
  pointer-events: none;
}

.boat-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.65);
}

.boat-hero-content {
  position: relative;
  z-index: 3; /* Elevated to sit perfectly on top of the subpage gradient overlay */
  width: 100%;
  padding: 4rem 2rem;
}

.boat-hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
}

.boat-hero-title {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .boat-hero {
    height: 60vh;
  }
  .boat-hero-title {
    font-size: 2.8rem;
  }
}

.boat-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* Premium Boat Gallery */
.boat-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.boat-gallery-item {
  position: relative;
  height: 250px;
  overflow: hidden;
  border: var(--border-subtle);
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background-color: var(--bg-dark-card);
}

.boat-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 41, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.boat-gallery-item:hover img {
  transform: scale(1.06);
}

.boat-gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.boat-gallery-item:hover .gallery-icon {
  transform: scale(1);
}

.boat-gallery-item.wide {
  grid-column: span 3;
  height: 450px;
}

@media (max-width: 992px) {
  .boat-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .boat-gallery-item.wide {
    grid-column: span 2;
    height: 350px;
  }
}

@media (max-width: 576px) {
  .boat-gallery {
    grid-template-columns: 1fr;
  }
  .boat-gallery-item.wide {
    grid-column: span 1;
    height: 250px;
  }
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 21, 41, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--accent-gold);
  font-family: var(--font-title);
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2010;
  font-weight: 300;
  line-height: 1;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2010;
  user-select: none;
  padding: 1rem;
  transition: var(--transition-fast);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 0.5rem;
  }
  .lightbox-next {
    right: 0.5rem;
  }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
  }
}

.boat-main-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 0.5rem;
}

.boat-main-info p {
  color: var(--text-muted-dark);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
}

.spec-table tr {
  border-bottom: var(--border-subtle);
}

.spec-table td {
  padding: 1rem 0;
  font-size: 0.95rem;
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.spec-table td:last-child {
  text-align: right;
  color: var(--text-muted-dark);
}

@media (max-width: 992px) {
  .boat-details-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Footer Section */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: var(--border-subtle-dark);
  padding: 4rem 2rem 2rem 2rem;
}

.footer-logo img {
  max-width: 110px;
  height: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.footer-col-about p {
  color: var(--text-muted-light);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 320px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--text-muted-light);
  font-size: 1.2rem;
}

.social-link:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* TripAdvisor Testimonials Section */
.testimonials-section {
  background-color: var(--bg-secondary);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: #fff;
  padding: 3rem 2.5rem;
  border: var(--border-subtle);
  box-shadow: var(--shadow-premium);
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(17, 20, 26, 0.06);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: block;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 300;
}

.testimonial-author {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

.testimonial-source {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold-dark);
  font-weight: 600;
  margin-top: 0.2rem;
  display: block;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Direct Contact Concierge Grid */
.contact-concierge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.concierge-card {
  background-color: #fff;
  border: var(--border-subtle);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.concierge-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(17, 20, 26, 0.08);
}

@media (max-width: 992px) {
  .contact-concierge-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Luxury FAQ Accordion */
.faq-item {
  border: var(--border-subtle);
  background-color: #fff;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--accent-gold);
}

.faq-trigger {
  width: 100%;
  padding: 2.2rem 2.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-fast);
}

.faq-trigger:focus {
  outline: none;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
  font-weight: 300;
  line-height: 1;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 2.5rem;
}

.faq-content p {
  color: var(--text-muted-dark);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.7;
  padding-bottom: 2.2rem;
  margin: 0;
}

.faq-item.active {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(17, 20, 26, 0.03);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--text-dark);
}

/* Language-specific conditional visibility for crawler SEO compliance */
.lang-content {
  display: none !important;
}
html[lang="es"] .lang-content.lang-es {
  display: block !important;
}
html[lang="en"] .lang-content.lang-en {
  display: block !important;
}
html[lang="de"] .lang-content.lang-de {
  display: block !important;
}

/* Legal Pages Premium Styling */
.legal-hero {
  background-color: var(--bg-dark);
  padding: calc(var(--header-height) + 5rem) 2rem 5rem 2rem;
  text-align: center;
  border-bottom: var(--border-subtle-dark);
}

.legal-title {
  color: var(--text-light);
  font-size: 3.5rem;
  font-family: var(--font-title);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.legal-subtitle {
  color: var(--accent-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.legal-text-block {
  color: var(--text-dark);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
}

.legal-text-block h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--text-dark);
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(197, 168, 128, 0.25);
  padding-bottom: 0.5rem;
}

.legal-text-block h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-text-block p {
  margin-bottom: 1.5rem;
}

.legal-text-block ul, .legal-text-block ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.legal-text-block li {
  margin-bottom: 0.8rem;
}

/* Rejilla de Modalidades de Pesca en Mystic */
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.modality-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 4px;
  overflow: hidden;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.modality-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);
}

.modality-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.modality-card:hover .modality-img-wrap img {
  transform: scale(1.05);
}

.modality-content {
  padding: 2rem;
}

.modality-content h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.modality-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted-light);
}

@media (max-width: 992px) {
  .modalities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .modalities-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Premium Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 380px;
  background: rgba(13, 32, 58, 0.98);
  border: 1px solid var(--accent-gold);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-title {
  font-family: var(--font-title);
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin: 0;
  letter-spacing: 0.05em;
}

.cookie-text {
  color: var(--text-muted-light);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-text a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-fast);
}

.cookie-text a:hover {
  color: var(--text-light);
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.cookie-btn-accept {
  flex: 1;
  background-color: var(--accent-gold);
  color: var(--text-dark);
  border: 1px solid var(--accent-gold);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.cookie-btn-accept:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
}

.cookie-btn-reject {
  flex: 1;
  background: none;
  color: var(--text-muted-light);
  border: 1px solid rgba(163, 178, 199, 0.3);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.cookie-btn-reject:hover {
  color: var(--text-light);
  border-color: var(--text-light);
}

@media (max-width: 576px) {
  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    padding: 1.2rem;
  }
}

/* --- EXPERIENCE CREATOR WIZARD PREMIUM STYLING --- */
.wizard-container {
  background-color: var(--bg-primary);
  border: var(--border-subtle);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wizard-progress {
  position: relative;
  margin-bottom: 3.5rem;
  background-color: rgba(7, 21, 41, 0.05);
  height: 4px;
  border-radius: 2px;
}

.wizard-progress-bar {
  background-color: var(--accent-gold);
  height: 100%;
  width: 33.33%;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.wizard-steps-indicators {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 2px solid rgba(7, 21, 41, 0.1);
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.step-indicator.active {
  border-color: var(--accent-gold);
  background-color: var(--bg-dark);
  color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.3);
}

.step-indicator.completed {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

/* Steps Transition */
.wizard-step {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wizard-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.wizard-step-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

/* Options Grid */
.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.wizard-options-grid.boats {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 768px) {
  .wizard-options-grid {
    grid-template-columns: 1fr;
  }
  .wizard-options-grid.boats {
    grid-template-columns: 1fr;
  }
}

.wizard-option-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(7, 21, 41, 0.08);
  border-radius: 6px;
  padding: 1.8rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  user-select: none;
}

.wizard-option-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.1);
}

.wizard-option-card.selected {
  background-color: var(--bg-dark);
  border-color: var(--accent-gold);
  color: var(--text-light);
  box-shadow: 0 10px 30px rgba(7, 21, 41, 0.2);
}

.wizard-option-card.selected h5 {
  color: var(--accent-gold);
}

.wizard-option-card.selected p {
  color: var(--text-muted-light);
}

.option-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.option-img-wrap {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(7, 21, 41, 0.06);
}

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

.wizard-option-card:hover .option-img-wrap img {
  transform: scale(1.05);
}

.wizard-option-card h5 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0;
}

.wizard-option-card p {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  font-weight: 300;
  margin: 0;
  line-height: 1.4;
}

/* Wizard Form */
.wizard-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .wizard-form {
    grid-template-columns: 1fr;
  }
  .wizard-form-group.full-width {
    grid-column: span 1;
  }
}

.wizard-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.wizard-form-group.full-width {
  grid-column: span 2;
}

.wizard-form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.wizard-input {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(7, 21, 41, 0.1);
  border-radius: 4px;
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.wizard-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold-glow);
  background-color: var(--bg-primary);
}

/* Invalid inputs styling */
.wizard-input.invalid {
  border-color: #d9534f;
  box-shadow: 0 0 8px rgba(217, 83, 79, 0.2);
}

/* Controls */
.wizard-controls {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(7, 21, 41, 0.05);
  padding-top: 1.5rem;
}

/* Success Card */
.wizard-success-card {
  text-align: center;
  padding: 1.5rem 0;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-step.active .wizard-success-card {
  opacity: 1;
  transform: scale(1);
}

.success-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--accent-gold);
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.summary-box {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--accent-gold);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: left;
  margin: 1.5rem auto;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

.summary-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

@media (max-width: 576px) {
  .wizard-controls {
    gap: 0.75rem;
  }
  .wizard-controls button {
    flex: 1;
    padding: 0.8rem 0.5rem !important;
    font-size: 0.75rem !important;
    margin: 0 !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

/* Sea Widget Styles */
#estado-mar .section-title-wrap h2 {
  color: var(--text-light);
}

@keyframes pulseLive {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(92, 184, 92, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(92, 184, 92, 0);
  }
}

.pulse-live-container {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(92, 184, 92, 0.1);
  border: 1px solid rgba(92, 184, 92, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5cb85c;
  margin-bottom: 1rem;
}

.pulse-live-dot {
  width: 8px;
  height: 8px;
  background-color: #5cb85c;
  border-radius: 50%;
  animation: pulseLive 2s infinite ease-in-out;
}

/* Sea Dashboard Widget (Index Page) */
.sea-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.sea-dashboard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-dark-card);
  border: var(--border-subtle-dark);
  padding: 1.5rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.sea-dashboard-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.1);
}

.weather-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.weather-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.weather-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);
}

.weather-icon {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(197, 168, 128, 0.1);
  border-radius: 10px;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.weather-card:hover .weather-icon {
  background: var(--accent-gold);
  color: var(--text-dark);
}

.weather-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.weather-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted-light);
}

.weather-value {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  font-family: var(--font-sans);
}

.weather-sub-label {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

.weather-advisory-box {
  background: rgba(197, 168, 128, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.weather-advisory-box h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.weather-advisory-box p {
  color: var(--text-muted-light);
  line-height: 1.7;
}

.compass-icon {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 992px) {
  .weather-dashboard-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  .sea-dashboard-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .weather-dashboard-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .sea-dashboard-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
}

/* Official Tourism License Seal */
.official-license-seal {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  max-width: 300px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.official-license-seal:hover {
  background-color: rgba(197, 168, 128, 0.04);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.1);
  transform: translateY(-2px);
}

.official-license-seal .seal-emblem {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.official-license-seal .seal-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.official-license-seal:hover .seal-svg {
  transform: rotate(12deg) scale(1.05);
}

.official-license-seal .seal-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
}

.official-license-seal .seal-tag {
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--accent-gold);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.3rem;
  display: inline-block;
  font-family: var(--font-body);
}

.official-license-seal .seal-desc {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}

.official-license-seal .seal-reg {
  font-size: 0.75rem;
  color: var(--text-muted-light);
  font-weight: 300;
}

/* Footer Trust & Quality Badges Bar */
.footer-trust-bar {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.trust-badge-item:hover {
  transform: translateY(-2px);
}

.trust-badge-item .badge-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-item .badge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.trust-badge-item:hover .badge-icon svg {
  filter: drop-shadow(0 0 4px var(--accent-gold-glow));
}

.trust-badge-item .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-badge-item .badge-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}

.trust-badge-item .badge-desc {
  font-size: 0.72rem;
  color: var(--text-muted-light);
  font-weight: 300;
}

@media (max-width: 992px) {
  .footer-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .footer-trust-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: left;
  }
}

/* TripAdvisor Trust Card in Testimonials */
.testimonial-trust-card {
  background-color: #ffffff;
  color: var(--text-dark);
  border: var(--border-subtle);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-trust-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(17, 20, 26, 0.06);
}

.testimonial-trust-card .trust-card-badge {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.testimonial-trust-card .tripadvisor-svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 1.5;
}

.testimonial-trust-card .trust-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-trust-card .trust-tag {
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--accent-gold-dark);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-family: var(--font-body);
}

.testimonial-trust-card .trust-rating {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 0.5rem 0 0 0;
}

.testimonial-trust-card .trust-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
  margin: 0.5rem 0 0 0;
}

.tripadvisor-dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 0.5rem 0;
}

.tripadvisor-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #34e0a1; /* TripAdvisor brand green */
  display: inline-block;
}

/* Update testimonials grid to support 4 columns on large screens */
@media (min-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Specific Blog Page and Card Styles */
.blog-post-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-post-meta {
  font-size: 0.9rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.blog-post-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--text-light);
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.blog-post-main-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 4rem;
  aspect-ratio: 16/9;
}

.blog-post-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-muted-light);
  margin-bottom: 5rem;
}

.blog-post-content p {
  margin-bottom: 2rem;
}

.blog-post-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent-gold);
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.blog-post-content h3 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--text-light);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.8rem;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--accent-gold);
  padding-left: 2rem;
  margin: 3rem 0;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.3rem;
  line-height: 1.7;
}

/* Recommendations Section */
.blog-recommendations-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  padding-top: 4rem;
}

.blog-recommendations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
}

.rec-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-dark);
}

.rec-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.rec-card-img {
  height: 200px;
  overflow: hidden;
}

.rec-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.rec-card-content {
  padding: 1.8rem;
}

.rec-card-title {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.rec-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
}

.blog-cta {
  background: linear-gradient(135deg, var(--bg-dark-blue) 0%, #0d1e3d 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 4rem 2rem;
  text-align: center;
  margin: 6rem auto 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.blog-cta h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.blog-cta p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .blog-post-title {
    font-size: 2.2rem;
  }
  .blog-recommendations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


