@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
  background: #0b0b0b;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
}

.navbar {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0) !important;
  backdrop-filter: blur(0px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px);
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
}

.navbar-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.navbar-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  transition: all 0.3s ease;
}

.navbar-text:hover {
  color: #d4af37 !important;
}

.navbar-center {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-link {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d4af37 !important;
}

.hero {
  height: 100vh;
  background: url('../assets/images/boat1.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 20%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.6) 80%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom,
      rgba(11, 11, 11, 0) 0%,
      rgba(11, 11, 11, 0.2) 40%,
      rgba(11, 11, 11, 0.7) 70%,
      rgba(11, 11, 11, 1) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 10;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #d4af37;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-emphasis {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 0.1rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-outline:hover,
.btn-outline:focus {
  transform: translateY(-1px);
  color: #d4af37;
  border: 1px solid #d4af37;
}

.hero-discover {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero-discover:hover {
  opacity: 0.8;
}

.hero-discover:hover p {
  color: #d4af37;
}

.hero-discover:hover .discover-arrow {
  stroke: #d4af37;
}

.hero-discover p {
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.discover-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.section {
  padding: 40px 0;
}

.experience-section {
  position: relative;
  background: #0b0b0b;
}

.experience-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
}

.section-subtitle {
  font-size: 0.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 1rem;
}

.experience-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.experience-divider {
  width: 80px;
  height: 2px;
  background: #d4af37;
  margin: 0 auto 3rem auto;
}

.experience-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.experience-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  color: #d4af37;
  margin-bottom: 1.3rem;
}

.experience-icon .material-icons {
  font-size: 2rem;
  line-height: 1;
}

.experience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.experience-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 0.95rem;
}

.boat-section {
  background: rgba(255, 255, 255, 0.02);
}

.boat-image-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.boat-carousel {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  max-width: 460px;
  margin: 0 0 0 auto;
}

.boat-carousel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.25) 45%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.boat-carousel .carousel-control-prev,
.boat-carousel .carousel-control-next {
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.75);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  z-index: 3;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  margin-inline: 10px;
}

.boat-carousel .carousel-control-prev:hover,
.boat-carousel .carousel-control-next:hover,
.boat-carousel .carousel-control-prev:focus,
.boat-carousel .carousel-control-next:focus {
  background: rgba(212, 175, 55, 0.92);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) scale(1.04);
}

.boat-carousel .carousel-control-prev-icon,
.boat-carousel .carousel-control-next-icon {
  width: 0.85rem;
  height: 0.85rem;
  filter: none;
}

.boat-carousel .carousel-indicators {
  bottom: 1.1rem;
  z-index: 3;
}

.boat-carousel .carousel-indicators [data-bs-target] {
  width: 2.2rem;
  height: 0.35rem;
  border-radius: 2px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.55);
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.boat-carousel .carousel-indicators .active {
  background-color: #d4af37;
  opacity: 1;
}

.boat-carousel .carousel-inner {
  border-radius: 1.5rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.boat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.boat-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.boat-divider {
  width: 70px;
  margin: 0 auto 2rem auto;
}

.boat-copy {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.boat-features {
  margin-top: 1.5rem;
}

.feature-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  padding: 1.6rem 1.3rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.material-icons.feature-icon {
  font-size: 2.2rem;
  color: #d4af37;
  line-height: 1;
}

.feature-box strong {
  font-size: 1.1rem;
}

.feature-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  background: #d4af37;
  color: #111;
  border: none;
  border-radius: 0.1rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
}

.btn-gold:hover,
.btn-gold:focus {
  background: #c59f2d;
  color: #080707;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  text-decoration: none;
}

.card {
  background: #111;
  border: 1px solid gold;
}

/* PRICING */
.pricing-section {
  background: #071219;
  padding: 40px 0;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-divider {
  width: 80px;
  height: 2px;
  background: #d4af37;
  margin: 0 auto 3.5rem auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(0, 4, 7, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.3rem 2.2rem 2.2rem;
  text-align: center;
}

.pricing-eyebrow {
  margin-bottom: 0.65rem;
  color: #d4af37;
  font-size: 0.78rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 0.4rem;
  font-size: 2rem;
  font-weight: 700;
}

.pricing-duration {
  margin-bottom: 2.6rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.pricing-list {
  margin-bottom: 2rem;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row strong {
  color: #d4af37;
  font-size: 1.15rem;
}

.pricing-book-button {
  width: 100%;
  min-height: 48px;
}

.pricing-includes {
  max-width: 900px;
  margin: 3.8rem auto 0;
}

.pricing-includes h3 {
  margin-bottom: 1.6rem;
  font-size: 1.35rem;
}

.pricing-includes-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.pricing-includes-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pricing-includes-list .material-icons {
  color: #d4af37;
  font-size: 1rem;
  line-height: 1;
}

/* GALLERY */
.gallery-section {
  background: #030303;
  padding: 40px 0;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.gallery-title strong {
  font-weight: 700;
}

.gallery-divider {
  width: 70px;
  margin-bottom: 3.8rem;
}

.gallery-shell {
  position: relative;
  width: min(1780px, calc(100vw - 2rem));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.gallery-window {
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-window::-webkit-scrollbar {
  display: none;
}

.gallery-grid {
  display: flex;
  gap: 1rem;
  padding-inline: 0.05rem;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(3, 8, 11, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: 50%;
  color: #d4af37;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: #d4af37;
  border-color: #d4af37;
  color: #080707;
}

.gallery-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.gallery-arrow-prev {
  left: 0.75rem;
}

.gallery-arrow-next {
  right: 0.75rem;
}

.gallery-arrow .material-icons {
  font-size: 2rem;
}

.gallery-item {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 4rem) / 5);
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #111;
  border: 0;
  color: #fff;
  cursor: pointer;
  scroll-snap-align: center;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
  filter: saturate(0.95);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after,
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 4px;
}

.gallery-modal .modal-content {
  background: #070707;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 0;
}

.gallery-modal .modal-body {
  position: relative;
  padding: 1rem;
}

.gallery-modal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  background: #000;
}

.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.7rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.gallery-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.75);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  transform: translateY(-50%);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gallery-modal-nav:hover,
.gallery-modal-nav:focus-visible {
  background: rgba(212, 175, 55, 0.95);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-50%) scale(1.04);
}

.gallery-modal-prev {
  left: 1.6rem;
}

.gallery-modal-next {
  right: 1.6rem;
}

.gallery-modal-nav .material-icons {
  font-size: 1.8rem;
  line-height: 1;
}

/* REVIEWS */
.reviews-section {
  background: #071219;
}

.reviews-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.reviews-title strong {
  font-weight: 700;
}

.reviews-divider {
  width: 70px;
  margin-bottom: 3rem;
}

.reviews-shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.reviews-window {
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reviews-window::-webkit-scrollbar {
  display: none;
}

.reviews-grid {
  display: flex;
  gap: 1rem;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(3, 8, 11, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: 50%;
  color: #d4af37;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.reviews-arrow:hover,
.reviews-arrow:focus-visible {
  background: #d4af37;
  border-color: #d4af37;
  color: #080707;
}

.reviews-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.reviews-arrow-prev {
  left: -1.5rem;
}

.reviews-arrow-next {
  right: -1.5rem;
}

.reviews-arrow .material-icons {
  font-size: 2rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 260px;
  padding: 1.35rem;
  background: rgba(0, 4, 7, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  scroll-snap-align: start;
}

.review-stars {
  margin-bottom: 0.9rem;
  color: #d4af37;
  letter-spacing: 0.12rem;
}

.review-card blockquote {
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.review-author {
  margin-top: auto;
}

.review-author strong,
.review-author span {
  display: block;
}

.review-author strong {
  color: #fff;
}

.review-author span {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.reviews-empty {
  color: rgba(255, 255, 255, 0.58);
}

.reviews-google-link {
  margin-top: 2rem;
}

/* BOOKING CTA */
.booking-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 626px;
  overflow: hidden;
  background: url('../assets/images/booking.JPG') center 58% / cover no-repeat;
}

.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.booking-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.booking-cta-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 3rem 0;
}

.booking-cta .experience-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.booking-cta .experience-title strong {
  font-weight: 700;
}

.booking-cta-copy {
  max-width: 740px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.55;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(3, 8, 11, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.22);
  text-align: left;
  backdrop-filter: blur(10px);
}

.contact-mode-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.36);
  background: rgba(255, 255, 255, 0.04);
}

.contact-mode-button {
  min-height: 48px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-mode-button.active {
  background: #d4af37;
  color: #080707;
}

.contact-mode-button:not(.active):hover,
.contact-mode-button:not(.active):focus {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
}

.contact-mode-field[hidden] {
  display: none !important;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-textarea {
  min-height: 118px;
  padding-top: 0.9rem;
  resize: vertical;
}

.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.contact-submit-button {
  width: 100%;
  min-height: 56px;
  margin-top: 1.3rem;
}

.contact-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form-status {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  text-align: center;
}

.contact-form-status[data-status="success"] {
  color: #8fe6aa;
}

.contact-form-status[data-status="error"] {
  color: #ffb1a8;
}

.contact-form-status[data-status="pending"] {
  color: #d4af37;
}

.booking-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.booking-cta-actions .btn {
  min-width: 220px;
  min-height: 64px;
}

.booking-cta-whatsapp {
  gap: 0.75rem;
  min-width: 260px !important;
  background: #25d366;
  border: 1px solid #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.booking-cta-whatsapp:hover,
.booking-cta-whatsapp:focus {
  background: #20bf5a;
  border-color: #20bf5a;
  color: #fff;
}

.booking-cta-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

/* FOOTER */
.site-footer {
  background: #03080b;
  padding: 82px 0 70px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.95fr;
  gap: 5rem;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  max-width: 420px;
  margin: 2.1rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  text-decoration: none;
}

.footer-logo-icon {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.footer-logo:hover,
.footer-logo:focus {
  color: #fff;
  text-decoration: none;
}

.footer-column h3 {
  margin-bottom: 2rem;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.3;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus {
  color: #d4af37;
  text-decoration: none;
}

.footer-link .material-icons,
.footer-icon {
  width: 22px;
  min-width: 22px;
  color: #d4af37;
  fill: currentColor;
  font-size: 1.3rem;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus {
  color: #d4af37;
}

.floating-whatsapp {
  position: fixed;
  right: 1.9rem;
  bottom: 1.9rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  background: #20bf5a;
  color: #fff;
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

body.modal-open .floating-whatsapp {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

/* ADMIN DASHBOARD */
.admin-login[hidden],
.admin-dashboard[hidden],
.admin-empty[hidden],
.admin-detail[hidden] {
  display: none !important;
}

.admin-page {
  min-height: 100vh;
  background: #f3f6f7;
  color: #142326;
  font-family: 'Inter', sans-serif;
}

.admin-shell {
  min-height: 100vh;
  padding: 0;
}

.admin-login {
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background:
    linear-gradient(180deg, rgba(3, 8, 11, 0.86), rgba(3, 8, 11, 0.96)),
    url('../assets/images/gallery/gal3.JPG') center / cover no-repeat;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  text-decoration: none;
}

.admin-brand:hover,
.admin-brand:focus {
  color: #d4af37;
  text-decoration: none;
}

.admin-brand-logo {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.admin-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.admin-login-card {
  width: min(100%, 460px);
  padding: 2.2rem;
  background: rgba(3, 8, 11, 0.86);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.admin-login-card h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.admin-divider {
  margin: 0 0 2rem;
}

.admin-login-button {
  width: 100%;
  min-height: 54px;
  margin-top: 1.4rem;
}

.admin-login-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.admin-dashboard {
  min-height: 100vh;
}

.admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #071717;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-sidebar .admin-brand {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-tabs,
.admin-sidebar-actions {
  display: grid;
  gap: 0.55rem;
}

.admin-sidebar-actions {
  margin-top: auto;
}

.admin-tab,
.admin-sidebar-button {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.admin-tab .material-icons,
.admin-sidebar-button .material-icons {
  font-size: 1.25rem;
}

.admin-tab:hover,
.admin-tab:focus,
.admin-sidebar-button:hover,
.admin-sidebar-button:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
}

.admin-tab.active {
  background: #f3f6f7;
  border-color: #f3f6f7;
  color: #071717;
}

.admin-logout-button {
  color: rgba(255, 220, 220, 0.78);
}

.admin-main {
  min-width: 0;
  padding: 2rem;
}

.admin-dashboard-heading,
.admin-list-head,
.admin-card-topline,
.admin-card-meta,
.admin-detail-head,
.admin-detail-actions,
.admin-review-card-head,
.admin-review-actions,
.admin-review-meta {
  display: flex;
  align-items: center;
}

.admin-dashboard-heading {
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.admin-dashboard-heading h1 {
  margin: 0;
  color: #142326;
  font-size: 2.5rem;
  font-weight: 700;
}

.admin-dashboard-heading .section-subtitle {
  color: #7e6a21;
}

.admin-sync {
  min-height: 42px;
  padding: 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #d7e0e2;
  border-radius: 999px;
  background: #fff;
  color: #536366;
  font-size: 0.84rem;
  white-space: nowrap;
}

.admin-sync .material-icons {
  color: #0c7974;
  font-size: 1.15rem;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-control-panel {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(5, minmax(150px, 1fr));
  gap: 0.7rem;
}

.admin-request-tools {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) minmax(180px, 220px) auto;
  gap: 0.7rem;
  align-items: center;
}

.admin-search-field {
  min-height: 50px;
  padding: 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid #cfdadd;
  border-radius: 8px;
  background: #fff;
  color: #607174;
}

.admin-search-field .material-icons {
  font-size: 1.25rem;
}

.admin-search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #142326;
  font: inherit;
}

.admin-filter,
.admin-date-input {
  min-height: 50px;
}

.admin-table-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid #d7e0e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 34, 39, 0.05);
}

.admin-requests-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

.admin-requests-table th,
.admin-requests-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid #e8eef0;
  color: #142326;
  text-align: left;
  vertical-align: middle;
}

.admin-requests-table th {
  background: #f8fafb;
  color: #607174;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-requests-table tr:last-child td {
  border-bottom: 0;
}

.admin-requests-table tr.is-new td:first-child {
  box-shadow: inset 4px 0 0 #d4af37;
}

.admin-requests-table tr.is-selected td {
  background: #fffaf0;
}

.admin-requests-table td strong,
.admin-requests-table td span,
.admin-requests-table td small,
.admin-requests-table td a {
  display: block;
}

.admin-requests-table td strong {
  margin-bottom: 0.18rem;
  color: #142326;
  font-size: 0.9rem;
}

.admin-requests-table td span,
.admin-requests-table td small,
.admin-requests-table td a {
  color: #607174;
  font-size: 0.78rem;
  line-height: 1.35;
}

.admin-requests-table td a {
  text-decoration: none;
}

.admin-requests-table td a:hover,
.admin-requests-table td a:focus {
  color: #0c7974;
  text-decoration: underline;
}

.admin-requests-table .admin-type-badge {
  width: fit-content;
  margin-bottom: 0.35rem;
}

.admin-table-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.admin-table-action {
  width: 36px;
  height: 36px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfdadd;
  border-radius: 8px;
  background: #fff;
  color: #324347 !important;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.admin-table-action .material-icons {
  font-size: 1.05rem;
}

.admin-table-action:hover,
.admin-table-action:focus {
  border-color: #0c7974;
  background: #eef7f6;
  color: #0c7974 !important;
  text-decoration: none !important;
}

.admin-table-action-danger:hover,
.admin-table-action-danger:focus {
  border-color: #c85f3d;
  background: #fff1ed;
  color: #c85f3d !important;
}

/* Note button — golden indicator when a note exists */
.admin-table-action.has-note {
  border-color: #d4af37;
  background: #fdf8e8;
  color: #7e6a21 !important;
}

.admin-table-action.has-note:hover,
.admin-table-action.has-note:focus {
  background: #f5e9b0;
  border-color: #b8961e;
  color: #5a4a10 !important;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 1rem;
  align-items: start;
}

.admin-request-column {
  min-width: 0;
}

.admin-list-head {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.admin-count {
  min-height: 38px;
  padding: 0 0.85rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d7e0e2;
  border-radius: 999px;
  background: #fff;
  color: #536366;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-clear-button {
  min-height: 38px;
  padding: 0 0.85rem;
  border: 1px solid #cfdadd;
  border-radius: 999px;
  background: transparent;
  color: #324347;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-clear-button:hover,
.admin-clear-button:focus {
  border-color: #0c7974;
  color: #0c7974;
}

.admin-request-list {
  display: grid;
  gap: 0.75rem;
}

.admin-request-card,
.admin-detail,
.admin-planning-day,
.admin-review-form,
.admin-review-card {
  border: 1px solid #d7e0e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 34, 39, 0.05);
}

.admin-request-card {
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-request-card.is-selected {
  border-color: #d4af37;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.14);
}

.admin-card-main {
  width: 100%;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.admin-card-topline {
  justify-content: space-between;
  gap: 0.6rem;
}

.admin-type-badge,
.admin-status-pill {
  min-height: 28px;
  padding: 0 0.55rem;
  display: inline-flex !important;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  font-size: 0.68rem !important;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.admin-type-badge {
  background: #eef7f6;
  color: #0c7974;
}

.admin-type-badge[data-type="contact"] {
  background: #f6f1df;
  color: #7e6a21;
}

.admin-status-pill {
  background: #f0f4f5;
  color: #536366;
}

.admin-status-pill .material-icons {
  font-size: 1rem;
}

.admin-status-pill[data-status="new"] {
  background: #fff3e6;
  color: #a4512b;
}

.admin-status-pill[data-status="contacted"] {
  background: #eef7f6;
  color: #0c7974;
}

.admin-status-pill[data-status="confirmed"] {
  background: #eaf6ed;
  color: #237442;
}

.admin-status-pill[data-status="archived"] {
  background: #eceff1;
  color: #59676a;
}

.admin-card-title,
.admin-card-subtitle,
.admin-card-message {
  display: block;
}

.admin-card-title {
  color: #142326;
  font-size: 1.08rem;
  font-weight: 700;
}

.admin-card-subtitle {
  color: #405357;
  font-size: 0.9rem;
}

.admin-card-meta {
  gap: 0.85rem;
  flex-wrap: wrap;
  color: #607174;
  font-size: 0.78rem;
}

.admin-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.admin-card-meta .material-icons {
  font-size: 1rem;
}

.admin-card-message {
  max-width: 76ch;
  color: #607174;
  font-size: 0.86rem;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.admin-card-controls {
  padding: 0 1rem 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.admin-status-select {
  width: 100%;
  min-height: 42px;
  padding: 0 0.75rem;
  border: 1px solid #cfdadd;
  border-radius: 6px;
  background: #fff;
  color: #142326;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
}

.admin-priority-select {
  border-color: #dbcfa4;
}

.admin-detail {
  position: sticky;
  top: 1rem;
  max-height: calc(100vh - 2rem);
  padding: 1rem;
  overflow: auto;
}

.admin-detail-head {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.admin-detail-head h2 {
  margin: 0;
  color: #142326;
  font-size: 1.45rem;
  font-weight: 700;
}

.admin-icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid #cfdadd;
  border-radius: 8px;
  background: #fff;
  color: #324347;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.admin-icon-button:hover,
.admin-icon-button:focus {
  border-color: #0c7974;
  color: #0c7974;
}

.admin-detail-actions {
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.admin-contact-action {
  min-height: 40px;
  padding: 0 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #cfdadd;
  border-radius: 999px;
  color: #142326;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.admin-contact-action:hover,
.admin-contact-action:focus {
  border-color: #0c7974;
  color: #0c7974;
  text-decoration: none;
}

.admin-contact-action .material-icons {
  font-size: 1.05rem;
}

.admin-detail-grid {
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.admin-detail-grid div {
  padding: 0.75rem;
  border-radius: 8px;
  background: #f5f8f9;
}

.admin-detail-grid dt {
  margin-bottom: 0.25rem;
  color: #607174;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-detail-grid dd {
  margin: 0;
  color: #142326;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.admin-detail-message {
  margin-bottom: 1rem;
  padding: 0.85rem;
  border-left: 3px solid #d4af37;
  border-radius: 6px;
  background: #fffaf0;
}

.admin-detail-message strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #7e6a21;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.admin-detail-message p {
  margin: 0 0 0.75rem;
  color: #405357;
  font-size: 0.9rem;
  line-height: 1.55;
}

.admin-detail-message p:last-child {
  margin-bottom: 0;
}

.admin-detail-form .contact-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-save-button,
.admin-review-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 1rem;
}

.admin-planning-controls {
  grid-template-columns: minmax(180px, 240px) minmax(180px, 220px) auto;
  justify-content: start;
}

.admin-planning-list {
  display: grid;
  gap: 0.9rem;
}

.admin-planning-day {
  overflow: hidden;
}

.admin-planning-day>header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e1e8ea;
}

.admin-planning-date {
  display: block;
  color: #142326;
  font-size: 1rem;
  font-weight: 800;
}

.admin-planning-day small {
  color: #607174;
}

.admin-planning-items {
  display: grid;
}

.admin-planning-card {
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 0.8rem;
  align-items: center;
  border-bottom: 1px solid #eef2f3;
}

.admin-planning-card:last-child {
  border-bottom: 0;
}

.admin-planning-card[data-priority="high"] {
  box-shadow: inset 4px 0 0 #c85f3d;
}

.admin-planning-main {
  min-width: 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.admin-planning-time {
  min-height: 34px;
  padding: 0 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef7f6;
  color: #0c7974;
  font-size: 0.76rem;
  font-weight: 800;
}

.admin-planning-main strong,
.admin-planning-main small {
  display: block;
}

.admin-planning-main strong {
  color: #142326;
  font-size: 0.95rem;
}

.admin-planning-main small {
  color: #607174;
  font-size: 0.82rem;
}

.admin-review-layout {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.admin-review-form {
  padding: 1rem;
}

.admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 0;
  color: #405357;
  font-size: 0.9rem;
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #d4af37;
}

.admin-review-list {
  display: grid;
  gap: 1rem;
}

.admin-review-card {
  padding: 1.25rem;
}

.admin-review-card-head {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-review-card-head strong,
.admin-review-card-head span {
  display: block;
}

.admin-review-card-head strong {
  color: #142326;
}

.admin-review-card-head span {
  margin-top: 0.25rem;
  color: #607174;
  font-size: 0.86rem;
}

.admin-review-stars {
  color: #d4af37 !important;
  font-size: 1rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.admin-review-card p {
  margin-bottom: 1rem;
  color: #405357;
  line-height: 1.65;
}

.admin-review-meta {
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: #607174;
  font-size: 0.82rem;
}

.admin-review-actions {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-review-link,
.admin-review-toggle {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border-color: #cfdadd;
  border-radius: 6px;
  color: #142326;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.admin-review-link:hover,
.admin-review-link:focus,
.admin-review-toggle:hover,
.admin-review-toggle:focus {
  border-color: #0c7974;
  color: #0c7974;
}

.admin-review-delete {
  width: 42px;
  height: 42px;
}

.admin-empty {
  margin: 0;
  padding: 2.4rem 1rem;
  border: 1px dashed #cfdadd;
  border-radius: 8px;
  color: #607174;
  text-align: center;
}

.admin-dashboard-status {
  text-align: left;
}

.admin-page .booking-field label {
  color: #607174;
  letter-spacing: 1.2px;
}

.admin-page .booking-select,
.admin-page .booking-input {
  background: #fff;
  border: 1px solid #cfdadd;
  border-radius: 6px;
  color: #142326;
}

.admin-page .booking-select:focus,
.admin-page .booking-input:focus {
  border-color: #0c7974;
  box-shadow: 0 0 0 3px rgba(12, 121, 116, 0.12);
}

.admin-page .booking-select option {
  background: #fff;
  color: #142326;
}

.admin-login-card .booking-field label {
  color: rgba(255, 255, 255, 0.62);
}

.admin-login-card .booking-input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.admin-login-card .booking-input:focus {
  border-color: rgba(212, 175, 55, 0.72);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}

@media (max-width: 767.98px) {
  .admin-login {
    padding: 1rem;
  }

  .admin-login {
    min-height: calc(100vh - 2rem);
  }

  .admin-login-card {
    padding: 1.35rem;
  }

  .admin-login-card h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 1380px) {
  .admin-control-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-search-field {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) {
  .admin-app {
    grid-template-columns: 248px minmax(0, 1fr);
  }

  .admin-main {
    padding: 1.25rem;
  }
}

@media (max-width: 980px) {
  .admin-app {
    display: block;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    padding: 1rem;
  }

  .admin-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-sidebar-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

  .admin-workspace,
  .admin-review-layout {
    grid-template-columns: 1fr;
  }

  .admin-request-tools {
    grid-template-columns: 1fr;
  }

  .admin-detail {
    position: static;
    max-height: none;
  }

}

@media (max-width: 640px) {
  .admin-main {
    padding: 1rem;
  }

  .admin-sidebar .admin-brand {
    align-items: flex-start;
  }

  .admin-tabs,
  .admin-sidebar-actions,
  .admin-control-panel,
  .admin-request-tools,
  .admin-planning-controls,
  .admin-card-controls,
  .admin-detail-form .contact-form-grid,
  .admin-detail-grid {
    grid-template-columns: 1fr;
  }

  .admin-tab,
  .admin-sidebar-button {
    min-height: 44px;
  }

  .admin-dashboard-heading,
  .admin-list-head,
  .admin-card-topline,
  .admin-review-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-sync,
  .admin-count,
  .admin-clear-button {
    width: 100%;
    justify-content: center;
  }

  .admin-planning-card,
  .admin-planning-main {
    grid-template-columns: 1fr;
  }

  .admin-planning-card .admin-status-select {
    width: 100%;
  }

  .admin-review-actions>.btn {
    flex: 1 1 auto;
  }

  .admin-sub-tabs {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── SUB-TABS (Réservations / Questions) ── */
.admin-sub-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid #d7e0e2;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.admin-sub-tab {
  min-height: 48px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-right: 1px solid #d7e0e2;
  border-radius: 0;
  background: transparent;
  color: #607174;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.admin-sub-tab:last-child {
  border-right: 0;
}

.admin-sub-tab .material-icons {
  font-size: 1.1rem;
}

.admin-sub-tab:hover:not(.active),
.admin-sub-tab:focus:not(.active) {
  background: #f5f8f9;
  color: #142326;
}

.admin-sub-tab.active {
  background: #071717;
  color: #fff;
}

.admin-sub-tab-count {
  min-width: 22px;
  height: 22px;
  padding: 0 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  font-size: 0.68rem;
  font-weight: 800;
}

.admin-sub-tab:not(.active) .admin-sub-tab-count {
  background: #e8eef0;
  color: #536366;
}

/* ── STATUS PILLS GROUP (in table rows) ── */
.admin-status-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.admin-status-pills .admin-status-pill {
  border: 1px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.admin-status-pills .admin-status-pill:hover {
  opacity: 0.85;
}

.admin-status-pills .admin-status-pill.active {
  opacity: 1;
  border-color: currentColor;
}

/* ── PLANNING ADD FORM (details/summary) ── */
.admin-planning-add-form {
  margin-bottom: 1rem;
  border: 1px solid #d7e0e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 34, 39, 0.05);
  overflow: hidden;
}

.admin-planning-add-summary {
  min-height: 50px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  list-style: none;
  color: #142326;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: background 0.18s ease;
}

.admin-planning-add-summary::-webkit-details-marker {
  display: none;
}

.admin-planning-add-summary:hover {
  background: #f5f8f9;
}

.admin-planning-add-summary .material-icons {
  font-size: 1.25rem;
  color: #0c7974;
  transition: transform 0.2s ease;
}

.admin-planning-add-form[open] .admin-planning-add-summary .material-icons {
  transform: rotate(45deg);
}

.admin-planning-entry-form {
  padding: 1rem;
  border-top: 1px solid #e8eef0;
}

/* ── PLANNING CARD LAYOUT (time | content | action) ── */
.admin-planning-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.admin-planning-card>span:first-child {
  /* the time badge — already styled via .admin-planning-time */
  flex-shrink: 0;
}

.admin-planning-card>span:nth-child(2) strong,
.admin-planning-card>span:nth-child(2) small {
  display: block;
}

.admin-planning-card>span:nth-child(2) strong {
  color: #142326;
  font-size: 0.95rem;
}

.admin-planning-card>span:nth-child(2) small {
  color: #607174;
  font-size: 0.82rem;
}

.admin-planning-card[data-source="booking"] {
  box-shadow: inset 4px 0 0 #0c7974;
}

.admin-planning-card[data-source="manual"] {
  box-shadow: inset 4px 0 0 #d4af37;
}

/* Note interne dans le planning */
.admin-planning-note {
  display: inline-flex !important;
  align-items: center;
  gap: 0.28rem;
  margin-top: 0.3rem;
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  background: #fdf8e8;
  border: 1px solid #e8d98a;
  color: #7e6a21;
  font-size: 0.72rem;
  font-weight: 600;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.4;
}

.admin-planning-note .material-icons {
  font-size: 0.85rem;
  flex-shrink: 0;
  line-height: 1;
  vertical-align: middle;
}

/* fix: planning-main button (view booking link) inside card */
.admin-planning-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #cfdadd;
  border-radius: 8px;
  background: #fff;
  color: #324347;
  grid-template-columns: unset;
  gap: unset;
  text-align: unset;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.admin-planning-main:hover,
.admin-planning-main:focus {
  border-color: #0c7974;
  background: #eef7f6;
  color: #0c7974;
}

.admin-planning-main .material-icons {
  font-size: 1.1rem;
}

@media (max-width: 640px) {
  .admin-planning-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .admin-sub-tabs {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── TIME MODAL (admin style) ── */
.admin-time-modal-content {
  border: 1px solid #d7e0e2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(13, 34, 39, 0.12);
  color: #142326;
}

.admin-time-modal-content .admin-modal-header {
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #e8eef0;
}

.admin-time-modal-content .admin-modal-header h2 {
  color: #142326;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.admin-time-modal-content .admin-modal-close {
  border-color: #d7e0e2;
  color: #607174;
  background: #f5f8f9;
}

.admin-time-modal-content .admin-modal-close:hover,
.admin-time-modal-content .admin-modal-close:focus {
  border-color: #c85f3d;
  background: #fff1ed;
  color: #c85f3d;
}

.admin-time-modal-content .booking-field label {
  color: #607174;
  letter-spacing: 1.5px;
  font-size: 0.7rem;
}

.admin-time-modal-content .booking-input {
  background: #f5f8f9;
  border: 1px solid #cfdadd;
  border-radius: 8px;
  color: #142326;
  font-size: 1rem;
}

.admin-time-modal-content .booking-input:focus {
  border-color: #0c7974;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(12, 121, 116, 0.1);
}

.admin-time-modal-content .admin-modal-hint {
  color: #9aabae;
  font-size: 0.78rem;
}

.admin-time-modal-content .admin-modal-actions {
  margin-top: 1.5rem;
}

/* Reset pill shape — match admin square style */
.admin-time-modal-content .admin-clear-button {
  min-height: 44px;
  padding: 0 1.2rem;
  border-radius: 8px;
  border-color: #cfdadd;
  color: #536366;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.admin-time-modal-content .admin-clear-button:hover,
.admin-time-modal-content .admin-clear-button:focus {
  border-color: #324347;
  color: #142326;
}

.admin-time-modal-content .admin-modal-save {
  min-height: 44px;
  padding: 0 1.4rem;
  border-radius: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.04rem;
}

/* ── PLANNING TIME BUTTON ── */
.admin-planning-time {
  min-height: 34px;
  padding: 0 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef7f6;
  color: #0c7974;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  font-family: 'Montserrat', sans-serif;
}

.admin-planning-time:hover,
.admin-planning-time:focus {
  background: #d8f0ee;
  border-color: #0c7974;
}

.admin-planning-time.is-unset {
  background: #f6f1df;
  color: #7e6a21;
  border: 1px dashed #c9a83a;
}

.admin-planning-time.is-unset:hover,
.admin-planning-time.is-unset:focus {
  background: #f0e8c8;
  border-color: #7e6a21;
}

/* ── TIME MODAL ── */
.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-modal-header h2 {
  margin: 0;
  color: #142326;
  font-size: 1.35rem;
  font-weight: 700;
}

.admin-modal-close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7e0e2;
  border-radius: 8px;
  background: transparent;
  color: #607174;
  transition: border-color 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}

.admin-modal-close:hover,
.admin-modal-close:focus {
  border-color: #c85f3d;
  color: #c85f3d;
}

.admin-modal-close .material-icons {
  font-size: 1.1rem;
}

.admin-modal-hint {
  margin: 0 0 1.4rem;
  color: #9aabae;
  font-size: 0.8rem;
}

.admin-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.admin-modal-save {
  min-height: 44px;
  padding: 0 1.4rem;
}

.admin-modal-status {
  margin-top: 0.75rem;
  text-align: left;
}


.booking-field {
  text-align: left;
}

.booking-field label {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-select,
.booking-input {
  width: 100%;
  min-height: 50px;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.booking-select:focus,
.booking-input:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.08);
}

.booking-select option {
  background: #05090b;
  color: #fff;
}

.booking-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.75;
}

/* MAP */
.destination-section {
  background: lab(5.27136% -1.99367 -5.70667);
}

.destination-title {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.destination-divider {
  width: 80px;
  height: 2px;
  background: #d4af37;
  margin: 0 auto 2.5rem auto;
}

.map-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.map {
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  overflow: visible;
  background: linear-gradient(180deg, rgba(9, 20, 31, 0.4), rgba(9, 20, 31, 0.4)),
    url('../assets/images/map.png') center/cover no-repeat;
  background-size: cover;
}

.map::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 30px);
  opacity: 0.35;
  pointer-events: none;
}

.map-debug {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  color: #f8f8f8;
  font-size: 0.8rem;
  letter-spacing: 0.04rem;
  pointer-events: none;
  z-index: 3;
  display: none;
}

.point {
  position: absolute;
  width: 24px;
  height: 24px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.point:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 7px;
}

.point:hover {
  z-index: 6;
}

.point::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4af37;
  transform: translate(-50%, -50%);
  animation: pointPulse 2.4s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.point:hover::before {
  transform: translate(-50%, -50%) scale(1.25);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.22), 0 0 14px rgba(212, 175, 55, 0.35);
}

@keyframes pointPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.18);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0), 0 0 10px rgba(212, 175, 55, 0.22);
  }
}

.point[data-destination="anguilla"] {
  top: 27.5%;
  left: 50.7%;
}

.point[data-destination="saint-martin-north"] {
  top: 52.5%;
  left: 51.5%;
}

.point[data-destination="saint-martin-south"] {
  top: 70%;
  left: 45.5%;
}

.point[data-destination="saint-barthelemy"] {
  top: 84.5%;
  left: 68.5%;
}

.destination-modal .modal-dialog {
  height: min(720px, calc(100dvh - 3rem));
}

.destination-modal .modal-content {
  height: 100%;
  background: #05090b;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 0;
  overflow: hidden;
}

.destination-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  height: 100%;
  min-height: 0;
}

.destination-modal-media {
  position: relative;
  min-height: 0;
  background: #000;
}

.destination-modal-media img,
.destination-modal-media video {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.destination-modal-media video {
  background: #000;
}

.destination-modal-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 5.8rem;
  z-index: 2;
  margin: 0;
  padding: 0.65rem 0.8rem;
  background: rgba(0, 0, 0, 0.68);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: left;
}

.destination-modal-thumbs {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.destination-modal-thumb {
  position: relative;
  height: 64px;
  padding: 0;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.destination-modal-thumb.active {
  border-color: #d4af37;
}

.destination-modal-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.destination-modal-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-family: 'Material Icons';
  font-size: 1.8rem;
  line-height: 1;
}

.destination-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  overflow-y: auto;
  padding: 3rem;
  text-align: left;
}

.destination-modal-content h2 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}

.destination-modal-divider {
  width: 64px;
  height: 2px;
  margin-bottom: 1.7rem;
  background: #d4af37;
}

.destination-modal-content p:not(.section-subtitle) {
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.destination-modal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.destination-modal-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.destination-modal-button {
  width: 100%;
  min-height: 54px;
}

.destination-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.7rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.destination-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.destination-legend div {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-dot {
  display: inline-block;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4af37;
}

@media (max-width: 991.98px) {

  .navbar,
  .navbar.scrolled {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    height: 72px;
    min-height: 72px;
    padding: 0;
    background: rgba(0, 0, 0, 0.88) !important;
    backdrop-filter: none;
    overflow: visible;
    transform: translate3d(0, 0, 0);
  }

  .navbar>.container-fluid {
    position: relative;
    height: 72px;
    min-height: 72px;
    padding: 0 1rem;
    align-items: center;
  }

  .navbar-logo {
    height: 48px;
  }

  .navbar-text {
    font-size: 1.35rem;
  }

  .navbar-toggler {
    width: 52px;
    height: 52px;
    margin-left: auto;
    padding: 0;
    border-radius: 0.45rem;
  }

  .navbar-collapse {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  }

  .navbar-center {
    align-items: flex-start;
    gap: 0;
  }

  .navbar-nav .nav-link {
    padding: 0.72rem 0;
  }

  .navbar-collapse .btn-gold {
    width: 100%;
    margin-top: 0.8rem;
  }

  .boat-carousel {
    margin: 0 auto;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-item {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .reviews-shell {
    max-width: 520px;
  }

  .reviews-window {
    overflow-x: auto;
  }

  .reviews-arrow {
    display: none;
  }

  .review-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .gallery-shell {
    width: min(960px, calc(100vw - 2rem));
  }

  .gallery-window {
    overflow-x: auto;
  }

  .gallery-arrow {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .booking-cta {
    min-height: 760px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .destination-modal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 42%) minmax(0, 58%);
  }

  .destination-modal-media img,
  .destination-modal-media video {
    height: 100%;
    min-height: 0;
  }

  .destination-modal-caption {
    bottom: 5.2rem;
  }

  .destination-modal-thumb {
    height: 54px;
  }

  .destination-modal-content {
    padding: 2rem;
  }

  .destination-modal-content h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 575.98px) {

  .navbar,
  .navbar.scrolled {
    height: 66px;
    min-height: 66px;
    padding: 0;
  }

  .navbar>.container-fluid {
    height: 66px;
    min-height: 66px;
    padding: 0 0.85rem;
  }

  .navbar-brand {
    gap: 0.65rem;
  }

  .navbar-logo {
    height: 42px;
  }

  .navbar-text {
    font-size: 1.25rem;
  }

  .navbar-toggler {
    width: 48px;
    height: 48px;
  }

  .hero-content {
    width: min(100% - 2rem, 360px);
  }

  .hero-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.28rem;
    margin-bottom: 0.85rem;
  }

  .hero-title {
    font-size: 3.35rem;
    line-height: 1.02;
    margin-bottom: 1.15rem;
  }

  .hero-emphasis {
    font-size: 1.08rem;
    line-height: 1.35;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    gap: 1rem;
  }

  .hero-buttons .btn {
    min-width: 168px;
    padding: 0.82rem 1.65rem;
    font-size: 0.82rem;
    letter-spacing: 0.12rem;
  }

  .experience-section {
    padding: 46px 0;
  }

  .experience-section .section-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.24rem;
    margin-bottom: 0.65rem;
  }

  .experience-section .experience-title {
    font-size: 2.1rem;
    line-height: 1.05;
    margin-bottom: 0.7rem;
  }

  .destination-title,
  .boat-title,
  .pricing-title,
  .gallery-title {
    font-size: 2.15rem;
    line-height: 1.08;
    margin-bottom: 0.75rem;
  }

  .destination-section {
    padding: 52px 0;
  }

  .destination-divider {
    width: 62px;
    margin-bottom: 2rem;
  }

  .map-frame {
    gap: 1.15rem;
  }

  .map {
    width: min(100%, 348px);
    border-radius: 1.05rem;
  }

  .point {
    width: 32px;
    height: 32px;
  }

  .destination-legend {
    margin-top: 0.55rem;
    font-size: 0.84rem;
  }

  .boat-section {
    padding: 52px 0;
  }

  .boat-divider {
    width: 58px;
    margin-bottom: 1.6rem;
  }

  .boat-section .row {
    --bs-gutter-y: 1.35rem;
  }

  .boat-carousel {
    width: min(100%, 320px);
    border-radius: 1rem;
  }

  .boat-carousel .carousel-inner {
    border-radius: 1rem;
    aspect-ratio: 4 / 3;
  }

  .boat-carousel .carousel-control-prev,
  .boat-carousel .carousel-control-next {
    width: 2rem;
    height: 2rem;
    margin-inline: 0.45rem;
  }

  .boat-carousel .carousel-indicators {
    bottom: 0.55rem;
    margin-bottom: 0;
  }

  .boat-carousel .carousel-indicators [data-bs-target] {
    width: 1.45rem;
    height: 0.25rem;
  }

  .boat-section .text-start {
    text-align: center !important;
  }

  .boat-copy {
    max-width: 330px;
    margin: 0 auto 0.75rem;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .boat-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    max-width: 348px;
    margin: 1.15rem auto 0 !important;
  }

  .boat-features>[class*="col-"] {
    width: auto;
    max-width: none;
    padding: 0;
  }

  .feature-box {
    min-height: 86px;
    gap: 0.35rem;
    padding: 0.65rem 0.35rem;
    border-radius: 0.65rem;
  }

  .material-icons.feature-icon {
    font-size: 1.35rem;
  }

  .feature-box strong {
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .feature-label {
    font-size: 0.58rem;
    letter-spacing: 0.08rem;
  }

  .experience-section .experience-divider {
    width: 58px;
    margin-bottom: 1.6rem;
  }

  .experience-section .row {
    margin-top: 1rem !important;
    --bs-gutter-y: 0.85rem;
    --bs-gutter-x: 0.85rem;
  }

  .experience-section .row>.col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .experience-card {
    min-height: 0;
    height: 132px;
    justify-content: center;
    padding: 0.9rem 0.55rem;
    border-radius: 0.7rem;
  }

  .experience-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.65rem;
  }

  .experience-icon .material-icons {
    font-size: 1.35rem;
  }

  .experience-card h3 {
    font-size: 0.98rem;
    line-height: 1.08;
    margin-bottom: 0;
  }

  .experience-card p {
    display: none;
  }

  .pricing-section {
    padding: 58px 0;
  }

  .pricing-title {
    font-size: 2.15rem;
  }

  .pricing-divider {
    width: 56px;
    margin-bottom: 1.7rem;
  }

  .pricing-grid {
    gap: 1rem;
    max-width: 360px;
  }

  .pricing-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    text-align: left;
    border-color: rgba(212, 175, 55, 0.16);
    border-radius: 0.75rem;
  }

  .pricing-eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.64rem;
    letter-spacing: 0.18rem;
  }

  .pricing-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.7rem;
    line-height: 1.05;
  }

  .pricing-duration {
    margin-bottom: 1rem;
    font-size: 0.84rem;
  }

  .pricing-list {
    margin-bottom: 1.1rem;
  }

  .pricing-row {
    gap: 0.8rem;
    padding: 0.82rem 0;
    font-size: 0.96rem;
    line-height: 1.2;
  }

  .pricing-row span {
    min-width: 0;
  }

  .pricing-row strong {
    flex: 0 0 auto;
    max-width: 44%;
    font-size: 1rem;
    text-align: right;
  }

  .pricing-book-button {
    min-height: 46px;
    margin-top: auto;
    padding-inline: 1rem;
    font-size: 0.76rem;
    letter-spacing: 0.12rem;
  }

  .pricing-includes {
    max-width: 360px;
    margin-top: 2.2rem;
    text-align: left;
  }

  .pricing-includes h3 {
    margin-bottom: 1rem;
    font-size: 1.18rem;
    text-align: center;
  }

  .pricing-includes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    font-size: 0.86rem;
  }

  .pricing-includes-list span {
    align-items: flex-start;
  }

  .pricing-includes-list .material-icons {
    margin-top: 0.08rem;
  }

  .gallery-section {
    padding: 80px 0;
  }

  .gallery-title {
    font-size: 2.15rem;
  }

  .gallery-grid {
    gap: 0.85rem;
  }

  .gallery-item {
    flex-basis: min(82vw, 330px);
  }

  .reviews-section {
    padding: 58px 0;
  }

  .reviews-title {
    font-size: 2.15rem;
  }

  .reviews-divider {
    margin-bottom: 1.8rem;
  }

  .reviews-grid {
    gap: 0.85rem;
  }

  .review-card {
    flex-basis: min(82vw, 330px);
    min-height: 0;
    padding: 1.1rem;
  }

  .booking-cta {
    min-height: 0;
    padding: 64px 0 58px;
    background-position: 60% center;
  }

  .booking-cta-content {
    width: min(100%, 390px);
    padding: 0;
  }

  .booking-cta .section-subtitle {
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.24rem;
  }

  .booking-cta .experience-title {
    margin-bottom: 0.75rem;
    font-size: 2.15rem;
    line-height: 1.06;
  }

  .booking-cta-copy {
    max-width: 330px;
    margin-bottom: 1.35rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .contact-form {
    padding: 1rem;
    border-radius: 0.75rem;
  }

  .contact-mode-toggle {
    margin-bottom: 0.95rem;
  }

  .contact-mode-button {
    min-height: 44px;
    font-size: 0.72rem;
    letter-spacing: 0.12rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .booking-field label {
    margin-bottom: 0.42rem;
    font-size: 0.68rem;
    letter-spacing: 0.11rem;
  }

  .booking-select,
  .booking-input {
    min-height: 46px;
    padding-inline: 0.85rem;
    font-size: 0.95rem;
  }

  .contact-textarea {
    min-height: 104px;
  }

  .contact-submit-button {
    min-height: 50px;
    margin-top: 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.12rem;
  }

  .contact-form-status {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .booking-cta-actions {
    gap: 0.85rem;
  }

  .booking-cta-actions .btn {
    width: 100%;
    min-height: 58px;
    font-size: 0.82rem;
    letter-spacing: 0.18rem;
  }

  .site-footer {
    padding: 62px 0 46px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.3rem;
    padding-bottom: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p {
    margin-top: 1.5rem;
  }

  .footer-column h3 {
    margin-bottom: 1.25rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 28px;
  }

  .footer-legal {
    gap: 1.35rem;
    flex-wrap: wrap;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp svg {
    width: 31px;
    height: 31px;
  }

  .destination-modal .modal-dialog {
    height: auto;
    margin: 0.85rem;
  }

  .destination-modal .modal-content {
    height: auto;
    max-height: calc(100dvh - 1.7rem);
    border-radius: 1.05rem;
    border-color: rgba(212, 175, 55, 0.34);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.68);
  }

  .destination-modal-grid {
    display: block;
    height: auto;
    overflow-y: auto;
  }

  .destination-modal-media {
    height: 300px;
    min-height: 0;
  }

  .destination-modal-caption {
    display: none;
  }

  .destination-modal-thumbs {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .destination-modal-thumb {
    height: 48px;
    border-width: 1px;
  }

  .destination-modal-content {
    padding: 1.35rem;
    overflow: visible;
  }

  .destination-modal-content h2 {
    font-size: 1.95rem;
    line-height: 1;
  }

  .destination-modal-divider {
    width: 54px;
    margin-bottom: 1.2rem;
  }

  .destination-modal-content p:not(.section-subtitle) {
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .destination-modal-highlights {
    gap: 0.5rem;
    margin-bottom: 1.35rem;
  }

  .destination-modal-highlights span {
    width: 100%;
    justify-content: center;
    min-height: 32px;
    font-size: 0.68rem;
    letter-spacing: 0.11rem;
  }

  .destination-modal-button {
    min-height: 50px;
    font-size: 0.82rem;
    letter-spacing: 0.13rem;
  }

  .destination-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.55rem;
    background-color: rgba(255, 255, 255, 0.86);
  }
}

/* EXPERIENCE MODALS CUSTOM STYLES */
.experience-card {
  cursor: pointer;
}

.exp-modal .modal-content {
  background: #0b0b0b;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-backdrop.show {
  opacity: 0.86;
}

.exp-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background-color: rgba(212, 175, 55, 0.8);
  border-radius: 50%;
  padding: 0.75rem;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.exp-modal-close:hover {
  background-color: #d4af37;
}

.exp-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.exp-modal-flex {
  display: flex;
  width: 100%;
  min-height: 500px;
}

.exp-modal-image-side {
  flex: 0 0 45%;
  max-width: 45%;
}

.exp-modal-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-modal-info {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-modal-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.exp-modal-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.exp-modal-divider {
  width: 60px;
  height: 2px;
  background: #d4af37;
  margin-bottom: 2rem;
}

.exp-modal-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.exp-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exp-modal-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.exp-modal-list li .material-icons {
  color: #d4af37;
  font-size: 1.2rem;
}

.exp-modal-gallery {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}

.exp-modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.exp-modal-gallery img:hover {
  transform: scale(1.02);
}

#openBarModal .modal-dialog,
#snorkelingModal .modal-dialog,
#guestsModal .modal-dialog,
#captainModal .modal-dialog {
  height: min(720px, calc(100dvh - 3.5rem));
}

#openBarModal .modal-content,
#snorkelingModal .modal-content,
#guestsModal .modal-content,
#captainModal .modal-content,
#openBarModal .modal-body,
#snorkelingModal .modal-body,
#guestsModal .modal-body,
#captainModal .modal-body,
#openBarModal .exp-modal-grid,
#snorkelingModal .exp-modal-grid,
#guestsModal .exp-modal-grid,
#captainModal .exp-modal-flex {
  height: 100%;
}

#openBarModal .exp-modal-grid,
#snorkelingModal .exp-modal-grid,
#guestsModal .exp-modal-grid,
#captainModal .exp-modal-flex {
  min-height: 0;
}

#openBarModal .exp-modal-info,
#snorkelingModal .exp-modal-info,
#guestsModal .exp-modal-info,
#captainModal .exp-modal-info {
  min-height: 0;
  overflow-y: auto;
}

#captainModal .exp-modal-image-side {
  min-height: 0;
  overflow: hidden;
}

#captainModal .exp-modal-image-side img {
  min-height: 0;
  display: block;
}

#openBarModal .exp-modal-gallery,
#snorkelingModal .exp-modal-gallery,
#guestsModal .exp-modal-gallery {
  min-height: 0;
  overflow: hidden;
}

#openBarModal .exp-modal-gallery img,
#snorkelingModal .exp-modal-gallery img,
#guestsModal .exp-modal-gallery img {
  min-height: 0;
  display: block;
}

@media (max-width: 991px) {
  .exp-modal-grid {
    grid-template-columns: 1fr;
  }

  .exp-modal-flex {
    flex-direction: column;
  }

  .exp-modal-image-side {
    max-width: 100%;
    height: 300px;
  }

  .exp-modal-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    height: 250px;
  }

  .exp-modal-info {
    padding: 2rem;
  }

  .exp-modal-title {
    font-size: 2.2rem;
  }

  #openBarModal .modal-dialog,
  #snorkelingModal .modal-dialog,
  #guestsModal .modal-dialog,
  #captainModal .modal-dialog {
    height: calc(100dvh - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  #captainModal .exp-modal-flex {
    height: 100%;
  }

  #openBarModal .exp-modal-grid,
  #snorkelingModal .exp-modal-grid,
  #guestsModal .exp-modal-grid {
    grid-template-rows: minmax(0, 1fr) minmax(180px, 34%);
  }

  #openBarModal .exp-modal-gallery,
  #snorkelingModal .exp-modal-gallery,
  #guestsModal .exp-modal-gallery {
    height: auto;
  }
}

@media (max-width: 576px) {
  .exp-modal .modal-dialog {
    margin: 0.85rem;
  }

  .exp-modal .modal-content {
    border-radius: 1.1rem;
    border-color: rgba(212, 175, 55, 0.34);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.68);
  }

  .exp-modal-close {
    top: 0.9rem;
    right: 0.9rem;
    padding: 0.58rem;
  }

  .exp-modal-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .exp-modal-gallery img {
    height: 200px;
  }

  #openBarModal .modal-dialog,
  #snorkelingModal .modal-dialog,
  #guestsModal .modal-dialog {
    height: auto;
  }

  #openBarModal .modal-content,
  #snorkelingModal .modal-content,
  #guestsModal .modal-content,
  #captainModal .modal-content,
  #openBarModal .modal-body,
  #snorkelingModal .modal-body,
  #guestsModal .modal-body,
  #captainModal .modal-body {
    height: auto;
    max-height: calc(100dvh - 1rem);
  }

  #captainModal .modal-dialog {
    height: auto;
  }

  #openBarModal .exp-modal-grid,
  #snorkelingModal .exp-modal-grid,
  #guestsModal .exp-modal-grid {
    grid-template-rows: auto 180px;
    align-content: start;
    height: auto;
    min-height: 0;
  }

  #openBarModal .exp-modal-gallery,
  #snorkelingModal .exp-modal-gallery,
  #guestsModal .exp-modal-gallery {
    grid-template-columns: 1fr 1fr;
    height: 168px;
    margin: 0 1.25rem 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 0.9rem;
    overflow: hidden;
  }

  #openBarModal .exp-modal-gallery img,
  #snorkelingModal .exp-modal-gallery img,
  #guestsModal .exp-modal-gallery img {
    height: 100%;
  }

  .exp-modal-info {
    padding: 1.25rem;
    justify-content: flex-start;
  }

  .exp-modal .section-subtitle {
    font-size: 0.64rem;
    letter-spacing: 0.2rem;
    margin-bottom: 0.6rem;
  }

  .exp-modal-title {
    font-size: 1.85rem;
    line-height: 1;
    margin-bottom: 0.45rem;
  }

  .exp-modal-divider {
    width: 48px;
    margin-bottom: 1rem;
  }

  .exp-modal-text {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
  }

  .exp-modal-list li {
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .exp-modal-list li .material-icons {
    font-size: 1rem;
  }

  #openBarModal .modal-body,
  #snorkelingModal .modal-body,
  #guestsModal .modal-body {
    overflow-y: auto;
  }

  #openBarModal .exp-modal-info,
  #snorkelingModal .exp-modal-info,
  #guestsModal .exp-modal-info {
    overflow: visible;
  }

  #captainModal .exp-modal-flex {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  #captainModal .exp-modal-image-side {
    flex: 0 0 auto;
    max-width: 100%;
    min-height: 0;
    height: 178px;
    margin: 0 1.25rem 1.25rem;
    width: auto;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 0.9rem;
  }

  #captainModal .exp-modal-info {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  #captainModal .exp-modal-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
  }
}