/* THEMED CSS VARIABLES */
:root {
  --nectar-bg: #f5fcf6;
  --nectar-surface: #ffffff;
  --nectar-surface-alt: #edf6ee;
  --nectar-accent: #2c7247;
  --nectar-accent-hover: #1f5432;
  --nectar-accent-light: #e3f4e9;
  --nectar-glow: #e67e22;
  --nectar-dark: #121b15;
  --nectar-text: #202d24;
  --nectar-text-light: #526658;
  --nectar-gradient: linear-gradient(135deg, #2c7247 0%, #173d25 100%);
  --nectar-warm-gradient: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-radius-custom: 20px;
  --shadow-custom: 0 10px 40px rgba(44, 114, 71, 0.08);
}

/* BASE RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.tropical-body-root {
  font-family: var(--font-body);
  background-color: var(--nectar-bg);
  color: var(--nectar-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--nectar-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* SCROLL PROGRESS BAR */
@keyframes progress-grow {
  to { width: 100%; }
}
.sweet-progress-bar {
  height: 4px;
  width: 0;
  background: var(--nectar-warm-gradient);
  animation: progress-grow linear;
  animation-timeline: scroll();
  position: absolute;
  bottom: 0;
  left: 0;
}

/* HEADER STYLE */
.tropical-navigation-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.tropical-header-inner-box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  position: relative;
}

.tropical-brand-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tropical-icon-graphic {
  color: var(--nectar-accent);
}

.tropical-brand-text-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--nectar-dark);
  letter-spacing: -0.5px;
}

.tropical-navigation-links-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.tropical-nav-anchor {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--nectar-text-light);
  padding: 0.5rem 0;
  position: relative;
}

.tropical-nav-anchor:hover, .tropical-nav-anchor.active {
  color: var(--nectar-accent);
}

.tropical-nav-anchor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--nectar-accent);
  transition: width 0.3s ease;
}

.tropical-nav-anchor:hover::after, .tropical-nav-anchor.active::after {
  width: 100%;
}

/* HAMBURGER FOR MOBILE */
.tropical-menu-checkbox-input {
  display: none;
}

.tropical-hamburger-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
}

.tropical-bar-element {
  width: 25px;
  height: 3px;
  background-color: var(--nectar-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* SCROLL REVEAL VIEW ANIMATION */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: slide-up 0.6s linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* HERO SECTION */
.tropical-hero-outer-viewport {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem;
  color: #ffffff;
}

.tropical-hero-inner-payload {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.tropical-hero-primary-headline {
  font-size: 3.5rem;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.tropical-hero-supporting-deck {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
  margin-bottom: 2.5rem;
}

.tropical-hero-interactive-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* BUTTONS */
.tropical-call-to-action-solid {
  display: inline-block;
  background: var(--nectar-gradient);
  color: #ffffff;
  padding: 1rem 2.25rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(44, 114, 71, 0.3);
}

.tropical-call-to-action-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 114, 71, 0.4);
}

.tropical-call-to-action-outline {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  padding: 1rem 2.25rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.tropical-call-to-action-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* BENTO GRID (FEATURES) */
.tropical-features-bento-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8vh 1.5rem;
}

.tropical-section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
}

.tropical-section-h2-title {
  font-size: 2.5rem;
  color: var(--nectar-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.tropical-section-subtext-para {
  font-size: 1.1rem;
  color: var(--nectar-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.tropical-bento-grid-structure {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.tropical-bento-cell {
  background-color: var(--nectar-surface);
  border-radius: var(--border-radius-custom);
  padding: 2.5rem;
  box-shadow: var(--shadow-custom);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tropical-bento-cell:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(44, 114, 71, 0.12);
}

.grid-span-4 {
  grid-column: span 4;
}

.grid-span-2 {
  grid-column: span 2;
}

.grid-span-3 {
  grid-column: span 3;
}

.grid-span-6 {
  grid-column: span 6;
}

.tropical-bento-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: var(--nectar-accent-light);
  color: var(--nectar-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tropical-bento-cell-title {
  font-size: 1.35rem;
  color: var(--nectar-dark);
  margin-bottom: 0.75rem;
}

.tropical-bento-cell-desc {
  font-size: 0.95rem;
  color: var(--nectar-text-light);
  line-height: 1.5;
}

.tropical-bento-giant-stat {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.center-aligned {
  text-align: center;
  align-items: center;
}

.horizontal-flex-bento {
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

/* PARALLAX VISUAL STRIP */
.tropical-visual-parallax-strip {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 12vh 1.5rem;
  color: #ffffff;
  text-align: center;
}

.tropical-parallax-inner-content {
  max-width: 800px;
  margin: 0 auto;
}

.tropical-sub-caps-accent {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--nectar-glow);
  margin-bottom: 1rem;
}

.tropical-parallax-huge-title {
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.tropical-parallax-body-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

/* HOW IT WORKS SECTION */
.tropical-how-it-works-segment {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8vh 1.5rem;
}

.tropical-steps-horizontal-group {
  display: flex;
  gap: 2rem;
}

.tropical-step-card-box {
  flex: 1;
  background-color: var(--nectar-surface);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-custom);
  box-shadow: var(--shadow-custom);
  position: relative;
  overflow: hidden;
}

.tropical-step-giant-bg-number {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 7rem;
  font-weight: 900;
  color: var(--nectar-accent);
  opacity: 0.06;
  line-height: 1;
}

.tropical-step-narrative-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--nectar-dark);
}

.tropical-step-narrative-desc {
  font-size: 0.95rem;
  color: var(--nectar-text-light);
}

/* CTA STRIP AT THE BOTTOM */
.tropical-bottom-cta-banner {
  max-width: 1200px;
  margin: 4rem auto;
  border-radius: var(--border-radius-custom);
  padding: 4rem 3rem;
  color: #ffffff;
}

.tropical-cta-flex-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.tropical-cta-typography {
  max-width: 700px;
}

/* EXPERT BIO SECTION */
.tropical-split-bio-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8vh 1.5rem;
}

.tropical-bio-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tropical-bio-photo-wrapper {
  position: relative;
  border-radius: var(--border-radius-custom);
  overflow: hidden;
  box-shadow: var(--shadow-custom);
}

.tropical-bio-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.tropical-bio-text-payload {
  padding-right: 2rem;
}

.tropical-bio-body {
  font-size: 1.05rem;
  color: var(--nectar-text);
  margin-bottom: 1.5rem;
}

/* RESERVE / REGISTRATION ROW */
.tropical-split-reserve-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8vh 1.5rem;
}

.tropical-reserve-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.tropical-reserve-info-col {
  padding-right: 2rem;
}

.tropical-info-benefit-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 1.5rem;
}

.tropical-benefit-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--nectar-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.tropical-benefit-head {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.tropical-benefit-body {
  font-size: 0.95rem;
  color: var(--nectar-text-light);
}

.tropical-direct-contact-prompt {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: var(--nectar-text-light);
  background-color: var(--nectar-surface-alt);
  padding: 1.5rem;
  border-radius: 12px;
}

.tropical-email-hyperlink {
  color: var(--nectar-accent);
  font-weight: 700;
  text-decoration: underline;
}

.tropical-reserve-form-col {
  background-color: var(--nectar-surface);
  padding: 3rem;
  border-radius: var(--border-radius-custom);
  box-shadow: var(--shadow-custom);
}

.tropical-interactive-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tropical-form-head-label {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.tropical-form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tropical-field-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nectar-text);
}

.tropical-text-field-input, .tropical-textarea-input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.tropical-text-field-input:focus, .tropical-textarea-input:focus {
  outline: none;
  border-color: var(--nectar-accent);
}

.tropical-textarea-input {
  height: 120px;
  resize: vertical;
}

.tropical-form-checkbox-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.tropical-checkbox-input {
  margin-top: 0.25rem;
}

.tropical-checkbox-text-label {
  font-size: 0.85rem;
  color: var(--nectar-text-light);
}

/* FAQ ACCORDION Style */
.tropical-faq-accordion-segment {
  max-width: 900px;
  margin: 0 auto;
  padding: 8vh 1.5rem;
}

.tropical-faq-list-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tropical-faq-accordion-card {
  background-color: var(--nectar-surface);
  border-radius: 12px;
  box-shadow: var(--shadow-custom);
  overflow: hidden;
  padding: 1.25rem 2rem;
}

.tropical-faq-header-summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--nectar-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tropical-faq-header-summary::-webkit-details-marker {
  display: none;
}

.tropical-faq-header-summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--nectar-accent);
}

details[open] .tropical-faq-header-summary::after {
  content: '−';
}

.tropical-faq-body-content {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--nectar-text-light);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1rem;
}

/* LEGAL CONSTRAINED LAYOUT */
.tropical-legal-page-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tropical-legal-main-heading {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.tropical-legal-date-stamp {
  font-size: 0.9rem;
  color: var(--nectar-text-light);
  margin-bottom: 3rem;
}

.tropical-legal-segment {
  margin-bottom: 2.5rem;
}

.tropical-legal-segment h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tropical-legal-segment p {
  font-size: 1rem;
  color: var(--nectar-text-light);
  margin-bottom: 1rem;
}

/* THANK YOU STYLING */
.tropical-thank-icon-box {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: var(--nectar-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

/* FOOTER STYLING */
.tropical-footer-base {
  background-color: var(--nectar-dark);
  color: #a0b2a6;
  padding: 5rem 1.5rem 2rem;
}

.tropical-footer-inner-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4rem;
}

.tropical-footer-branding {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tropical-disclaimer-notice {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #798e80;
}

.tropical-footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tropical-footer-subhead {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.tropical-footer-link-group a {
  font-size: 0.9rem;
  color: #a0b2a6;
}

.tropical-footer-link-group a:hover {
  color: #ffffff;
}

.tropical-footer-copyright-row {
  max-width: 1200px;
  margin: 2rem auto 0;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  color: #798e80;
}

/* COOKIE COMPLIANCE BAR */
.tropical-cookie-toast-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--nectar-dark);
  color: #ffffff;
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

.tropical-cookie-toast-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.tropical-cookie-action-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.tropical-cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.tropical-cookie-accept {
  background-color: var(--nectar-accent);
  color: white;
}

.tropical-cookie-accept:hover {
  background-color: var(--nectar-accent-hover);
}

.tropical-cookie-decline {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tropical-cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}


/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
  .tropical-bento-grid-structure {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-span-4, .grid-span-2, .grid-span-3, .grid-span-6 {
    grid-column: span 2;
  }
  .horizontal-flex-bento {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .tropical-bio-grid-container, .tropical-reserve-grid-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .tropical-bio-photo-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .tropical-bio-text-payload {
    padding-right: 0;
  }
  .tropical-reserve-info-col {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .tropical-hamburger-trigger {
    display: flex;
  }

  .tropical-navigation-links-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .tropical-nav-anchor {
    width: 100%;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .tropical-menu-checkbox-input:checked ~ .tropical-navigation-links-list {
    max-height: 300px;
  }

  .tropical-menu-checkbox-input:checked ~ .tropical-hamburger-trigger .tropical-bar-element:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .tropical-menu-checkbox-input:checked ~ .tropical-hamburger-trigger .tropical-bar-element:nth-child(2) {
    opacity: 0;
  }

  .tropical-menu-checkbox-input:checked ~ .tropical-hamburger-trigger .tropical-bar-element:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .tropical-hero-primary-headline {
    font-size: 2.25rem;
  }

  .tropical-parallax-huge-title {
    font-size: 2rem;
  }

  .tropical-steps-horizontal-group {
    flex-direction: column;
  }

  .tropical-cta-flex-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .tropical-footer-inner-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tropical-cookie-toast-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .tropical-bento-grid-structure {
    grid-template-columns: 1fr;
  }

  .grid-span-4, .grid-span-2, .grid-span-3, .grid-span-6 {
    grid-column: span 1;
  }

  .tropical-bento-cell {
    padding: 2rem;
  }
}