:root {
  --blue: #2878eb;
  --blue-deep: #174eab;
  --coral: #f14d5d;
  --navy: #120f2d;
  --ink: #26364e;
  --copy: #33445e;
  --soft: #eef4ff;
  --line: #dce5f5;
  --shadow: 0 16px 40px rgba(35, 63, 121, .10);
  --radius: 20px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Open Sans", sans-serif;
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased
}

body.booking-open {
  overflow: hidden
}

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

a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500
}

a:hover {
  color: var(--coral)
}

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

button {
  cursor: pointer
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .65rem;
  color: var(--navy);
  font-family: "Jost", sans-serif;
  font-weight: 700;
  line-height: 1.22
}

p {
  margin: 0 0 1rem;
  color: var(--copy);
  font-size: 16.5px;
  line-height: 1.78;
  font-weight: 400
}

.site-width {
  width: min(1140px, calc(100% - 30px));
  margin-inline: auto
}

.wide-width {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto
}

.center-text {
  text-align: center
}

.topbar {
  background: radial-gradient(ellipse at 100% 0, rgba(40, 120, 235, .25), transparent 65%), linear-gradient(110deg, #120f2d, #232149);
  color: #fff
}

.topbar-inner {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px
}

.topbar-contact>span {
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.topbar-separator {
  opacity: .5
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.1em;
  font-weight: 700
}

.social-links,
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px
}

.social-links a,
.footer-social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px
}

.site-header {
  position: relative;
  z-index: 40;
  background: linear-gradient(105deg, #fff 65%, #edf4ff);
  box-shadow: 0 4px 24px rgba(18, 15, 45, .05)
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px
}

.brand {
  font-family: "Jost", sans-serif;
  font-size: clamp(25px, 2.3vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
  background: linear-gradient(115deg, #2878eb 25%, #5864d2 75%, #f14d5d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.brand:hover {
  color: transparent
}

.nav-panel {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1
}

.nav-link {
  font-family: "Jost", sans-serif;
  position: relative;
  padding: 30px 10px;
  color: #26364e;
  font-size: 16.5px;
  font-weight: 600;
  white-space: nowrap
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 20px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2878eb, #f14d5d);
  transition: width .25s
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--blue)
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 28px
}

.nav-whatsapp {
  font-size: 15px;
  white-space: nowrap
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 1px solid #cbd8e9;
  background: #fff;
  border-radius: 10px
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #29446c;
  border-radius: 4px
}

.button {
  font-family: "Jost", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  transition: transform .25s, box-shadow .25s, background .25s
}

.button:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 24px rgba(18, 15, 45, .15)
}

.button-primary {
  color: #fff;
  background: linear-gradient(120deg, #2878eb, #426ad9 65%, #7760c3)
}

.button-accent {
  color: #fff;
  background: linear-gradient(110deg, #f14d5d, #d94276);
  box-shadow: 0 12px 28px rgba(18, 15, 45, .20)
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px)
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(115deg, rgba(18, 15, 45, .86), rgba(40, 120, 235, .78) 52%, rgba(96, 75, 160, .77) 83%, rgba(241, 77, 93, .65)), url(../img/bgheader.jpg) center/cover no-repeat;
  overflow: hidden
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 88% 18%, transparent 0 112px, rgba(255, 255, 255, .1) 113px 114px, transparent 115px 156px), radial-gradient(circle at 12% 82%, rgba(255, 255, 255, .08) 0 3px, transparent 4px);
  background-size: auto, 26px 26px
}

.torn-bottom::after,
.torn-top::before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 4;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%
}

.torn-bottom::after {
  bottom: 0;
  background-image: url(../img/overlay-bottom.png);
  background-position: bottom center
}

.torn-top::before {
  top: 0;
  background-image: url(../img/overlay-top.png);
  background-position: top center
}

.hero-home {
  margin-bottom: 65px
}

.hero-inner {
  min-height: 640px;
  padding: 110px 0 125px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

.hero-eyebrow {
  font-family: "Jost", sans-serif;
  display: inline-block;
  margin-bottom: 10px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .07);
  border-radius: 50px;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1.4 !important;
  letter-spacing: .1em
}

.hero-title {
  max-width: 960px;
  margin: 18px auto 25px;
  color: #fff;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1.12;
  text-shadow: 0 4px 25px rgba(18, 15, 45, .2);
  background: linear-gradient(100deg, #fff 28%, #dceaff 65%, #ffe0e5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-copy {
  max-width: 630px;
  margin: 0 auto 28px;
  color: #f0f5ff !important;
  font-size: 17px !important;
  line-height: 1.75 !important
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

.hero-actions .button {
  min-width: 220px;
  border-radius: 50px
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 35px
}

.hero-tags span {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  color: #e7edff;
  font-size: 13px;
  font-weight: 600
}

.page-hero {
  margin-bottom: 70px
}

.page-hero-inner {
  min-height: 390px;
  padding: 95px 0 115px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

.page-hero h1 {
  margin: 20px 0;
  color: #fff;
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  text-shadow: 0 4px 25px rgba(18, 15, 45, .25)
}

.subpage-kicker {
  display: inline-block;
  color: #e5eeff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 10px 18px;
  border-radius: 30px
}

.subpage-description {
  max-width: 640px;
  margin: 0 auto 22px;
  color: #eaf1ff !important;
  font-size: 17px !important;
  line-height: 1.75 !important
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 11px;
  color: #d8e7ff;
  font-size: 13px
}

.breadcrumb a {
  color: #fff
}

.section {
  padding: 70px 0
}

.section-heading {
  margin-bottom: 24px
}

.section-heading-center {
  text-align: center
}

.section-kicker {
  font-family: "Jost", sans-serif;
  display: inline-block;
  margin-bottom: 14px;
  padding: 9px 16px;
  border: 1px solid rgba(241, 77, 93, .12);
  border-radius: 30px;
  background: rgba(241, 77, 93, .05);
  color: #b82341;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase
}

.section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.18
}

.section-heading::after {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin-top: 20px;
  border-radius: 6px;
  background: linear-gradient(90deg, #2878eb, #f14d5d)
}

.section-heading-center::after {
  margin-inline: auto
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 38px;
  align-items: stretch;
  padding: 40px;
  border: 1px solid #dce7fa;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff 55%, #edf3ff);
  box-shadow: 0 20px 65px rgba(41, 76, 138, .06)
}

.about-card::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  right: 40px;
  height: 4px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(90deg, #2878eb, #986bc9, #f14d5d)
}

.about-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 38px 20px;
  background: radial-gradient(circle at 50% 43%, #fff 0 40%, #e4edfd 41% 43%, transparent 44%), radial-gradient(circle at 80% 10%, rgba(241, 77, 93, .12), transparent 50%), linear-gradient(135deg, #eef5ff, #efedfa);
  border-radius: 130px 130px 24px 24px;
  border: 1px solid #e0e8f8;
  overflow: hidden
}

.about-logo img {
  width: 85%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 25px rgba(18, 15, 45, .13))
}

.logo-caption {
  text-align: center;
  font-size: 16px;
  letter-spacing: .16em;
  font-weight: 700;
  color: #254780;
  margin-top: 28px
}

.logo-caption span {
  display: block;
  margin-top: 6px;
  color: #657495;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0
}

.about-copy {
  align-self: center
}

.about-copy>p {
  line-height: 1.78
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 124px;
  padding: 22px 10px;
  border: 3px solid #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(18, 15, 45, .05)
}

.stat-card:first-child {
  border-radius: 15px 0 0 15px
}

.stat-card:last-child {
  border-radius: 0 15px 15px 0
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  white-space: nowrap
}

.stat-card span {
  color: #fff;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  text-transform: uppercase
}

.stat-green {
  background: linear-gradient(125deg, #2ebd8c, #168b72)
}

.stat-blue {
  background: linear-gradient(125deg, #2878eb, #1b5bb7)
}

.stat-coral {
  background: linear-gradient(125deg, #f14d5d, #c83d6d)
}

.stat-gold {
  background: linear-gradient(125deg, #ffc107, #d89200)
}

.stat-gold strong,
.stat-gold span {
  color: #402c00
}

.benefits-section {
  margin: 90px 0;
  padding: 35px 0;
  background: radial-gradient(ellipse at 100% 20%, rgba(241, 77, 93, .08), transparent 50%), linear-gradient(135deg, #eaf2ff, #f8f4fc);
  border-block: 1px solid #dce6f7
}

.benefits-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 30px
}

.benefits-copy {
  padding: 45px 0
}

.benefit-card {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 24px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, .93);
  border: 1px solid #e3eafa;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(41, 71, 120, .03);
  transition: transform .35s, box-shadow .35s;
  overflow: hidden
}

.benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  border-radius: 5px;
  background: #2878eb
}

.benefit-card:nth-of-type(even)::before {
  background: #f14d5d
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(41, 71, 120, .08)
}

.benefit-number {
  flex: 0 0 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eaf1ff;
  color: #2878eb;
  font-size: 14px;
  font-weight: 700
}

.benefit-card:nth-of-type(even) .benefit-number {
  background: #fff0f3;
  color: #cf425c
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 21px
}

.benefit-card p {
  margin: 0;
  font-size: 16.5px !important;
  line-height: 1.78 !important
}

.benefit-photo {
  align-self: stretch;
  min-height: 520px;
  margin: 55px 0;
  border-radius: 150px 150px 22px 22px;
  border: 8px solid #fff;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(32, 56, 108, .13)
}

.benefit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.package-section {
  padding: 75px 0;
  background: linear-gradient(180deg, #fff, #f4f7ff)
}

.package-container {
  max-width: 1440px
}

.package-intro {
  max-width: 950px;
  margin: 0 auto 35px;
  text-align: center
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: start
}

.package-card {
  background: #fff;
  border: 1px solid #d0ddee;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(32, 56, 103, .07)
}

.package-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #eef3fb;
  cursor: pointer
}

.package-brochure {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: contain;
  background: #edf2fa
}

.package-copy {
  padding: 23px
}

.package-copy h3 {
  font-size: 23px;
  margin-bottom: 18px
}

.package-date {
  font-size: 15.5px !important;
  font-weight: 600;
  color: #265998
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px
}

.package-tags span {
  font-size: 14.5px;
  font-weight: 500;
  background: #edf3ff;
  color: #254a81;
  border-radius: 8px;
  padding: 6px 10px
}

.package-facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  font-size: 15.5px
}

.package-facts dt {
  font-weight: 500;
  color: #45566f
}

.package-facts dd {
  text-align: right;
  margin: 0;
  color: #253752;
  font-weight: 500
}

.package-bottom {
  border-top: 1px solid #dae4f2;
  margin-top: 22px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.package-price span {
  display: block;
  font-size: 14.5px;
  color: #4c5b74
}

.package-price strong {
  font-size: 21px;
  color: #a61c37
}

.package-full {
  color: #fff;
  background: #ac1d32;
  border-color: #ac1d32
}

.package-full:hover {
  background: #861427
}

.team-teaser {
  padding: 85px 0
}

.team-teaser .section-heading p {
  margin-bottom: 18px
}

.homepage-testimonials {
  margin-block: 65px;
  background: linear-gradient(180deg, #f4f7ff, #fff 25%, #fff 75%, #fff5f7);
  border-block: 1px solid #e4ebf7
}

.testimonials-section {
  padding-top: 75px;
  padding-bottom: 80px
}

.testimonials-intro {
  max-width: 610px;
  text-align: center;
  margin: 0 auto 38px;
  line-height: 1.78
}

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

.short-card {
  min-width: 0;
  background: #fff;
  border: 1px solid #e0e8f6;
  border-radius: 17px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(35, 63, 121, .07)
}

.short-screen {
  aspect-ratio: 9/16;
  position: relative;
  background: #120f2d;
  overflow: hidden
}

.short-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #120f2d
}

.short-screen .short-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.short-play {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  padding: 28px 18px;
  color: #fff;
  background: linear-gradient(0deg, rgba(18, 15, 45, .94), transparent 75%)
}

.short-play-icon {
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ff1744;
  color: #fff;
  font-size: 25px;
  padding-left: 4px;
  box-shadow: 0 10px 35px rgba(18, 15, 45, .25)
}

.short-play-label {
  font-size: 14.5px
}

.short-chip {
  position: absolute;
  left: 17px;
  top: 17px;
  z-index: 1;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .27);
  border-radius: 30px;
  background: rgba(18, 15, 45, .67);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .08em
}

.short-copy {
  padding: 20px 22px
}

.short-copy h3 {
  font-size: 21px
}

.short-copy p {
  font-size: 14.5px !important;
  line-height: 1.7 !important
}

.short-youtube {
  display: inline-block;
  width: 100%;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid #e5ecf7;
  font-size: 14.5px;
  font-weight: 600
}

.short-fallback {
  margin-top: 12px !important;
  color: #8390a8
}

.short-placeholder .short-screen {
  background: radial-gradient(ellipse at 90% 10%, #526dd0, transparent 55%), linear-gradient(155deg, #213b77, #120f2d)
}

.short-placeholder:nth-child(2) .short-screen {
  background: radial-gradient(ellipse at 90% 10%, #946ab8, transparent 55%), linear-gradient(155deg, #3d427d, #191933)
}

.short-placeholder:nth-child(3) .short-screen {
  background: radial-gradient(ellipse at 90% 10%, #b95883, transparent 55%), linear-gradient(155deg, #334d87, #211c40)
}

.short-placeholder-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: #fff
}

.placeholder-mark {
  font-size: 48px;
  color: #bbcfff;
  margin-bottom: 24px
}

.short-placeholder-content h3 {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.3;
  color: #fff
}

.short-placeholder-content p {
  font-size: 15px !important;
  color: #d6e0f6 !important;
  margin: 18px 0 0
}

.placeholder-index {
  position: absolute;
  bottom: 22px;
  left: 26px;
  font-size: 14px;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .5)
}

.testimonials-more {
  text-align: center;
  margin-top: 35px
}

.shorts-channel {
  margin-top: 45px;
  padding: 30px 34px;
  border: 1px solid #dce5f5;
  border-radius: 20px;
  background: linear-gradient(115deg, #edf4ff, #f6eef9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.shorts-channel h3 {
  font-size: 22px;
  margin-bottom: 10px
}

.shorts-channel p {
  margin: 0;
  font-size: 15.5px
}

.shorts-channel .button {
  flex-shrink: 0;
  font-size: 14px
}

.contact-section {
  padding: 80px 0
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 30px;
  align-items: center
}

.contact-info-panel {
  min-height: 480px;
  padding: 35px 38px;
  border: 1px solid #dce5f8;
  border-radius: 26px;
  background: radial-gradient(circle at 100% 0, rgba(241, 77, 93, .15), transparent 55%), linear-gradient(135deg, #edf4ff, #eeeafa);
  box-shadow: 0 16px 40px rgba(41, 76, 138, .07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 22px
}

.contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 77px;
  width: 77px;
  height: 77px;
  border-radius: 16px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(18, 15, 45, .08)
}

.contact-blue {
  background: linear-gradient(125deg, #2878eb, #4167d7)
}

.contact-coral {
  background: linear-gradient(125deg, #f14d5d, #d74777)
}

.contact-gold {
  background: linear-gradient(125deg, #f5b700, #dc8f00)
}

.contact-item h3 {
  font-size: 21px;
  margin-bottom: 6px
}

.contact-item p {
  margin: 0
}

.contact-form {
  padding: 32px;
  border: 1px solid #e5ecf8;
  border-top: 4px solid #2878eb;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #f5f8ff);
  box-shadow: 0 20px 50px rgba(35, 67, 125, .08)
}

.contact-form form {
  display: grid;
  gap: 16px
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 15px;
  border: 1px solid #dce5f5;
  border-radius: 12px;
  background: #eff4fc;
  color: #26364e;
  font-size: 16px;
  font-weight: 400;
  outline: none
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2878eb;
  box-shadow: 0 0 0 3px rgba(40, 120, 235, .11)
}

.contact-submit {
  justify-self: start;
  border-radius: 50px;
  padding-inline: 28px
}

.organization-section {
  max-width: 1440px;
  padding: 75px 24px 80px
}

.organization-intro {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  color: #66799a;
  margin-bottom: 35px
}

.org-scroll-hint {
  display: none;
  font-size: 13px;
  color: #63799e;
  text-align: center;
  font-weight: 500
}

.org-scroll {
  overflow-x: auto;
  padding: 48px 26px;
  border: 1px solid #dce5f5;
  border-radius: 26px;
  background: linear-gradient(140deg, #edf3ff, #fcfdff 55%, #fff0f4);
  scrollbar-color: #9ab5e0 #eef3fb
}

.org-scroll:focus-visible {
  outline: 3px solid #2878eb;
  outline-offset: 4px
}

.org-chart {
  min-width: 1100px;
  max-width: 1340px;
  margin: auto;
  position: relative
}

.org-commissioner,
.org-spine {
  width: 380px;
  margin-inline: auto
}

.org-commissioner {
  margin-bottom: 34px
}

.org-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 124px;
  padding: 22px 20px;
  background: #fff;
  border: 2px solid #adc3e9;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(35, 63, 121, .06)
}

.org-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(#2878eb, #7068ce);
  border-radius: 16px 0 0 16px
}

.org-role {
  margin: 0 0 8px;
  color: #36547e !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 600;
  letter-spacing: .025em;
  text-transform: uppercase
}

.org-card h3 {
  margin: 0;
  color: #142b50;
  font-size: 21px;
  line-height: 1.3
}

.org-leader {
  background: linear-gradient(120deg, #254eaa, #3d60bc 60%, #6462b4);
  border-color: #355dab
}

.org-leader .org-role {
  color: #e5edff !important
}

.org-leader h3 {
  color: #fff
}

.org-leader::after {
  background: #f14d5d
}

.org-spine>.org-card {
  margin-bottom: 42px
}

.org-spine>.org-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  height: 44px;
  border-left: 3px solid #6d8fbd;
  z-index: -1
}

.org-bottom {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 36px;
  position: relative;
  align-items: stretch
}

.org-bottom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 3px;
  background: #6d8fbd
}

.org-bottom .org-card::after {
  background: linear-gradient(#f14d5d, #ae63b5)
}

.org-bottom .org-central::after {
  background: linear-gradient(#2878eb, #7068ce)
}

.organization-footnote {
  text-align: center;
  font-size: 14.5px;
  color: #667c9f;
  margin-top: 25px
}

.organization-footnote span {
  color: #f14d5d;
  margin-right: 10px
}

.site-footer {
  position: relative;
  margin-top: 90px;
  padding-top: 105px;
  background: radial-gradient(ellipse at 100% 0, rgba(40, 120, 235, .25), transparent 65%), linear-gradient(110deg, #120f2d, #232149);
  color: #fff
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 70px;
  padding-bottom: 55px
}

.footer-brand {
  font-family: "Jost", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  text-transform: uppercase
}

.footer-main p {
  color: #e1e7f4 !important
}

.footer-contact h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px
}

.footer-contact p {
  display: flex;
  gap: 10px;
  margin-bottom: 9px
}

.footer-social {
  margin-top: 18px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1)
}

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

.footer-bottom p {
  margin: 0;
  color: #e1e7f4 !important;
  font-size: 14px
}

.footer-bottom a {
  color: #fff
}

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(120deg, #2878eb, #426ad9);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(18, 15, 45, .2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 12px, 0) scale(.96);
  transition: opacity .35s ease, transform .45s cubic-bezier(.16, 1, .3, 1), visibility .35s
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1)
}

.back-to-top:hover {
  color: #fff
}

.booking-dialog {
  width: min(1120px, calc(100% - 32px));
  max-width: 1120px;
  max-height: calc(100dvh - 36px);
  margin: auto;
  padding: 0;
  border: 1px solid #ccdaef;
  border-radius: 22px;
  color: #24354e;
  background: #fff;
  overflow: auto;
  box-shadow: 0 24px 90px rgba(18, 15, 45, .33)
}

.booking-dialog:not([open]) {
  display: none
}

.booking-dialog::backdrop {
  background: rgba(16, 27, 55, .72);
  backdrop-filter: blur(4px)
}

.booking-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid #dbe5f3;
  background: #f4f7ff;
  position: sticky;
  top: 0;
  z-index: 2
}

.booking-top>span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em
}

.booking-close {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #bdcde4;
  border-radius: 10px;
  color: #233d65;
  font-weight: 700
}

.booking-close span {
  font-size: 27px;
  line-height: 1
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
  gap: 30px;
  padding: 28px
}

.booking-visual {
  position: sticky;
  top: 110px;
  min-width: 0
}

.booking-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: contain;
  background: #eef3fa;
  border-radius: 14px;
  border: 1px solid #d9e4f3
}

.booking-visual>a {
  display: block;
  font-size: 17px;
  text-align: center;
  padding: 14px 4px;
  color: #174eab
}

.booking-details h2 {
  font-size: 30px;
  margin: 0 0 16px
}

.booking-details p {
  font-size: 16.5px !important
}

.booking-details label {
  display: block;
  margin: 22px 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #233d60
}

.booking-details label span {
  font-size: 14.5px;
  font-weight: 400
}

.booking-details input,
.booking-details textarea {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #aebfd9;
  border-radius: 10px;
  background: #fff;
  color: #24354e;
  font-weight: 400;
  line-height: 1.6
}

.booking-details input[readonly] {
  background: #eaf1fd;
  color: #1c437d;
  font-weight: 700
}

.booking-details textarea {
  resize: vertical
}

.booking-status {
  padding: 15px;
  border: 1px solid #e1b88f;
  border-left: 5px solid #a55315;
  border-radius: 10px;
  background: #fff5e9;
  color: #633810 !important
}

.booking-submit {
  display: flex;
  width: 100%;
  margin-top: 26px;
  padding: 16px;
  white-space: normal
}

.booking-note {
  margin-top: 18px;
  color: #4b5c74 !important;
  font-size: 14.5px !important
}

:focus-visible {
  outline: 3px solid #a91c43;
  outline-offset: 4px
}

/* Scroll reveal is driven by hallaj.js and intentionally replays whenever an element re-enters the viewport. */
[data-hallaj-motion] {
  backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform, opacity
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }

  .button:hover,
  .benefit-card:hover {
    transform: none
  }
}

@media(max-width:1199.98px) {
  .nav-shell {
    flex-wrap: wrap;
    min-height: 76px;
    padding-block: 12px
  }

  .nav-toggle {
    display: block;
    margin-left: auto
  }

  .nav-panel {
    display: none;
    flex-basis: 100%;
    width: 100%;
    padding: 8px 0 12px
  }

  .nav-panel.is-open {
    display: block
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch
  }

  .nav-link {
    padding: 12px 15px
  }

  .nav-link::after {
    left: 15px;
    bottom: 3px
  }

  .nav-whatsapp {
    margin: 10px 15px 0
  }

  .org-scroll-hint {
    display: block
  }
}

@media(max-width:991.98px) {

  .about-card,
  .benefits-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .about-logo {
    min-height: 360px
  }

  .benefit-photo {
    min-height: 500px;
    margin: 0
  }

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

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

  .shorts-channel {
    flex-direction: column;
    text-align: center
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .booking-layout {
    grid-template-columns: 1fr
  }

  .booking-visual {
    position: static;
    max-width: 470px;
    width: 100%;
    margin: auto
  }
}

@media(max-width:767.98px) {
  body {
    font-size: 15.5px;
    line-height: 1.7
  }

  p {
    font-size: 15.5px;
    line-height: 1.72
  }

  .site-width {
    width: min(100% - 28px, 1140px)
  }

  .wide-width {
    width: min(100% - 28px, 1320px)
  }

  .topbar-inner {
    padding: 8px 0;
    flex-direction: column;
    gap: 5px
  }

  .topbar-contact {
    font-size: 13px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center
  }

  .topbar-separator {
    display: none
  }

  .social-links {
    display: none
  }

  .nav-shell {
    min-height: 70px
  }

  .brand {
    font-family: "Jost", sans-serif;
    font-size: 26px
  }

  .nav-link {
    font-size: 16px
  }

  .hero-inner {
    min-height: 540px;
    padding: 85px 0 115px
  }

  .hero-eyebrow {
    font-size: 15px !important;
    padding: 10px 18px
  }

  .hero-title {
    font-size: clamp(2.55rem, 12vw, 4rem)
  }

  .hero-copy,
  .subpage-description {
    font-size: 15.5px !important;
    line-height: 1.7 !important
  }

  .hero-tags span,
  .subpage-kicker,
  .section-kicker {
    font-size: 12px
  }

  .hero-actions {
    width: 100%
  }

  .hero-actions .button {
    min-width: min(100%, 250px)
  }

  .page-hero {
    margin-bottom: 44px
  }

  .page-hero-inner {
    min-height: 315px;
    padding: 70px 0 95px
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.5rem)
  }

  .section {
    padding: 55px 0
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem)
  }

  .about-card {
    padding: 24px 18px;
    gap: 24px
  }

  .about-card::before {
    left: 22px;
    right: 22px
  }

  .about-logo {
    min-height: 310px;
    border-radius: 90px 90px 20px 20px
  }

  .logo-caption span {
    font-size: 13.5px
  }

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

  .stat-card {
    min-height: 115px;
    padding: 18px 8px
  }

  .stat-card strong {
    font-size: 28px
  }

  .stat-card:first-child {
    border-radius: 14px 0 0 0
  }

  .stat-card:nth-child(2) {
    border-radius: 0 14px 0 0
  }

  .stat-card:nth-child(3) {
    border-radius: 0 0 0 14px
  }

  .stat-card:last-child {
    border-radius: 0 0 14px 0
  }

  .benefits-section {
    margin: 55px 0;
    padding: 20px 0
  }

  .benefits-copy {
    padding: 35px 0 5px
  }

  .benefit-card {
    padding: 18px;
    gap: 14px
  }

  .benefit-card h3 {
    font-size: 19px
  }

  .benefit-card p {
    font-size: 15.5px !important;
    line-height: 1.72 !important
  }

  .benefit-photo {
    min-height: 430px;
    border-radius: 100px 100px 20px 20px
  }

  .package-section {
    padding: 55px 0
  }

  .packages-grid {
    grid-template-columns: 1fr
  }

  .package-copy h3 {
    font-size: 23px
  }

  .team-teaser {
    padding: 60px 0
  }

  .testimonials-section {
    padding-top: 55px;
    padding-bottom: 60px
  }

  .shorts-grid {
    grid-template-columns: 1fr;
    max-width: 370px;
    margin-inline: auto
  }

  .shorts-channel {
    padding: 26px 18px
  }

  .contact-section {
    padding: 55px 0
  }

  .contact-info-panel {
    min-height: 0;
    padding: 28px 20px
  }

  .contact-item {
    align-items: flex-start;
    gap: 16px
  }

  .contact-icon {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
    font-size: 21px
  }

  .contact-item h3 {
    font-size: 19px
  }

  .contact-form {
    padding: 20px
  }

  .form-two {
    grid-template-columns: 1fr
  }

  .organization-section {
    padding: 44px 14px 55px
  }

  .organization-intro {
    margin-bottom: 20px
  }

  .org-scroll-hint {
    display: none
  }

  .org-scroll {
    overflow-x: hidden;
    width: 100%;
    padding: 24px 12px;
    border-radius: 16px
  }

  .org-chart {
    min-width: 0;
    max-width: 390px;
    width: 100%;
    margin-inline: auto
  }

  .org-commissioner,
  .org-spine {
    width: 100%;
    max-width: 350px;
    margin-inline: auto
  }

  .org-commissioner {
    margin-bottom: 26px
  }

  .org-spine>.org-card {
    margin-bottom: 26px
  }

  .org-card {
    width: 100%;
    min-height: 0;
    padding: 17px 14px;
    border-width: 1.5px;
    border-radius: 14px
  }

  .org-role {
    font-size: 11.5px !important;
    margin-bottom: 7px
  }

  .org-card h3 {
    font-size: 18px
  }

  .org-card::after {
    width: 4px
  }

  .org-commissioner>.org-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    height: 27px;
    border-left: 2px solid #6d8fbd;
    z-index: -1
  }

  .org-spine>.org-card::before {
    height: 27px;
    border-left-width: 2px
  }

  .org-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%
  }

  .org-bottom::before {
    top: -26px;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 0;
    height: auto;
    border-left: 2px solid #6d8fbd;
    background: none;
    transform: translateX(-1px)
  }

  .org-bottom .org-card {
    width: 100%;
    max-width: 350px
  }

  .organization-footnote {
    font-size: 13px;
    line-height: 1.65;
    margin-top: 20px
  }

  .site-footer {
    margin-top: 55px;
    padding-top: 90px
  }

  .footer-main {
    padding-bottom: 38px
  }

  .footer-brand {
    font-size: 23px
  }

  .footer-bottom-inner {
    padding: 20px 0;
    flex-direction: column;
    text-align: center;
    gap: 6px
  }

  .booking-dialog {
    width: calc(100% - 16px);
    border-radius: 16px
  }

  .booking-layout {
    padding: 20px;
    gap: 20px
  }

  .booking-top {
    padding: 12px 16px
  }

  .booking-top>span {
    font-size: 13px
  }

  .booking-details h2 {
    font-size: 27px
  }

  .booking-close {
    font-size: 15px
  }
}

@media(max-width:380px) {

  .site-width,
  .wide-width {
    width: calc(100% - 20px)
  }

  .about-card {
    padding-inline: 14px
  }

  .org-scroll {
    padding-inline: 9px
  }

  .org-card {
    padding: 15px 12px
  }

  .org-card h3 {
    font-size: 17px
  }

  .org-role {
    font-size: 11px !important
  }
}

/* ===== CARD PAKET KEBERANGKATAN ===== */
.package-container {
  max-width: 1500px
}

.packages-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch
}

.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #dce4ef;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 52, 93, .07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: #c5d5ec;
  box-shadow: 0 18px 42px rgba(26, 52, 93, .12)
}

.package-image-button {
  overflow: hidden;
  background: #eef3fa
}

.package-image-button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px
}

.package-brochure {
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2, .7, .2, 1)
}

.package-image-button:hover .package-brochure {
  transform: scale(1.018)
}

.package-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 17px 18px 18px
}

.package-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 11px;
  color: #245e9d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4
}

.package-copy h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: #17243a
}

.package-summary {
  margin: 0 0 14px !important;
  color: #56657a !important;
  font-size: 14px !important;
  line-height: 1.6 !important
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 16px
}

.package-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #e9f5f7;
  color: #157384;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4
}

.package-tags span:nth-child(3n+2) {
  background: #f2f0df;
  color: #82730e
}

.package-tags span:nth-child(3n+3) {
  background: #f1eafa;
  color: #7250b8
}

.package-facts {
  display: grid;
  grid-template-columns: minmax(84px, auto) 1fr;
  gap: 7px 10px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45
}

.package-facts dt {
  color: #7b8798;
  font-weight: 400
}

.package-facts dd {
  margin: 0;
  text-align: right;
  color: #28364b;
  font-weight: 600;
  overflow-wrap: anywhere
}

.package-more {
  align-self: flex-start;
  margin: 14px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: #2367be;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px
}

.package-more:hover {
  color: #d74362
}

.package-bottom {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px
}

.package-price span {
  display: block;
  margin-bottom: 2px;
  color: #7a8494;
  font-size: 12px;
  letter-spacing: .02em
}

.package-price strong {
  display: block;
  color: #158244;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap
}

.package-price-empty {
  color: #65758b;
  font-size: 13px
}

.package-bottom .button {
  min-width: 112px;
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 9px;
  font-size: 14px
}

.booking-package-summary {
  margin: 0 0 22px;
  padding: 17px;
  border: 1px solid #dbe6f3;
  border-radius: 14px;
  background: #f8fbff
}

.booking-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px
}

.booking-summary-meta span {
  padding: 6px 9px;
  border-radius: 8px;
  background: #eaf2fd;
  color: #2d568b;
  font-size: 13px;
  font-weight: 600
}

.booking-summary-meta .booking-summary-price {
  background: #eaf7ef;
  color: #167542
}

.booking-summary-text {
  margin: 0 0 14px !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important
}

.booking-summary-facts {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr;
  gap: 7px 12px;
  margin: 0 0 16px;
  font-size: 14px
}

.booking-summary-facts dt {
  color: #6d7b8f
}

.booking-summary-facts dd {
  margin: 0;
  text-align: right;
  color: #263a56;
  font-weight: 600
}

.booking-summary-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 13px
}

.booking-summary-list {
  padding: 13px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid #e0e7f0
}

.booking-summary-list h3 {
  margin: 0 0 9px;
  font-size: 15px
}

.booking-summary-list.included h3 {
  color: #157747
}

.booking-summary-list.excluded h3 {
  color: #a14835
}

.booking-summary-list ul {
  margin: 0;
  padding-left: 18px
}

.booking-summary-list li {
  margin: 5px 0;
  color: #4c5c70;
  font-size: 13.5px;
  line-height: 1.5
}

@media (max-width:1250px) {
  .packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media (max-width:920px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:650px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto
  }

  .package-copy {
    padding: 17px
  }

  .package-copy h3 {
    font-size: 20px
  }

  .booking-summary-columns {
    grid-template-columns: 1fr
  }

  .booking-summary-facts {
    grid-template-columns: 1fr;
    gap: 2px
  }

  .booking-summary-facts dd {
    text-align: left;
    margin-bottom: 7px
  }
}


/* ===== PAKET KEBERANGKATAN STATIC HTML =====
   Data paket ditulis langsung di index.html/course.html.
   Tidak memakai js/packages.js atau file data TXT. */
.package-brochure-link {
  display: block;
  overflow: hidden;
  background: #eef3fa;
  line-height: 0
}

.package-brochure-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px
}

.package-brochure-link .package-brochure {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2, .7, .2, 1)
}

.package-brochure-link:hover .package-brochure {
  transform: scale(1.018)
}

.package-details {
  margin-top: 16px;
  border-top: 1px solid #e3e9f1;
  border-bottom: 1px solid #e3e9f1
}

.package-details summary {
  padding: 12px 2px;
  cursor: pointer;
  color: #2367be;
  font-family: "Jost", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  list-style-position: inside
}

.package-details summary:hover {
  color: #a61c37
}

.package-details[open] summary {
  border-bottom: 1px solid #edf1f6
}

.package-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 15px 2px 17px
}

.package-details-grid h4 {
  margin: 0 0 8px;
  color: #263a56;
  font-size: 14px
}

.package-details-grid ul {
  margin: 0;
  padding-left: 18px
}

.package-details-grid li {
  margin: 5px 0;
  color: #59697d;
  font-size: 13px;
  line-height: 1.5
}

.package-all-link {
  display: flex;
  justify-content: center;
  margin-top: 30px
}

@media(max-width:650px) {
  .package-details-grid {
    grid-template-columns: 1fr
  }

  .package-details summary {
    font-size: 14px
  }
}

/* ==================================================
   PAKET KHUSUS HOMEPAGE / INDEX
   ================================================== */

.packages-grid-home {
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
}

@media (max-width: 767px) {
  .packages-grid-home {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==================================================
   SOCIAL MEDIA LOGO
   ================================================== */

.social-links,
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.06);
  border-color: rgba(255, 255, 255, 0.65);
}

/* Facebook */
.social-icon.facebook svg {
  fill: #1877F2;
}

/* YouTube */
.social-icon.youtube svg {
  fill: #FF0000;
}

.social-icon.youtube .youtube-play {
  fill: #FFFFFF;
}

@media (max-width: 767px) {
  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 19px;
    height: 19px;
  }
} 