:root {
  --sky-blue: #12bff0;
  --lime-green: #a8ef2d;
  --deep-blue: #062f5f;
  --light-blue: #eafaff;
  --white: #ffffff;
  --text-dark: #123044;
  --soft-gray: #f4f8fb;
  --shadow: 0 18px 44px rgba(6, 47, 95, 0.12);
  --shadow-hover: 0 28px 68px rgba(6, 47, 95, 0.2);
  --line: rgba(6, 47, 95, 0.1);
  --muted: #5f7488;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--text-dark);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(6, 47, 95, 0.06);
  box-shadow: 0 12px 34px rgba(6, 47, 95, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--deep-blue);
  font-weight: 900;
  transition: transform 0.24s var(--ease), color 0.24s var(--ease);
}

.brand:hover,
.brand:focus-visible {
  color: #0d7db1;
  transform: translateY(-1px);
}

.brand-logo {
  width: 76px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(6, 47, 95, 0.1));
  transition: transform 0.28s var(--ease), filter 0.28s var(--ease);
}

.brand:hover .brand-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 16px 28px rgba(6, 47, 95, 0.16));
}

.brand-name {
  font-size: 0.98rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--deep-blue);
  font-size: 0.94rem;
  font-weight: 900;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 2px;
  transition: color 0.22s var(--ease), transform 0.22s var(--ease);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky-blue), var(--lime-green));
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: #0b8cbe;
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(6, 47, 95, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--white), var(--light-blue));
  box-shadow: 0 10px 24px rgba(6, 47, 95, 0.1);
  cursor: pointer;
  place-items: center;
  padding: 10px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(6, 47, 95, 0.16);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--deep-blue);
  transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  color: var(--deep-blue);
  font-weight: 900;
  line-height: 1;
  isolation: isolate;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease), color 0.24s var(--ease);
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 42%, rgba(255, 255, 255, 0.18));
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.01);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.btn-lime {
  background: linear-gradient(135deg, #c8ff49, var(--lime-green));
  box-shadow: 0 16px 34px rgba(168, 239, 45, 0.34);
}

.btn-lime:hover,
.btn-lime:focus-visible {
  box-shadow: 0 22px 46px rgba(168, 239, 45, 0.48);
}

.btn-small {
  min-height: 42px;
  padding: 0 17px;
}

.btn-glass,
.btn-glass-dark {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(6, 47, 95, 0.18);
  backdrop-filter: blur(14px);
}

.btn-glass:hover,
.btn-glass:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 48px rgba(6, 47, 95, 0.24);
}

.btn-glass-dark {
  border-color: rgba(6, 47, 95, 0.12);
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.7);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 47, 95, 0.86);
  font-size: 0.76rem;
  font-weight: 900;
  transition: transform 0.24s var(--ease), background 0.24s var(--ease);
}

.btn:hover .btn-icon,
.btn:focus-visible .btn-icon {
  transform: translateX(2px) scale(1.06);
  background: var(--sky-blue);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-blue);
}

.hero-home {
  min-height: clamp(680px, 84svh, 880px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 47, 95, 0.9), rgba(6, 47, 95, 0.5) 44%, rgba(18, 191, 240, 0.08)),
    url("../assets/img/hero-catamaran.jpg") center/cover no-repeat;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 20%, rgba(168, 239, 45, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(6, 47, 95, 0.08), rgba(6, 47, 95, 0.36));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: end;
  padding: 112px 0 86px;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sky-blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-panel .eyebrow,
.split-copy .eyebrow {
  color: var(--lime-green);
}

h1,
h2,
h3 {
  color: var(--deep-blue);
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  color: var(--white);
  font-size: clamp(3.15rem, 8vw, 7.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.hero-subtitle {
  margin: 26px 0 10px;
  color: var(--lime-green);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 900;
}

.hero-copy,
.page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.glass-card,
.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(6, 47, 95, 0.28);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 26px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease);
}

.hero-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 36px 86px rgba(6, 47, 95, 0.34);
}

.hero-card-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--deep-blue);
  background: var(--lime-green);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-card h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.8rem;
}

.hero-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-mini-grid span {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 800;
}

.quick-benefits {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  padding-bottom: 58px;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 191, 240, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.benefit-item {
  display: flex;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(6, 47, 95, 0.07);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--white), var(--light-blue));
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 191, 240, 0.28);
  box-shadow: 0 20px 42px rgba(6, 47, 95, 0.14);
}

.benefit-featured {
  background: linear-gradient(135deg, #faffec, var(--white));
}

.benefit-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--deep-blue);
  background: linear-gradient(135deg, var(--lime-green), #d8ff71);
  box-shadow: 0 10px 22px rgba(168, 239, 45, 0.26);
  font-size: 0.84rem;
  font-weight: 900;
  transition: transform 0.24s var(--ease);
}

.benefit-item:hover .benefit-icon {
  transform: rotate(-6deg) scale(1.07);
}

.benefit-item h2 {
  margin: 0 0 4px;
  color: var(--deep-blue);
  font-size: 0.98rem;
  line-height: 1.2;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 86px 0;
}

.section:nth-of-type(even) {
  background: var(--soft-gray);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.coffee-panel h2,
.split-copy h2,
.cta-panel h2 {
  margin: 0 0 14px;
  color: var(--deep-blue);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
}

.section-heading p,
.coffee-panel p,
.split-copy p,
.cta-panel p {
  color: var(--muted);
}

.coffee-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(168, 239, 45, 0.18), transparent 24%),
    linear-gradient(180deg, var(--white), var(--light-blue));
}

.coffee-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(18, 191, 240, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.coffee-panel p {
  max-width: 740px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-pill {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(6, 47, 95, 0.1);
  border-radius: 999px;
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(6, 47, 95, 0.08);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease);
}

.filter-pill:hover,
.filter-pill:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(18, 191, 240, 0.32);
  box-shadow: 0 16px 34px rgba(6, 47, 95, 0.14);
}

.filter-pill.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--lime-green), #d7ff62);
  box-shadow: 0 18px 36px rgba(168, 239, 45, 0.32);
}

.compact-filters {
  margin: -14px 0 30px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tour-card,
.review-card,
.booking-form,
.cta-panel,
.category-section,
.gallery-card {
  border: 1px solid rgba(6, 47, 95, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.tour-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.tour-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 191, 240, 0.22);
  box-shadow: var(--shadow-hover);
}

.tour-card-media {
  position: relative;
  overflow: hidden;
}

.tour-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(6, 47, 95, 0.58));
  opacity: 0.82;
  transition: opacity 0.28s var(--ease);
}

.tour-card:hover .tour-card-media::after {
  opacity: 0.62;
}

.tour-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.tour-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.tour-category-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--deep-blue);
  background: var(--lime-green);
  box-shadow: 0 12px 24px rgba(6, 47, 95, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
}

.tour-card-body {
  padding: 22px;
}

.tour-card h3 {
  min-height: 2.35em;
  margin: 0 0 10px;
  color: var(--deep-blue);
  font-size: 1.25rem;
  line-height: 1.18;
}

.tour-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.tour-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.tour-meta span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--deep-blue);
  background: var(--light-blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.tour-meta .price {
  background: #fbffe9;
}

.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tour-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #24627e;
  background: rgba(18, 191, 240, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.btn-card {
  width: 100%;
  min-height: 46px;
  background: linear-gradient(135deg, #c8ff49, var(--lime-green));
  box-shadow: 0 14px 28px rgba(168, 239, 45, 0.26);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.gallery-preview {
  background: var(--white);
}

.gallery-collage,
.gallery-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-tile,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.gallery-tile:hover,
.gallery-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.gallery-tile img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.48s var(--ease), filter 0.48s var(--ease);
}

.gallery-tile::after,
.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(6, 47, 95, 0.72));
}

.gallery-tile:hover img,
.gallery-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.gallery-tile span,
.gallery-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.gallery-large,
.gallery-wide {
  grid-row: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-card.is-hidden {
  display: none;
}

.why-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 47, 95, 0.94), rgba(18, 191, 240, 0.62)),
    url("../assets/img/private-catamaran.jpg") center/cover fixed;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
}

.split-copy h2,
.split-copy p {
  color: var(--white);
}

.light-split .split-copy h2 {
  color: var(--deep-blue);
}

.light-split .split-copy p {
  color: var(--muted);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(6, 47, 95, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease);
}

.choice-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.19);
  box-shadow: 0 24px 52px rgba(6, 47, 95, 0.18);
}

.light-split .choice-item {
  color: var(--deep-blue);
  border-color: rgba(6, 47, 95, 0.08);
  background: var(--white);
}

.choice-item span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--deep-blue);
  background: linear-gradient(135deg, var(--lime-green), #dcff78);
  font-weight: 900;
}

.choice-item p {
  margin: 0;
  font-weight: 900;
}

.reviews-section {
  background: linear-gradient(180deg, var(--light-blue), var(--white));
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  padding: 28px;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.stars {
  margin: 0 0 14px;
  color: #ffb62e;
  letter-spacing: 0;
  font-size: 1.08rem;
}

.review-card p:not(.stars) {
  margin: 0 0 22px;
  color: var(--muted);
}

.review-card h3 {
  margin: 0;
  color: var(--deep-blue);
}

.review-card span {
  color: var(--sky-blue);
  font-weight: 900;
}

.contact-band {
  background:
    radial-gradient(circle at 12% 12%, rgba(168, 239, 45, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(234, 250, 255, 0.86), var(--white));
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.cta-panel {
  position: sticky;
  top: 104px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 47, 95, 0.94), rgba(8, 91, 138, 0.94)),
    url("../assets/img/sunset-catamaran.jpg") center/cover;
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-direct a,
.contact-direct p {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  transition: box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

.booking-form:hover {
  box-shadow: var(--shadow-hover);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.form-submit,
.form-message {
  grid-column: 1 / -1;
}

.booking-form label {
  color: var(--deep-blue);
  font-size: 0.88rem;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.search-box input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d5e9f2;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-dark);
  background: #fbfeff;
  outline: none;
  transition: border 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.search-box input:focus {
  border-color: var(--sky-blue);
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(18, 191, 240, 0.14);
}

.form-submit {
  justify-self: start;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: #178045;
  font-weight: 900;
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: end;
  background-position: center;
  background-size: cover;
}

.excursions-hero {
  background-image:
    linear-gradient(90deg, rgba(6, 47, 95, 0.92), rgba(6, 47, 95, 0.46)),
    url("../assets/img/catamaran-party.jpg");
}

.gallery-hero {
  background-image:
    linear-gradient(90deg, rgba(6, 47, 95, 0.9), rgba(6, 47, 95, 0.35)),
    url("../assets/img/gallery-1.jpg");
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(6, 47, 95, 0.92), rgba(6, 47, 95, 0.42)),
    url("../assets/img/private-tour.jpg");
}

.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(6, 47, 95, 0.92), rgba(6, 47, 95, 0.42)),
    url("../assets/img/sunset-catamaran.jpg");
}

.page-hero-content {
  padding: 92px 0 70px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.catalog-section {
  background: var(--white);
}

.catalog-tools {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid rgba(6, 47, 95, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--deep-blue);
  font-weight: 900;
}

.search-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: center;
}

.search-button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: var(--deep-blue);
  background: linear-gradient(135deg, #c8ff49, var(--lime-green));
  box-shadow: 0 14px 28px rgba(168, 239, 45, 0.28);
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
}

.search-button:hover,
.search-button:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 42px rgba(168, 239, 45, 0.42);
}

.catalog-count {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-weight: 900;
}

.category-section {
  margin-bottom: 32px;
  padding: 26px;
}

.category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.category-heading h2 {
  margin: 0 0 8px;
  color: var(--deep-blue);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.category-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.category-count {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--deep-blue);
  background: var(--light-blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.empty-state {
  padding: 44px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--light-blue);
}

.empty-state h2 {
  margin: 0 0 8px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 12% 0, rgba(18, 191, 240, 0.22), transparent 26%),
    var(--deep-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.7fr;
  gap: 32px;
  padding: 58px 0;
}

.footer-logo {
  width: 150px;
  height: 94px;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 9px;
  transition: color 0.22s var(--ease), transform 0.22s var(--ease);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--lime-green);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 18px 0 10px;
  border-radius: 999px;
  color: var(--deep-blue);
  background: linear-gradient(135deg, #c8ff49, var(--lime-green));
  box-shadow: 0 18px 44px rgba(6, 47, 95, 0.26);
  font-weight: 900;
  animation: floatPulse 3s ease-in-out infinite;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 26px 58px rgba(6, 47, 95, 0.34);
}

.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: #19b35b;
  transition: transform 0.24s var(--ease);
}

.whatsapp-float:hover span {
  transform: rotate(-8deg) scale(1.08);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1120px) {
  .benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .cta-panel {
    position: static;
  }

  .tour-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 70px;
  }

  .brand-logo {
    width: 58px;
    height: 48px;
  }

  .brand-name {
    max-width: 150px;
    white-space: normal;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(6, 47, 95, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body .main-nav.is-open {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .main-nav a,
  .main-nav .btn {
    width: 100%;
  }

  .hero-home {
    min-height: auto;
    background-position: 58% center;
  }

  .hero-grid {
    padding: 76px 0 84px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 5.4rem);
  }

  .quick-benefits {
    margin-top: -26px;
  }

  .filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .filter-pill {
    flex: 0 0 auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .hero-copy,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .coffee-panel .btn,
  .form-submit {
    width: 100%;
  }

  .benefit-strip,
  .tour-grid,
  .review-grid,
  .choice-grid,
  .booking-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-strip {
    padding: 10px;
  }

  .coffee-panel,
  .category-heading {
    display: grid;
  }

  .coffee-panel,
  .category-section,
  .booking-form,
  .cta-panel {
    padding: 22px;
  }

  .gallery-collage,
  .gallery-page-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-large,
  .gallery-wide,
  .gallery-tall {
    grid-row: span 1;
  }

  .tour-card h3 {
    min-height: auto;
  }

  .tour-meta {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 380px;
  }

  .page-hero-content {
    padding: 78px 0 54px;
  }

  .catalog-tools {
    margin-right: -12px;
    margin-left: -12px;
    border-radius: 0;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding-right: 14px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
