/* ── Plan Your Visit page ─────────────────────────────────────── */

.plan-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .plan-hero { min-height: 520px; }
}

@media (min-width: 1024px) {
  .plan-hero { min-height: 580px; }
}

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

.plan-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.plan-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.plan-hero-title {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.plan-hero-title h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  max-width: 16ch;
  line-height: 1.1;
}

.plan-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  text-align: center;
}

.plan-intro h2 {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #00666d;
}

.plan-intro p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #3e494a;
}

.plan-topics {
  padding: 0 32px 64px;
}

.plan-topics-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .plan-topics-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .plan-topics-inner { grid-template-columns: repeat(4, 1fr); }
}

.plan-topic-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 28px rgba(0, 40, 45, 0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.plan-topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 102, 109, 0.14);
}

.plan-topic-card .material-symbols-outlined {
  font-size: 32px;
  color: #00666d;
}

.plan-topic-card h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #191c1e;
}

.plan-topic-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #3e494a;
}

.plan-section {
  padding: 0 32px 72px;
}

.plan-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.plan-section-head {
  margin-bottom: 28px;
}

.plan-section-head h2 {
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #00666d;
}

.plan-section-head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #3e494a;
  max-width: 720px;
}

.plan-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .plan-detail-grid { grid-template-columns: repeat(3, 1fr); }
}

.plan-detail-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 40, 45, 0.08);
}

.plan-detail-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.plan-detail-card-body {
  padding: 20px;
}

.plan-detail-card-body h3 {
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #191c1e;
}

.plan-detail-card-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #3e494a;
}

.plan-aquaband {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 40, 45, 0.08);
}

@media (min-width: 768px) {
  .plan-aquaband { grid-template-columns: 1fr 1fr; }
}

.plan-aquaband-copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-aquaband-copy h3 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00666d;
}

.plan-aquaband-copy p {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #3e494a;
}

.plan-aquaband-copy ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.plan-aquaband-copy li {
  display: flex;
  gap: 10px;
  font-size: 0.9375rem;
  color: #3e494a;
  margin-bottom: 8px;
  line-height: 1.45;
}

.plan-aquaband-copy li .material-symbols-outlined {
  color: #00666d;
  font-size: 20px;
  flex-shrink: 0;
}

.plan-aquaband-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.plan-promos {
  padding: 0 32px 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1164px;
  margin: 0 auto;
}

.plan-promo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0, 40, 45, 0.15);
}

.plan-promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 30, 35, 0.75) 0%, rgba(0, 30, 35, 0.2) 60%);
}

.plan-promo-copy {
  position: relative;
  z-index: 1;
  padding: 32px 36px;
}

.plan-promo-copy h3 {
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
}

.plan-promo-copy span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.plan-hours-wrap {
  padding: 0 32px 72px;
}
