* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
  color: #1f2937;
  background: #f8fafc;
  line-height: 1.6;
  --white: #ffffff;
  --text-muted: #64748b;
  --shadow: 0 4px 24px rgba(10, 61, 98, 0.12);
  --shadow-lg: 0 12px 48px rgba(10, 61, 98, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --ocean-deep: #0a3d62;
  --ocean-blue: #0f4c81;
  --ocean-teal: #0f766e;
  --accent: #2ec4b6;
  --coral: #e76f51;
  --sand: #f4e8d3;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.2rem;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15,118,110,0.2);
  background: rgba(255,255,255,0.95);
  color: #0f172a;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  cursor: pointer;
}

.nav.open {
  display: flex;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav a,
.nav-link {
  color: var(--ocean-blue);
  text-decoration: none;
  font-weight: 500;
}

.nav .button.primary {
  color: var(--white);
}

.nav a:hover,
.nav a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: #2ec4b6;
}

.nav a[aria-current="page"] {
  color: #2ec4b6;
}

.lang-switch,
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ocean-blue);
}

.lang-switch a,
.lang-switcher a {
  color: var(--ocean-blue);
  text-decoration: none;
}

.lang-switch a:hover,
.lang-switch a:focus-visible,
.lang-switcher a:hover,
.lang-switcher a:focus-visible {
  color: #2ec4b6;
}

.lang-switch [aria-current="page"],
.lang-switcher [aria-current="page"],
.lang-switch span[aria-current="page"],
.lang-switcher span[aria-current="page"] {
  color: #2ec4b6;
}

.lang-switch-header {
  display: none;
}

.subnav {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  display: none;
  flex-direction: column;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  padding: 0.5rem 0;
  z-index: 20;
}

.subnav a {
  padding: 0.75rem 1rem;
  color: #0f4c81;
  background: transparent;
  display: block;
  font-weight: 500;
}

.subnav a:hover,
.subnav a:focus-visible {
  background: #f8fafc;
  color: #2ec4b6;
}

.faq-categories {
  display: grid;
  gap: 2rem;
}

.faq-category {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 700;
  color: #0f4c81;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #2ec4b6;
  font-size: 1.4rem;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: #475569;
}

.faq-item .faq-answer p + p {
  margin-top: 0.75rem;
}

.faq-item .faq-answer a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: underline;
}

.faq-item .faq-answer a:hover,
.faq-item .faq-answer a:focus-visible {
  color: #053d38;
}

.collapsible-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  margin-top: 1rem;
}

.collapsible-block summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 700;
  color: #0f4c81;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.collapsible-block summary::-webkit-details-marker {
  display: none;
}

.collapsible-block summary::after {
  content: "+";
  color: #2ec4b6;
  font-size: 1.4rem;
  line-height: 1;
  flex: 0 0 auto;
}

.collapsible-block[open] summary::after {
  content: "–";
}

.collapsible-block-content {
  padding: 0 1.2rem 1.2rem;
}

.collapsible-block-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.collapsible-block-content p:last-child {
  margin-bottom: 0;
}

.collapsible-block-content a {
  color: var(--ocean-teal);
  font-weight: 600;
  text-decoration: none;
}

.collapsible-block-content a:hover,
.collapsible-block-content a:focus-visible {
  text-decoration: underline;
}

.collapsible-block-content .table-scroll {
  margin-top: 0;
}

.nav-item:hover .subnav,
.nav-item:focus-within .subnav {
  display: flex;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
 /* align-items: center;*/
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.82) 0%, rgba(30, 111, 168, 0.65) 50%, rgba(61, 155, 224, 0.45) 100%),
    url('Slike/OgopogoThreeHour/three_hour_trip_makarska_5.jpeg') center/cover no-repeat;
  color: var(--white);
  padding-top: 5rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f172a;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 3rem;
  font-weight: 800;
  color: var(--white);
}

.hero p {
  max-width: 40rem;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-lead {
  margin-bottom: 1.25rem;
  max-width: none;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 56rem;
}

.hero-offer-card {
  display: block;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-offer-card:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.hero-offer-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: var(--white);
  line-height: 1.3;
}

.hero-offer-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: none;
}

.hero .boat-specs li,
.hero-list li {
  color: rgba(255, 255, 255, 0.92);
}

.bcard-link {
  color: var(--ocean-teal);
  margin-top: 0.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero--video {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 820px);
  padding: 5rem 0 3rem;
  color: var(--white);
  background: #1a1208;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-poster {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(15, 10, 8, 0.78) 0%,
    rgba(50, 25, 18, 0.52) 45%,
    rgba(25, 18, 35, 0.62) 100%
  );
}

.hero--video > .container {
  position: relative;
  z-index: 2;
}

.hero--video .section-label {
  color: rgba(255, 220, 180, 0.95);
}

.hero--video h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.hero--video .tour-intro-main p {
  max-width: 40rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero--video .tour-fact {
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 900px) {
  .hero--video {
    min-height: auto;
    padding-top: 4rem;
  }
}

.hero--panoramski {
  position: relative;
  overflow: hidden;
  min-height: min(75vh, 780px);
  padding: 5rem 0 3rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.72) 0%, rgba(30, 111, 168, 0.52) 50%, rgba(15, 35, 55, 0.68) 100%),
    url('Slike/OgopogoThreeHour/three_hour_trip_makarska_5.jpeg') center/cover no-repeat;
}

.hero--panoramski .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.hero--panoramski h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.hero--panoramski .tour-intro-main p {
  max-width: 40rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero--panoramski .tour-fact {
  background: rgba(255, 255, 255, 0.95);
}

.hero--privatni {
  position: relative;
  overflow: hidden;
  min-height: min(75vh, 780px);
  padding: 5rem 0 3rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(8, 45, 55, 0.75) 0%, rgba(20, 90, 100, 0.5) 45%, rgba(10, 35, 50, 0.7) 100%),
    url('Slike/OgopogoPrivate/private_family_tour_makarska_3.jpeg') center/cover no-repeat;
}

.hero--privatni .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.hero--privatni h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.hero--privatni .tour-intro-main p {
  max-width: 40rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero--privatni .tour-fact {
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 900px) {
  .hero--privatni {
    min-height: auto;
    padding-top: 4rem;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.25);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.primary {
  background: #2ec4b6;
  color: #ffffff;
}

.secondary {
  /*background: rgba(15, 118, 110, 0.1);*/  
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.7);
}

.thirdary {
  
  color: #2ec4b6;
 /* border: 2px solid rgba(15, 118, 110, 0.3);*/
  padding: 0.25rem 0.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.btnwhatsapp {
  background: #25d366;
  color: white;
}

.btnwhatsapp:hover {
  background: #1da851;
  color: white;
}

.button-outline {
  background: transparent;
  color:var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.hero-card {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.hero-card p {
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.hero-card li {
  color: #475569;
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--ocean-blue);
  margin-bottom: 0.75rem;
}

.section h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--ocean-blue);
  max-width: 48rem;
}

.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--ocean-blue);
}

.section-header p { color: var(--text-muted); font-size: 1.05rem; }


.light {
  background: #ffffff;
}

/* Boat overview: image left, specs right */
.boat-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.boat-photo img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.boat-specs .feature-list {
  display: grid;
  gap: 1rem;
}

@media (max-width: 900px) {
  .boat-overview { grid-template-columns: 1fr; }
  .boat-photo img { max-height: 320px; }
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--ocean-teal);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section p {
  color: #475569;
  max-width: 44rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.section-grid-spaced {
  margin-top: 2rem;
  gap: 1.5rem;
}

.tour-intro-layout {
  display: grid;
  grid-template-columns: 1fr min(320px, 36%);
  gap: 2.5rem;
  align-items: start;
}

.tour-intro-main p {
  max-width: none;
}

.tour-quick-facts {
  display: grid;
  gap: 0.65rem;
}

.tour-fact {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
}

.tour-fact-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ocean-teal);
  margin-bottom: 0.2rem;
}

.tour-fact strong {
  display: block;
  font-size: 1rem;
  color: var(--ocean-blue);
  margin-bottom: 0.15rem;
}

.tour-fact p {
  font-size: 0.8rem;
  margin: 0;
  max-width: none;
  line-height: 1.4;
  color: var(--text-muted);
}

.tour-notice {
  margin-top: 0.65rem;
  background: #fff8e6;
  border: 1px solid #fde68a;
  border-left: 3px solid #f59e0b;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  line-height: 1.45;
  color: #475569;
}

.tour-notice strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.85rem;
  color: #92400e;
}

@media (max-width: 900px) {
  .tour-intro-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tour-intro-sidebar {
    max-width: 420px;
  }

  .routes-grid {
    grid-template-columns: 1fr;
  }
}

.routes-grid {
  margin-top: 1.5rem;
}

.routes-grid > div {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.routes-grid h3 {
  color: var(--ocean-blue);
  margin-bottom: 0.5rem;
}

.routes-grid p {
  max-width: none;
}

.section-intro-box {
  margin-top: 1.5rem;
}

.cta-card {
  margin-top: 1.5rem;
}

.cta-card .button {
  margin-top: 1rem;
}

.feature-list {
  display: grid;
  gap: 1.25rem;
}

.feature-card {
  background: #f8fafc;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.spec-box {
  background: #f8fafc;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}

.boat-specs {
  list-style: disc;
  margin: 0;
  padding-left: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.boat-specs li {
  padding: 0;
  color: #475569;
}

@media (max-width: 900px) {
  .spec-box { padding: 0.75rem; }
}

/* Info box styles */
.info-box {
  background: #f0fdf4;
  border-left: 4px solid #0f766e;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.info-box p {
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.8;
}

.info-box p:last-child {
  margin-bottom: 0;
}



.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.boat-card,
.pricing-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.boat-card h3,
.pricing-card h3 {
  margin-bottom: 0.85rem;
}

.boat-card ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  color: #475569;
}

.pricing-card .price {
  font-size: 2rem;
  color: #0f766e;
  margin: 0.75rem 0 1rem;
}


/* Cards grid */
.bcards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.bcard {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.bcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bcard-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.bcard-body { padding: 1.5rem; }

.bcard-body h3 {
  font-size: 1.25rem;
  color: var(--ocean-blue);
  margin-bottom: 0.5rem;
}

.bcard-body p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }

.bcard-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
}

.bcard-meta span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ocean-teal);
  background: rgba(15, 118, 110, 0.08);
  padding: 0.28rem 0.65rem;
  border-radius: 50px;
}

.bcard-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #d4a24c;
  margin-bottom: 0.25rem;
}

.bcard-price-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.35rem; }

.bcard-price-note:last-of-type { margin-bottom: 0; }

.bcard > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.bcard > a:hover .bcard-link strong {
  text-decoration: underline;
}

.btag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btag {
  background: #f4e9d8;
  color: var(--ocean-deep);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.bcard-body .button,
.bcard-body .bcard-link {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.bcard-hero-lead {
  font-size: 0.92rem;
  color: var(--ocean-blue);
  font-weight: 600;
  margin: 0 0 0.85rem;
  line-height: 1.45;
}

.bcard-facts {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.bcard-facts .tour-fact {
  padding: 0.65rem 0.8rem;
}

.bcard-facts .tour-fact strong {
  font-size: 0.95rem;
}

.bcard-facts .tour-fact p {
  font-size: 0.78rem;
  margin: 0;
  max-width: none;
  line-height: 1.4;
  color: var(--text-muted);
}


.booking-section {
  background: linear-gradient(180deg, #e0f2fe 0%, #ffffff 100%);
}

.reviews-section {
  text-align: center;
}

.reviews-intro {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--text-muted);
}

.reviews-platform-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
  text-align: left;
}

.reviews-platform-header:first-of-type {
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: none;
}

.reviews-platform-header span {
  font-weight: 700;
  color: var(--ocean-blue);
  font-size: 1.05rem;
}

.reviews-platform-count {
  font-weight: 400 !important;
  color: var(--text-muted) !important;
  font-size: 0.92rem !important;
}

.reviews-platform-link {
  margin-left: auto;
  color: var(--ocean-teal);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.reviews-platform-link:hover,
.reviews-platform-link:focus-visible {
  text-decoration: underline;
}

.ta-header-logo {
  height: 26px;
  width: auto;
  flex-shrink: 0;
}


.tripadvisor-widget--inline {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.tripadvisor-widget--inline .reviews-subheading {
  font-size: 1.25rem;
  color: var(--ocean-blue);
  margin: 0;
  font-weight: 700;
}

.tripadvisor-link {
  display: inline-block;
}

.tripadvisor-link img {
  max-width: 200px;
  height: auto;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .reviews-platform-link {
    margin-left: 0;
    flex-basis: 100%;
  }
}

.reviews-platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.reviews-section .button.outline-dark {
  background: var(--white);
}

.google-g-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.google-review-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.google-review-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.ta-review-stars {
  color: #00aa6c;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.google-review-text {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  max-width: none;
}

.google-review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.google-review-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ocean-blue);
}

.google-review-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.google-reviews-more {
  text-align: center;
  margin-top: 1.5rem;
}

.google-reviews-more a {
  color: var(--ocean-teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.google-reviews-more a:hover,
.google-reviews-more a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .google-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .google-reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-platform-count {
    margin-left: 0;
  }
}

.page-cta {
  max-width: none;
}

.booking-cta-intro {
  max-width: 44rem;
  margin-bottom: 1.5rem;
  color: #475569;
}

.booking-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.booking-steps h3,
.booking-actions h3 {
  margin-bottom: 0.75rem;
  color: var(--ocean-blue);
  font-size: 1.15rem;
}

.booking-steps-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
  color: #475569;
}

.booking-steps-list li {
  padding-left: 0.25rem;
}

.booking-actions {
  margin-top: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.button.outline-dark {
  background: transparent;
  color: var(--ocean-blue);
  border: 2px solid rgba(15, 76, 129, 0.35);
}

.button.outline-dark:hover,
.button.outline-dark:focus-visible {
  border-color: var(--ocean-blue);
  background: rgba(15, 76, 129, 0.05);
}

@media (max-width: 768px) {
  .booking-cta-grid {
    grid-template-columns: 1fr;
  }
}

.page-cta .cta-card {
  margin-top: 0;
}

.cta-contact-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.cta-contact-note a {
  color: var(--ocean-teal);
  font-weight: 600;
  text-decoration: none;
}

.cta-contact-note a:hover,
.cta-contact-note a:focus-visible {
  text-decoration: underline;
}

.tripadvisor-widget--inline .TA_linkingWidgetRedesign {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.booking-section h2,
.contact-grid + .cta-card h3 {
  color: var(--ocean-blue);
}

.faq-category h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--ocean-blue);
  margin-bottom: 0.5rem;
}

/* Contact section styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15,23,42,0.1);
}

.route-map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

.route-suggestion p {
  max-width: none;
}

.route-stops {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  line-height: 1.8;
}

.route-stops li {
  margin-bottom: 0.5rem;
}

.route-stops li:last-child {
  margin-bottom: 0;
}

.route-map-link {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.route-map-link a {
  color: var(--ocean-teal);
  font-weight: 600;
  text-decoration: none;
}

.route-map-link a:hover,
.route-map-link a:focus-visible {
  text-decoration: underline;
}

.route-map {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15,23,42,0.1);
  min-height: 420px;
}

.route-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}

.contact-card h3 {
  margin-bottom: 0.75rem;
  color: #0f172a;
  font-size: 1.1rem;
}

.contact-card p {
  margin-bottom: 0.5rem;
  color: #475569;
  line-height: 1.7;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: #053d38;
  text-decoration: underline;
}



@media (max-width: 900px) {
  .contact-grid,
  .route-map-layout {
    grid-template-columns: 1fr;
  }
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.booking-grid-spaced {
  margin-top: 2rem;
}

.booking-intro h3 {
  color: var(--ocean-blue);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.booking-intro p {
  max-width: none;
  color: var(--text-muted);
}

.booking-intro p + p {
  margin-top: 0.75rem;
}

.booking-steps {
  margin-top: 1.5rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.booking-form label {
  display: grid;
  gap: 0.5rem;
  color: #0f172a;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: #0f172a;
  background: #f8fafc;
}

.booking-form textarea {
  resize: vertical;
}

.child-ages-container {
  display: grid;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
}

.child-ages-container[hidden] {
  display: none;
}

.child-age-grid {
  display: grid;
  gap: 0.75rem;
}

.child-age-grid label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: #0f172a;
}

.child-age-select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: #0f172a;
  background: #f8fafc;
}

.rental-options {
  display: grid;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
}

.rental-options[hidden] {
  display: none;
}

.label-optional {
  font-weight: 500;
  color: #64748b;
  font-size: 0.85rem;
}

.booking-weather-note {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #f0fdf4;
  border-left: 4px solid #0f766e;
  color: #1f2937;
  font-size: 0.92rem;
  line-height: 1.65;
}

.booking-privacy-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.booking-privacy-note a {
  color: var(--ocean-blue);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}





.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0a3d62 100%);
  color: #e2e8f0;
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-tagline {
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 22rem;
}

.footer-cta {
  justify-self: start;
  padding: 0.8rem 1.4rem;
}

.footer-nav h3,
.footer-contact h3 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1rem;
}

.footer-subheading {
  margin-top: 1.25rem;
}

.footer-nav ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-nav a,
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #2ec4b6;
}

.footer-address {
  font-style: normal;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-contact p {
  margin-bottom: 0.45rem;
  color: #cbd5e1;
}

.footer-note {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 1.75rem;
}

.footer-copy {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #2ec4b6;
}

.site-footer h3 {
  margin-bottom: 0.75rem;
}

.site-footer p {
  margin-bottom: 0.55rem;
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .hero-content,
  .section-grid,
  .card-grid,
  .pricing-grid,
  .booking-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }
}

.seder {
  position: relative;
  margin-top: 1.5rem;
}

.seder-track {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #f8fafc;
}

.slide,
picture.slide {
  display: none;
  width: 100%;
}

.slide.active,
picture.slide.active {
  display: block;
}

.slide,
picture.slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.slider {
  position: relative;
}

.slider-control {
  position: absolute;
  bottom: 1.5rem;
  transform: translateY(0);
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.9);
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.slider-control.prev {
  left: 1rem;
}

.slider-control.next {
  right: 1rem;
}

.thumbnail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.thumb {
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  width: calc(20% - 0.75rem);
  max-width: 120px;
  background: transparent;
  cursor: pointer;
}

.thumb.active {
  border-color: #0f766e;
}

.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .slider-track {
    height: 320px;
  }

  .thumb {
    width: calc(33.333% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .slider-track {
    height: 260px;
  }

  .thumb {
    width: calc(50% - 0.75rem);
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header:has(.nav.open) {
    z-index: 100;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-bottom: 0;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0.65rem 1.1rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    display: none;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    padding: 0.25rem 0 0.5rem;
  }

  .nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav a,
  .nav-link,
  .button.primary {
    width: 100%;
    text-align: left;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .nav-item:has(.subnav) .nav-link {
    justify-content: space-between;
  }

  .nav-item:has(.subnav) .nav-link::after {
    content: '';
    flex-shrink: 0;
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.75rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .nav-item.is-expanded .nav-link::after {
    transform: rotate(-135deg);
  }

  .subnav {
    position: static;
    display: none;
    flex-direction: column;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
  }

  .nav-item.is-expanded .subnav {
    display: flex;
  }

  .nav-item:hover .subnav,
  .nav-item:focus-within .subnav {
    display: none;
  }

  .nav-item.is-expanded:hover .subnav,
  .nav-item.is-expanded:focus-within .subnav {
    display: flex;
  }

  .subnav a {
    padding: 0.65rem 1rem 0.65rem 1.75rem;
    border-radius: 8px;
    background: rgba(15, 76, 129, 0.04);
    min-height: 44px;
  }

  .lang-switch-header {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    flex: 0 0 auto;
    margin: 0 0.35rem 0 0;
    width: auto;
    padding: 0;
    justify-content: flex-start;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ocean-blue);
    min-height: 44px;
  }

  #main-nav .lang-switch,
  #main-nav .lang-switcher {
    display: none;
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    padding: 0.5rem 0;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Pricing table styles */
.pricing-table {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pricing-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 0.9rem 1rem;
}

.pricing-row .month {
  flex: 1 1 auto;
  font-weight: 700;
  color: #0f172a;
}

.pricing-row .price-day,
.pricing-row .price-hours {
  flex: 0 0 auto;
  font-weight: 700;
  color: #0f766e;
  margin-left: 2rem;
}

@media (max-width: 640px) {
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.schedule-table th,
.schedule-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(10, 61, 98, 0.08);
}

.schedule-table th {
  background: var(--ocean-deep);
  color: var(--white);
  font-weight: 600;
}

.schedule-table tr:last-child td { border-bottom: none; }

.schedule-table tr:hover td { background: var(--sand); }

.section-intro {
  margin-bottom: 2rem;
}

.table-scroll {
  overflow-x: auto;
}

.compare-table th:first-child,
.compare-table td:first-child {
  background: rgba(244, 232, 211, 0.45);
}

.compare-table thead th:first-child {
  background: var(--ocean-deep);
}

.compare-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--ocean-blue);
  white-space: nowrap;
}

.compare-table a {
  color: var(--ocean-teal);
  font-weight: 600;
  text-decoration: none;
}

.compare-table a:hover,
.compare-table a:focus-visible {
  text-decoration: underline;
}

.rental-pricing-table {
  width: 100%;
  margin-top: 1.25rem;
  table-layout: fixed;
}

.rental-pricing-months {
  width: 38%;
  line-height: 1.75;
  font-weight: 600;
  color: var(--ocean-blue);
}

.rental-pricing-table td:not(.rental-pricing-months) {
  font-weight: 700;
  color: var(--ocean-teal);
  white-space: nowrap;
  text-align: center;
}

.tour-pricing-table {
  width: 100%;
  max-width: 480px;
  margin-top: 1.25rem;
}

.tour-pricing-table td:last-child {
  font-weight: 700;
  color: var(--ocean-teal);
  white-space: nowrap;
}

.tour-schedule-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.tour-schedule-block h3 {
  margin-bottom: 0.5rem;
  color: var(--ocean-blue);
}

.tour-schedule-block p {
  max-width: none;
  margin-bottom: 1.25rem;
}

.tour-schedule-table {
  width: 100%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.why-card h3 {
  font-size: 1.05rem;
  color: var(--ocean-blue);
  margin-bottom: 0.5rem;
}

.why-card p {
  max-width: none;
  font-size: 0.98rem;
}

.how-book-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: book-step;
}

.how-book-steps li {
  counter-increment: book-step;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  color: #475569;
  position: relative;
  padding-top: 3rem;
}

.how-book-steps li::before {
  content: counter(book-step);
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--ocean-teal);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.how-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .how-book-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .how-book-steps {
    grid-template-columns: 1fr;
  }
}

/* Lightbox styles */
.lightbox {
  display: none;
}
.lightbox.open {
  display: block;
}
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}
.lightbox-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
}
.lightbox-image {
  width: 100%;
  height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  background: #000;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #0f172a;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,118,110,0.9);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.lightbox-thumb { border: 2px solid transparent; border-radius: 8px; overflow: hidden; padding: 0; width: 80px; height: 54px; cursor: pointer; }
.lightbox-thumb.active { border-color: #0f766e; }
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-image { height: 50vh; }
}

@media (max-width: 640px) {
  .lightbox-image { height: 40vh; }
  .lightbox-prev, .lightbox-next { display: none; }
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.4rem;
    height: 3.4rem;
  }

  .whatsapp-float svg {
    width: 1.7rem;
    height: 1.7rem;
  }
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 5.25rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: var(--ocean-blue);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 76, 129, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--ocean-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 76, 129, 0.45);
  outline: none;
}

@media (min-width: 641px) {
  .back-to-top {
    display: none !important;
  }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.6rem 1rem;
  background: var(--primary, #0f4c81);
  color: #fff;
  border-radius: 0.35rem;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-video-poster {
    display: block;
  }
}
