:root {
  --ink: #123241;
  --muted: #587283;
  --line: #d3edf3;
  --paper: #ffffff;
  --mist: #effcff;
  --lagoon: #e7fbff;
  --blue: #08a8d8;
  --blue-dark: #04799c;
  --aqua: #41d9dd;
  --sand: #ffe4b8;
  --leaf: #5d9a76;
  --coral: #ff8756;
  --messenger: #4c7cff;
  --whatsapp: #27c968;
  --shadow: 0 18px 46px rgba(8, 128, 164, 0.13);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fdff 38%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

.shell {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue-dark);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(211, 237, 243, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  line-height: 1.1;
}

.brand img {
  width: 104px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: block;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: #294356;
  font-size: 13px;
  font-weight: 800;
}

.nav-menu a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--blue-dark);
  border-color: var(--aqua);
}

.nav-cta,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 26px rgba(255, 135, 86, 0.25);
}

.btn-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 14px 26px rgba(37, 186, 91, 0.23);
}

.btn-messenger {
  color: #fff;
  background: var(--messenger);
  box-shadow: 0 14px 26px rgba(81, 72, 229, 0.22);
}

.btn-soft {
  color: var(--blue-dark);
  border-color: #abe8f2;
  background: #e9fbff;
}

.btn-large {
  min-height: 52px;
  padding-inline: 24px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: #4ed9e7;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 101, 130, 0.78) 0%, rgba(5, 145, 180, 0.56) 45%, rgba(74, 221, 228, 0.24) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.18));
}

.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) brightness(1.12);
}

.hero-media img {
  z-index: 0;
}

.hero-media video {
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff 84%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 86px 0 120px;
}

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

.hero .eyebrow {
  color: #dffcff;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 72px;
}

h2 {
  max-width: 780px;
  font-size: 44px;
}

h3 {
  font-size: 25px;
}

.hero-subtitle {
  max-width: 680px;
  margin: 20px 0 0;
  color: #f1fdff;
  font-size: 24px;
  font-weight: 850;
}

.hero-copy,
.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.hero-copy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 720px);
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid rgba(232, 252, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 40px rgba(0, 94, 123, 0.18);
}

.hero-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  color: #fff;
  font-size: 24px;
  font-weight: 950;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.concept-section {
  padding: 82px 0;
  background:
    linear-gradient(135deg, #ffffff 0%, #effcff 58%, #dff9ff 100%);
  border-bottom: 1px solid var(--line);
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: start;
}

.concept-grid h2 {
  max-width: 520px;
}

.concept-grid .lead {
  margin: 0 0 18px;
}

.section-booking,
#book-your-dive,
#services,
#highlights,
#siquijor,
#reviews,
#faq {
  background: rgba(255, 255, 255, 0.82);
}

.quick-choice-section {
  padding-top: 78px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #effcff 100%);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.choice-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 128, 164, 0.1);
}

.choice-card h3 {
  font-family: inherit;
  font-size: 25px;
  font-weight: 950;
}

.choice-card p {
  color: var(--muted);
  font-weight: 700;
}

.choice-card .btn {
  align-self: end;
  margin-top: auto;
}

.green-fins-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(129, 226, 178, 0.34) 0 120px, transparent 121px),
    linear-gradient(135deg, #f6fff8 0%, #e7fcf5 46%, #def8ff 100%);
  border-top: 1px solid rgba(103, 200, 173, 0.32);
  border-bottom: 1px solid rgba(103, 200, 173, 0.32);
}

.green-fins-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(255,255,255,0.55) 47% 54%, transparent 55% 100%);
  opacity: 0.48;
}

.green-fins-hero,
.policy-grid {
  position: relative;
  z-index: 1;
}

.reef-rules {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(57, 166, 128, 0.26);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 34px rgba(35, 129, 116, 0.09);
}

.reef-rules h3,
.included-grid h3,
.cta-panel h3 {
  font-family: inherit;
  font-weight: 950;
}

.green-fins-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.green-fins-hero .eyebrow {
  color: #0f8f63;
}

.green-fins-hero h2 {
  max-width: 740px;
}

.green-fins-hero .lead {
  max-width: 760px;
}

.green-fins-logo-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(57, 166, 128, 0.26);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 70px rgba(37, 134, 116, 0.16);
}

.green-fins-logo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.green-fins-logo-card figcaption {
  padding: 14px 18px 16px;
  color: #32665b;
  background: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.policy-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(57, 166, 128, 0.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 34px rgba(35, 129, 116, 0.09);
}

.policy-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #0d7554;
  background: #dcfaec;
  font-weight: 950;
}

.policy-card h3 {
  font-family: inherit;
  color: #102e29;
  font-size: 22px;
  font-weight: 950;
}

.policy-card p {
  margin-top: 10px;
  color: #46665f;
}

.section-tint {
  background:
    linear-gradient(180deg, #f5fdff 0%, #ebfbff 100%);
}

.section-booking {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1fr);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.rate-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.rate-card,
.course-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 128, 164, 0.08);
}

.rate-card {
  padding: 24px;
}

.rate-card h3,
.course-card h3 {
  font-family: inherit;
  font-weight: 950;
}

.rate-card p,
.course-card p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.rate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.rate-row span {
  color: #355166;
  font-weight: 800;
}

.rate-row strong {
  white-space: nowrap;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 950;
}

.extras-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.extras-strip span,
.info-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  color: #355166;
  box-shadow: 0 10px 28px rgba(8, 128, 164, 0.07);
}

.extras-strip span {
  padding: 16px;
}

.info-note {
  margin-top: 24px;
  padding: 18px;
  border-left: 5px solid var(--aqua);
  font-weight: 850;
}

.dsd-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5fdff 100%);
}

.memory-box {
  position: relative;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr) 148px;
  gap: 20px;
  align-items: center;
  margin: 24px 0;
  padding: 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 96, 78, 0.46);
  border-radius: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 116, 84, 0.96) 0%, rgba(229, 53, 57, 0.96) 56%, rgba(255, 159, 91, 0.94) 100%);
  box-shadow: 0 22px 48px rgba(229, 73, 54, 0.25);
}

.memory-box::before {
  position: absolute;
  inset: -60px auto auto -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.memory-actioncam {
  position: relative;
  z-index: 1;
  width: 156px;
  height: 156px;
  aspect-ratio: 1;
  border: 6px solid #fff;
  border-radius: 20px;
  background: #fff;
  object-fit: cover;
  object-position: 42% 50%;
  box-shadow: 0 18px 34px rgba(92, 20, 18, 0.28);
}

.memory-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.memory-box .memory-tag {
  display: inline-flex;
  width: fit-content;
  padding: 9px 20px;
  border: 3px solid #fff;
  border-radius: 999px;
  color: #b00020;
  background: #fff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(116, 22, 14, 0.25);
  text-transform: uppercase;
}

.memory-box strong {
  color: #fff;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 950;
  line-height: 1.08;
}

.memory-box span {
  color: rgba(255, 255, 255, 0.92);
}

.memory-box .memory-tag {
  color: #b00020;
}

.memory-photo-stack {
  position: relative;
  z-index: 1;
  min-height: 132px;
}

.memory-photo-stack img {
  position: absolute;
  width: 86px;
  height: 66px;
  border: 5px solid #fff;
  border-bottom-width: 16px;
  border-radius: 4px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(92, 20, 18, 0.26);
}

.memory-photo-stack img:nth-child(1) {
  top: 4px;
  right: 44px;
  transform: rotate(-8deg);
}

.memory-photo-stack img:nth-child(2) {
  top: 38px;
  right: 0;
  transform: rotate(9deg);
}

.memory-photo-stack img:nth-child(3) {
  top: 70px;
  right: 58px;
  transform: rotate(-3deg);
}

.course-price-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.course-price-list div,
.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.course-price-list div {
  padding: 14px 16px;
}

.course-price-list span,
.course-meta span {
  color: #355166;
  font-weight: 850;
}

.course-price-list strong,
.course-meta strong {
  white-space: nowrap;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 950;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.course-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 26px;
}

.course-card p {
  flex: 1;
}

.course-card-featured {
  border-color: rgba(93, 154, 118, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 255, 247, 0.96)),
    radial-gradient(circle at 20% 0%, rgba(93, 217, 118, 0.18), transparent 38%);
  box-shadow: 0 20px 46px rgba(14, 117, 91, 0.13);
}

.course-badge {
  display: inline-flex;
  width: fit-content;
  flex: 0;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #0f8b4d;
  background: rgba(219, 255, 232, 0.96);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.course-note {
  flex: 0;
  margin: 12px 0 0;
  color: #486779;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.course-meta {
  margin-top: 18px;
  padding: 14px;
}

.course-action {
  display: flex;
  margin-top: 30px;
}

.highlight-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 128, 164, 0.08);
}

.service-card {
  --card-accent: var(--blue);
  --card-deep: var(--blue-dark);
  --card-soft: #eefcff;
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-color: color-mix(in srgb, var(--card-accent) 28%, #d3edf3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), #fff 58%),
    linear-gradient(135deg, var(--card-soft), #fff);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--card-accent), color-mix(in srgb, var(--card-accent) 48%, #ffffff));
}

.service-card[data-service="fun-diving"] {
  --card-accent: #08a8d8;
  --card-deep: #046d93;
  --card-soft: #e9fbff;
}

.service-card[data-service="discover-scuba-diving"] {
  --card-accent: #ff8756;
  --card-deep: #c95b31;
  --card-soft: #fff3ea;
}

.service-card[data-service="padi-courses"] {
  --card-accent: #218fe5;
  --card-deep: #145f9d;
  --card-soft: #edf7ff;
}

.service-card[data-service="padi-idc"] {
  --card-accent: #5d9a76;
  --card-deep: #38694e;
  --card-soft: #f1fbf5;
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.card-kicker {
  align-self: flex-start;
  margin: 0 0 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--card-deep, var(--blue-dark));
  background: var(--card-soft, #eefcff);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--ink);
  font-size: 29px;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card .card-body > p:not(.card-kicker) {
  color: #4b6476;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.service-details {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.service-detail-row {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid rgba(211, 237, 243, 0.92);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.86);
}

.service-detail-row strong {
  color: #18384a;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
}

.service-detail-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.service-detail-row.is-price-row {
  border-color: color-mix(in srgb, var(--card-accent) 28%, #d3edf3);
  background: linear-gradient(135deg, #fff, var(--card-soft));
}

.service-detail-row.is-price-row span {
  color: var(--card-deep);
  font-size: 15px;
  font-weight: 950;
}

.service-detail-row.is-note-row {
  border-left: 4px solid var(--card-accent);
}

.service-detail-row.is-note-row strong {
  color: var(--card-deep);
}

.text-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--card-accent, var(--blue-dark));
  box-shadow: 0 13px 26px color-mix(in srgb, var(--card-accent) 22%, transparent);
  font-weight: 950;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.text-link:hover {
  color: #fff;
  transform: translateY(-1px);
  background: var(--card-deep, var(--blue-dark));
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-item strong {
  display: block;
  color: var(--ink);
}

.feature-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-main,
.rounded-photo,
.visit-gallery img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-main {
  width: 82%;
  height: 560px;
  object-fit: cover;
}

.image-overlap {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 58%;
  height: 210px;
  object-fit: contain;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.rounded-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.compact-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.included-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 128, 164, 0.08);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(234, 251, 255, 0.96));
  box-shadow: 0 16px 38px rgba(8, 128, 164, 0.1);
}

.cta-panel p {
  margin-top: 8px;
  color: var(--muted);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-buttons .btn {
  min-height: 48px;
}

.clean-list li {
  padding: 13px 16px;
  border-left: 4px solid var(--aqua);
  border-radius: var(--radius);
  background: var(--lagoon);
  color: #335064;
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 30px;
}

.mini-grid span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #335064;
  font-weight: 850;
}

.visit-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.visit-gallery img:first-child {
  height: 520px;
  object-fit: cover;
}

.visit-gallery img:last-child {
  height: 340px;
  object-fit: contain;
  padding: 16px;
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 12%, rgba(255,255,255,0.5) 0 24px, transparent 25px),
    linear-gradient(180deg, #60d4ce 0%, #48b9c4 100%);
}

.review-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.review-heading .eyebrow {
  color: #eaffff;
}

.review-heading h2,
.review-heading p {
  color: #0b2438;
}

.rating-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 20px 0 16px;
  font-size: 28px;
}

.google-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(12, 79, 99, 0.16);
}

.stars,
.review-stars {
  color: #ffc928;
  letter-spacing: 0;
}

.rating-line strong {
  color: var(--ink);
  font-weight: 950;
}

.review-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.btn-instagram {
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #515bd4);
  box-shadow: 0 14px 26px rgba(221, 42, 123, 0.22);
}

.review-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.review-card {
  min-height: 230px;
  padding: 28px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(239, 252, 255, 0.82);
  box-shadow: 0 20px 46px rgba(8, 73, 88, 0.14);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-person span {
  display: inline-grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #cff7f5;
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 950;
}

.review-person strong,
.review-person small {
  display: block;
}

.review-person strong {
  color: var(--ink);
  font-size: 18px;
}

.review-person small {
  color: var(--muted);
  font-weight: 800;
}

.review-stars {
  margin-top: 20px;
  font-size: 24px;
}

.review-card blockquote {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.35;
}

.review-card p {
  margin-top: 18px;
  color: #334a59;
  font-size: 17px;
  font-weight: 650;
}

.map-guidelines-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.map-card,
.guidelines-card {
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.74);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 42px rgba(8, 73, 88, 0.13);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.guidelines-card {
  padding: 30px;
}

.guidelines-card h3 {
  font-family: inherit;
  font-size: 28px;
  font-weight: 950;
}

.guideline-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.guideline-list li {
  padding: 13px 15px;
  border-left: 4px solid var(--aqua);
  border-radius: var(--radius);
  background: #f3fdff;
  color: #355166;
  font-weight: 800;
}

blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #355166;
  font-size: 18px;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 950;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  padding: 104px 0;
  color: var(--ink);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(219, 251, 255, 0.96), rgba(100, 220, 232, 0.78)),
    var(--lagoon);
}

.final-cta .eyebrow {
  color: var(--blue-dark);
}

.final-cta h2,
.final-cta p {
  margin-inline: auto;
}

.final-cta p {
  max-width: 700px;
  color: #3d6373;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  padding: 52px 0 96px;
  color: #315b6c;
  background:
    linear-gradient(180deg, #e9fbff 0%, #d8f6fb 100%);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 32px;
}

.site-footer img {
  width: 150px;
  height: auto;
  padding: 8px;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer p {
  max-width: 430px;
}

.footer-certifications {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 5px 10px 5px 5px;
  border: 1px solid rgba(57, 166, 128, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.site-footer .green-fins-stamp {
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}

.footer-certifications span {
  color: #0f6f53;
  font-size: 12px;
  font-weight: 950;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 950;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--blue-dark);
  font-weight: 850;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(217, 232, 238, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(17, 37, 51, 0.18);
  backdrop-filter: blur(12px);
}

.sticky-btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: var(--radius);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.sticky-book {
  background: var(--coral);
}

.sticky-wa {
  background: var(--whatsapp);
}

.sticky-msg {
  background: var(--messenger);
}

@media (max-width: 1060px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav.is-open .nav-menu {
    grid-column: 1 / -1;
    display: grid;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid var(--line);
  }

  .nav.is-open .nav-menu a {
    padding: 12px 0;
  }

  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-grid,
  .choice-grid,
  .highlight-grid,
  .testimonial-grid,
  .review-card-row,
  .rate-layout,
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .concept-grid,
  .extras-strip,
  .compact-list,
  .included-grid,
  .cta-panel,
  .green-fins-hero,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .map-guidelines-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .shell {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 82px;
    height: 34px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 690px;
  }

  .hero-content {
    padding: 58px 0 104px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 23px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-copy,
  .lead,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid,
  .choice-grid,
  .highlight-grid,
  .testimonial-grid,
  .review-card-row,
  .footer-grid,
  .mini-grid,
  .rate-layout,
  .course-grid,
  .concept-grid,
  .extras-strip,
  .compact-list,
  .included-grid,
  .cta-panel,
  .green-fins-hero,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .choice-card,
  .cta-panel,
  .reef-rules,
  .included-grid article {
    padding: 20px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .green-fins-logo-card figcaption {
    padding: 12px 14px;
  }

  .policy-card {
    min-height: 0;
    padding: 20px;
  }

  .concept-section {
    padding: 64px 0;
  }

  .rate-layout {
    margin-top: 26px;
  }

  .rate-card,
  .course-card {
    padding: 20px;
  }

  .rate-row,
  .course-price-list div,
  .course-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .memory-box {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
  }

  .memory-actioncam {
    width: min(180px, 100%);
    height: min(180px, 42vw);
    justify-self: center;
  }

  .memory-copy {
    grid-column: 1 / -1;
    order: -1;
  }

  .memory-photo-stack {
    min-height: 118px;
    width: 168px;
    justify-self: center;
  }

  .memory-photo-stack img {
    width: 76px;
    height: 58px;
  }

  .course-card {
    min-height: 0;
  }

  .rating-line {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 22px;
  }

  .review-card {
    min-height: 0;
    padding: 22px;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .card img,
  .rounded-photo,
  .image-main {
    height: 320px;
  }

  .image-stack {
    min-height: 0;
  }

  .image-main {
    width: 100%;
  }

  .image-overlap {
    position: static;
    width: 100%;
    height: 160px;
    margin-top: 14px;
  }

  .visit-gallery {
    grid-template-columns: 1fr;
  }

  .visit-gallery img:first-child,
  .visit-gallery img:last-child {
    height: 300px;
  }

  .sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-btn {
    min-width: 0;
    padding: 0 6px;
    font-size: 12px;
    white-space: nowrap;
  }
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: #294356;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(8, 128, 164, 0.06);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--aqua);
  transform: translateY(-50%);
}

.course-grid-simple {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.course-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.course-card-actions .btn {
  width: 100%;
  min-width: 0;
  padding-inline: 12px;
}

.course-card-image {
  display: block;
  width: 100%;
  height: 170px;
  flex: 0 0 auto;
  margin-bottom: 20px;
  border-radius: 6px;
  object-fit: cover;
}

.course-price {
  margin-top: 20px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.course-kicker {
  flex: 0 !important;
  margin: 0 0 8px !important;
  color: #08765a !important;
  font-size: 12px !important;
  font-weight: 950;
  text-transform: uppercase;
}

.google-review-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: 940px;
  margin: 30px auto 0;
  padding: 28px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 46px rgba(8, 73, 88, 0.14);
}

.google-review-panel .google-mark {
  width: 64px;
  height: 64px;
  font-size: 30px;
}

.google-review-panel strong {
  color: var(--ink);
  font-size: 22px;
}

.google-review-panel p {
  margin-top: 4px;
  color: var(--muted);
}

.review-section {
  background: #f5f8f9;
}

.google-review-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 3fr);
  gap: 28px;
  align-items: stretch;
}

.google-review-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 12px;
}

.google-review-summary h2 {
  color: #101820;
  font-size: 38px;
}

.google-review-summary > p:not(.eyebrow) {
  margin: 10px 0 20px;
  color: #566570;
  font-weight: 700;
}

.review-star-line {
  margin-top: 18px;
  color: #fbbc04;
  font-size: 42px;
  letter-spacing: 0;
  line-height: 1;
}

.review-star-line.small {
  margin-top: 22px;
  font-size: 24px;
}

.google-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #202124;
  font-size: 25px;
  font-weight: 900;
}

.google-wordmark span,
.google-g {
  color: #4285f4;
  font-weight: 950;
}

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

.google-review-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #e4e9ec;
  border-radius: 8px;
  color: #171c20;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 50, 65, 0.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.google-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(17, 50, 65, 0.14);
}

.google-review-card-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.google-review-card-head strong,
.google-review-card-head small {
  display: block;
}

.google-review-card-head strong {
  font-size: 18px;
}

.google-review-card-head small {
  margin-top: 2px;
  color: #7a858d;
  font-weight: 700;
}

.review-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.review-avatar-blue { background: #2563eb; }
.review-avatar-green { background: #0d9488; }
.review-avatar-purple { background: #6d28d9; }

.google-review-card > p {
  margin-top: 18px;
  color: #27343c;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.review-read-more {
  margin-top: auto;
  padding-top: 18px;
  color: #68747c;
  font-weight: 850;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  transition: transform .18s ease, background .18s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: var(--aqua);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.footer-social svg rect,
.footer-social svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-social svg .social-dot {
  fill: currentColor;
  stroke: none;
}

.footer-social svg .social-cut {
  fill: var(--blue-dark);
}

.oceanjet-visual {
  display: grid;
  min-height: 420px;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.oceanjet-logo {
  width: min(420px, 100%);
  height: auto;
}

.oceanjet-visual p {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  text-align: center;
}

.course-page-hero {
  padding: 88px 0 70px;
  background: linear-gradient(180deg, #eafbff, #fff);
}

.course-page-hero h1 {
  max-width: 900px;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 72px);
}

.course-page-hero .lead {
  max-width: 780px;
}

.course-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.course-page-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 128, 164, 0.08);
}

.course-page-card h2,
.course-page-card h3 {
  color: var(--ink);
}

.course-page-card p {
  margin-top: 10px;
  color: var(--muted);
}

.course-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.review-card .text-link {
  display: inline-flex;
  margin-top: 14px;
}

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

@media (max-width: 1040px) {
  .course-grid-simple {
    grid-template-columns: repeat(2, 1fr);
  }

  .google-review-showcase {
    grid-template-columns: 1fr;
  }

  .google-review-summary {
    align-items: center;
    text-align: center;
  }

  .google-review-cards {
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 720px) {
  .nav-cta {
    display: none;
  }

  .course-grid-simple {
    grid-template-columns: 1fr;
  }

  .course-card-actions,
  .course-page-grid,
  .google-review-panel {
    grid-template-columns: 1fr;
  }

  .course-card-image {
    height: 220px;
  }

  .google-review-panel {
    text-align: center;
  }

  .google-review-panel .google-mark {
    margin: 0 auto;
  }

  .benefit-list li {
    padding: 12px 14px 12px 38px;
  }

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