:root {
  --blue-950: #05233b;
  --blue-800: #064f8f;
  --blue-600: #0477bf;
  --blue-400: #20b4de;
  --aqua: #68e0e8;
  --sun: #ffd277;
  --foam: #f4fbff;
  --ink: #0d2433;
  --muted: #557181;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(4, 54, 91, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(104, 224, 232, 0.35), transparent 28rem),
    linear-gradient(180deg, #eaf9ff 0%, #ffffff 34%, #edfaff 100%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.75rem);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 35px rgba(5, 35, 59, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
}

.brand-logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(5, 35, 59, 0.2);
}

.site-header.is-scrolled .brand-logo {
  border-color: rgba(4, 119, 191, 0.25);
}

.brand small {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  opacity: 0.82;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.4vw, 2rem);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 22px rgba(5, 35, 59, 0.12);
  font-size: 1.28rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.28);
}

.site-header.is-scrolled .language-switch {
  background: var(--white);
  border-color: rgba(4, 119, 191, 0.18);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
}

.header-call {
  color: var(--blue-950);
  background: var(--sun);
}

.header-whatsapp {
  color: var(--white);
  background: #12b76a;
}

.header-social {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.header-instagram,
.site-header.is-scrolled .header-instagram {
  color: var(--white);
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: rgba(255, 255, 255, 0.45);
}

.header-facebook,
.site-header.is-scrolled .header-facebook {
  color: var(--white);
  background: #1877f2;
  border-color: rgba(255, 255, 255, 0.45);
}

.site-header.is-scrolled .header-social {
  color: var(--blue-950);
  background: rgba(32, 180, 222, 0.12);
  border-color: rgba(4, 119, 191, 0.18);
}

.site-header.is-scrolled .header-instagram {
  color: var(--white);
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: rgba(255, 255, 255, 0.45);
}

.site-header.is-scrolled .header-facebook {
  color: var(--white);
  background: #1877f2;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 22, 39, 0.76) 0%, rgba(4, 65, 104, 0.48) 36%, rgba(4, 119, 191, 0.08) 72%),
    linear-gradient(180deg, rgba(5, 35, 59, 0.2) 0%, rgba(5, 35, 59, 0.1) 62%, rgba(234, 249, 255, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(48rem, calc(100% - 2rem));
  margin-left: clamp(1rem, 6vw, 5rem);
  padding-top: 5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--aqua);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(3.25rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.one-line-title {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.destinations .one-line-title {
  font-size: clamp(1.95rem, 3.6vw, 3.4rem);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 39rem;
  margin-bottom: 1.55rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.6vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.button.primary {
  color: var(--blue-950);
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(38rem, 100%);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.trust-strip div {
  padding: 1rem;
}

.trust-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-strip dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.trust-strip dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro p:not(.eyebrow),
.split p,
.contact p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.intro-copy {
  margin-top: 60px;
}

.blue-band {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(5, 35, 59, 0.96), rgba(4, 119, 191, 0.92)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 34px);
  color: var(--white);
}

.blue-band .eyebrow,
.blue-band p {
  color: rgba(255, 255, 255, 0.76);
}

.details {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 88% 18%, rgba(104, 224, 232, 0.28), transparent 24rem),
    linear-gradient(180deg, #f6fcff 0%, #e6f8ff 100%);
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.82fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}

.details-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.detail-card {
  min-height: 12rem;
  padding: 1.2rem;
  border: 1px solid rgba(4, 119, 191, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(5, 35, 59, 0.09);
}

.detail-card.highlight {
  grid-column: span 2;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 35, 59, 0.94), rgba(4, 119, 191, 0.9)),
    linear-gradient(90deg, rgba(104, 224, 232, 0.22), transparent);
}

.detail-card p {
  color: var(--muted);
  line-height: 1.65;
}

.detail-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.detail-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-card.highlight .detail-label {
  color: var(--aqua);
}

.clean-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 1.05rem;
  line-height: 1.5;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--blue-400);
}

.time-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(4, 119, 191, 0.13);
}

.time-row span {
  color: var(--blue-800);
  font-size: 1.8rem;
  font-weight: 900;
}

.small-note {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  position: sticky;
  top: 5rem;
}

.gallery-item {
  display: block;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.gallery img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.015);
  filter: saturate(1.08);
}

.gallery-item:first-child {
  grid-column: span 2;
}

.gallery-item:first-child img {
  height: 20rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 22, 39, 0.84);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 100%);
  max-height: min(86vh, 900px);
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: -0.9rem;
  right: -0.9rem;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--sun);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.section-text {
  max-width: 720px;
  margin-bottom: 2rem;
}

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

.feature-card,
.review,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 16rem;
  padding: 1.4rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 2.6rem;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--sun);
  font-weight: 900;
}

.feature-card p {
  line-height: 1.65;
}

.fish-tours {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 15% 8%, rgba(104, 224, 232, 0.24), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #effaff 100%);
}

.fish-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.fish-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: clamp(22rem, 34vw, 27rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(4, 119, 191, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(5, 35, 59, 0.09);
}

.fish-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.fish-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.fish-list li {
  padding: 0.75rem 0.95rem;
  border-left: 4px solid var(--blue-400);
  border-radius: 0 8px 8px 0;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(5, 35, 59, 0.06);
  font-weight: 800;
}

.fish-carousel {
  position: relative;
  width: 100%;
  height: clamp(22rem, 34vw, 27rem);
}

.fish-gallery {
  display: flex;
  gap: 0;
  height: 100%;
  overflow-x: auto;
  padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.fish-gallery::-webkit-scrollbar {
  display: none;
}

.fish-gallery .fish-slide {
  display: block;
  flex: 0 0 100%;
  height: 100%;
  aspect-ratio: auto;
  grid-column: auto;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  scroll-snap-align: start;
}

.fish-gallery .fish-slide:first-child {
  grid-column: auto;
}

.fish-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.fish-gallery .fish-slide:nth-child(4) img {
  object-position: 50% 34%;
}

.fish-gallery .fish-slide:first-child img {
  height: 100%;
}

.fish-gallery .fish-main {
  flex-basis: 100%;
}

.fish-dots {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  display: flex;
  gap: 0.45rem;
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  background: rgba(5, 35, 59, 0.48);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.fish-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
}

.fish-dots button.is-active {
  background: var(--sun);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.route-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-list li {
  padding: 1rem;
  border-left: 4px solid var(--blue-400);
  border-radius: 0 8px 8px 0;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(5, 35, 59, 0.08);
  line-height: 1.55;
}

.destinations {
  padding-top: 0;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.destination-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(5, 35, 59, 0.1);
}

.destination-card .gallery-item {
  width: 100%;
  margin: 0.75rem 0.75rem 0;
  width: calc(100% - 1.5rem);
  border-color: rgba(4, 119, 191, 0.22);
  border-radius: 8px;
}

.destination-card img {
  display: block;
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: none;
}

.destination-card h3,
.destination-card p {
  padding-inline: 1rem;
}

.destination-card h3 {
  margin: 1rem 0 0.45rem;
  color: var(--blue-950);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.destination-card p {
  margin-bottom: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.seo-guides {
  background: linear-gradient(180deg, #ffffff, #f1fbff);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.guide-card {
  padding: 1.35rem;
  border: 1px solid rgba(4, 119, 191, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(5, 35, 59, 0.08);
}

.guide-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--sun);
  font-size: 0.88rem;
  font-weight: 900;
}

.guide-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.reviews {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #e9f9ff, #ffffff);
}

.review {
  margin: 0;
  padding: 1.35rem;
  color: var(--ink);
  background: var(--white);
}

.review blockquote {
  min-height: 8.5rem;
  margin: 0 0 1rem;
  color: #254557;
  font-size: 1.04rem;
  line-height: 1.7;
}

.review figcaption {
  display: grid;
  gap: 0.2rem;
  font-weight: 900;
  color: var(--blue-800);
}

.review figcaption span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.reviews-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.reviews-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-800);
  font-weight: 900;
}

.faq {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #ffffff, #effaff);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.faq-list details {
  border: 1px solid rgba(4, 119, 191, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(5, 35, 59, 0.07);
  overflow: hidden;
}

.faq-list summary {
  min-height: 3.4rem;
  padding: 1rem 1.1rem;
  color: var(--blue-950);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--white);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.3rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  color: var(--blue-950);
  background: linear-gradient(90deg, rgba(104, 224, 232, 0.25), rgba(255, 210, 119, 0.18));
  font-weight: 900;
}

.contact-link::after {
  content: "›";
  font-size: 1.5rem;
}

.whatsapp-link {
  color: var(--white);
  background: linear-gradient(90deg, #0fae63, #17c878);
}

.footer {
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1rem, 4vw, 3.75rem) 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(5, 35, 59, 0.98), rgba(4, 79, 143, 0.96)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 34px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--white);
}

.footer strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: 1.15rem;
}

.footer p {
  margin: 0;
  line-height: 1.6;
}

.footer-block {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  font-style: normal;
}

.footer-block span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer a {
  font-weight: 800;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--sun);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.15rem;
}

.footer-socials .footer-whatsapp {
  background: #25d366;
  border-color: rgba(255, 255, 255, 0.28);
}

.footer-socials .footer-instagram {
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: rgba(255, 255, 255, 0.28);
}

.footer-socials .footer-facebook {
  background: #1877f2;
  border-color: rgba(255, 255, 255, 0.28);
}

.footer-socials .footer-maps {
  color: #4285f4;
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.footer-socials .footer-maps i {
  background: linear-gradient(145deg, #4285f4 0%, #4285f4 28%, #34a853 29%, #34a853 48%, #fbbc05 49%, #fbbc05 68%, #ea4335 69%, #ea4335 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--white);
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.legal-page {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.legal-page h1 {
  max-width: none;
  color: var(--blue-950);
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-page p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--blue-800);
  font-weight: 900;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 35, 59, 0.9), rgba(4, 119, 191, 0.72)),
    url("assets/cakil-tekne-hero.jpeg") center / cover;
}

.not-found-content {
  width: min(720px, 100%);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 35, 59, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  text-align: center;
}

.not-found-content img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: var(--white);
}

.not-found-content h1 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
}

.not-found-content p {
  margin-inline: auto;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

@media (max-width: 820px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 22, 39, 0.82), rgba(4, 65, 104, 0.45)),
      linear-gradient(180deg, rgba(5, 35, 59, 0.2), rgba(234, 249, 255, 0.95));
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 5.5rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .trust-strip,
  .feature-grid,
  .review-grid,
  .fish-layout,
  .destination-grid,
  .guide-grid,
  .details-layout,
  .details-cards,
  .intro,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-image {
    object-position: 55% center;
  }

  .detail-card.highlight {
    grid-column: auto;
  }

  .gallery {
    position: static;
  }

  .fish-copy {
    position: static;
    min-height: auto;
  }

  .fish-gallery {
    gap: 0;
    height: auto;
  }

  .fish-gallery .fish-slide,
  .fish-gallery .fish-main {
    flex-basis: 100%;
    min-height: clamp(18rem, 72vw, 25rem);
  }

  .fish-gallery img {
    height: 100%;
  }

  .fish-gallery .fish-slide:first-child img {
    height: 100%;
  }

  .gallery-item,
  .gallery-item:first-child {
    grid-column: auto;
  }

  .gallery img,
  .gallery-item:first-child img {
    height: 14rem;
  }

  .fish-gallery img,
  .fish-gallery .fish-slide:first-child img {
    height: 100%;
  }

  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
  }

  .trust-strip div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem;
  }

  .trust-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .trust-strip dt {
    font-size: 1.08rem;
  }

  .feature-card {
    min-height: auto;
  }

  .review blockquote {
    min-height: auto;
  }

  .footer {
    padding-top: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .header-call {
    min-height: 2.55rem;
    padding-inline: 0.9rem;
  }

  .language-switch {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1.12rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-social {
    display: none;
  }

  .hero-actions .button {
    flex: 1 1 8rem;
  }

  .trust-strip {
    font-size: 0.9rem;
  }
}
