*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --orange: #ff7800;
  --orange-light: #fff0e0;
  --teal: #02787c;
  --teal-dark: #0e6265;
  --teal-light: #eaf5f5;
  --teal-mid: #9fd8da;
  --white: #ffffff;
  --text: #0a1a1a;
  --text-2: #2d4f4f;
  --text-3: #6b8888;
  --bg: #ffffff;
  --bg-alt: #f0f9f9;
  --font-body: "Toroka", sans-serif;
  --font-display: "Toroka", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
html {
  overflow-x: clip;
}
@font-face {
  font-family: "Toroka";
  src: url("../fonts/Toroka-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Toroka";
  src: url("../fonts/Toroka-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Toroka";
  src: url("../fonts/Toroka-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(255 255 255 / 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(2 120 124 / 0.12);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 24px rgb(14 98 101 / 0.1);
}
.nav-logo {
  height: 40px;
  width: auto;
}
.nav-logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  display: flex;
  background: var(--teal-light);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgb(2 120 124 / 0.2);
}
.lang-btn {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  background: #fff0;
  color: var(--teal);
  font-family: var(--font-body);
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--teal);
  color: #fff;
  border-radius: 20px;
}
.btn-daftar {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.btn-daftar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgb(255 120 0 / 0.35);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(255 255 255 / 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(22px, 7vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--orange);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0e6265 0%, #02787c 55%, #014a4d 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgb(255 255 255 / 0.03) 20px,
    rgb(255 255 255 / 0.03) 21px
  );
  pointer-events: none;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgb(14 98 101 / 0.6) 0%,
    rgb(255 120 0 / 0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(255 255 255 / 0.15);
  border: 1px solid rgb(255 255 255 / 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-eyebrow span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 16px;
}
.hero-title .orange {
  color: var(--orange);
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgb(255 255 255 / 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero-meta-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgb(255 120 0 / 0.45);
}
.btn-outline {
  background: #fff0;
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid rgb(255 255 255 / 0.5);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 0.1);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap {
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.hero-logo-wrap img {
  width: 100%;
  max-width: 320px;
  height: auto;
}
.hero-brand-logo {
  height: 64px;
  width: auto;
  display: block;
}
.countdown-strip {
  background: var(--orange);
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.countdown-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
}
.countdown-units {
  display: flex;
  gap: 4px;
  align-items: center;
}
.countdown-unit {
  text-align: center;
  min-width: 64px;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: #fff;
}
.countdown-unit-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.8);
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: rgb(255 255 255 / 0.6);
  padding-bottom: 12px;
}
.banner {
  max-width: 100%;
  padding: 0;
  line-height: 0;
}
.banner img {
  width: 100%;
  display: block;
}
.section {
  padding: 88px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-alt {
  background: var(--bg-alt);
}
.section-alt .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: var(--text);
}
.section-title .accent {
  color: var(--orange);
}
.section-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 48px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  max-width: 100px;
  line-height: 1.3;
  word-break: break-word;
}
.about-visual {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.06);
}
.about-visual::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -20px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgb(255 120 0 / 0.08);
}
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(255 255 255 / 0.15);
  border: 1px solid rgb(255 255 255 / 0.2);
  padding: 10px 18px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.about-tag i {
  font-size: 20px;
  color: rgb(255 255 255 / 0.8);
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.category-card {
  background: #fff;
  border: 1.5px solid rgb(2 120 124 / 0.12);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgb(255 120 0 / 0.1);
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}
.category-badge {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 96px);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.category-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}
.category-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.category-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgb(2 120 124 / 0.08);
}
.category-detail:last-child {
  border-bottom: none;
}
.detail-key {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.detail-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.detail-val .eb {
  color: var(--orange);
}
.price-badge {
  display: inline-block;
  background: var(--orange-light);
  border: 1px solid rgb(255 120 0 / 0.25);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-left: 8px;
}
.flag-time {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--teal-light);
  border: 1px solid rgb(2 120 124 / 0.15);
  border-radius: 12px;
  padding: 12px 16px;
}
.flag-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.flag-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.flag-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.flag-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
}
.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.reg-card {
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.reg-card.early {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9a3c 100%);
  color: #fff;
}
.reg-card.regular {
  background: #fff;
  border: 1.5px solid rgb(2 120 124 / 0.15);
}
.reg-badge {
  display: inline-block;
  background: rgb(255 255 255 / 0.2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}
.reg-card.regular .reg-badge {
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid rgb(255 120 0 / 0.2);
}
.reg-type {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.reg-card.regular .reg-type {
  color: var(--text);
}
.reg-period {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 28px;
  font-weight: 500;
}
.reg-card.regular .reg-period {
  color: var(--text-2);
  opacity: 1;
}
.reg-prices {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.reg-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
}
.reg-price-row:last-child {
  border-bottom: none;
}
.reg-card.regular .reg-price-row {
  border-bottom: 1px solid rgb(2 120 124 / 0.08);
}
.reg-cat {
  font-size: 15px;
  font-weight: 700;
}
.reg-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.reg-card.regular .reg-cat,
.reg-card.regular .reg-price {
  color: var(--text);
}
.reg-cta {
  display: block;
  text-align: center;
  background: #fff;
  color: var(--orange);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.reg-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
}
.reg-card.regular .reg-cta {
  background: var(--orange);
  color: #fff;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.facility-item {
  background: #fff;
  border: 1.5px solid rgb(2 120 124 / 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.facility-item:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgb(2 120 124 / 0.08);
}
.facility-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.facility-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.jersey-table-wrap {
  overflow-x: auto;
  margin-top: 32px;
}
.jersey-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.jersey-table th {
  background: var(--teal);
  color: #fff;
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jersey-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid rgb(2 120 124 / 0.08);
  background: #fff;
}
.jersey-table tr:hover td {
  background: var(--teal-light);
}
.jersey-table td:first-child {
  font-weight: 700;
  text-align: left;
  color: var(--text-2);
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.schedule-column-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgb(2 120 124 / 0.2);
}
.timeline {
  display: flex;
  flex-direction: column;
}
.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: -20px;
  width: 2px;
  background: rgb(2 120 124 / 0.12);
}
.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.timeline-content {
  padding-bottom: 28px;
}
.timeline-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.timeline-event {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.timeline-note {
  font-size: 12px;
  color: var(--text-3);
}
.reg-badge i {
  font-size: 13px;
  vertical-align: -1px;
}
.ig-cta-section {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 72px 48px;
  text-align: center;
}
.ig-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.ig-cta-icon {
  width: 72px;
  height: 72px;
  background: rgb(255 255 255 / 0.15);
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 36px;
}
.ig-cta-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.ig-cta-sub {
  font-size: 16px;
  color: rgb(255 255 255 / 0.8);
  margin-bottom: 28px;
}
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--teal-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.ig-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.2);
}
.sponsors-placeholder {
  margin-top: 48px;
  background: var(--teal-light);
  border: 2px dashed rgb(2 120 124 / 0.2);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}
.sponsors-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.sponsor-slot {
  background: #fff;
  border: 1px solid rgb(2 120 124 / 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 80px;
}
.sponsor-slot.title {
  width: 220px;
  height: 100px;
}
.sponsor-slot-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-mid);
}
.sponsor-tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}
.sponsors-note {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 8px;
}
.contact-section {
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    var(--teal) 60%,
    #014a4d 100%
  );
  padding: 96px 48px;
  text-align: center;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.contact-title .orange {
  color: var(--orange);
}
.contact-sub {
  font-size: 17px;
  color: rgb(255 255 255 / 0.8);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.contact-card {
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  min-width: 190px;
  text-decoration: none;
  color: #fff;
  transition:
    background 0.2s,
    transform 0.2s;
}
.contact-card:hover {
  background: rgb(255 255 255 / 0.18);
  transform: translateY(-3px);
}
.contact-card-icon {
  font-size: 30px;
  color: #fff;
  margin-bottom: 8px;
}
.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.7);
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 15px;
  font-weight: 700;
}
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.contact-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgb(255 120 0 / 0.5);
}
footer {
  background: var(--teal-dark);
  padding: 44px 48px;
  border-top: 1px solid rgb(255 255 255 / 0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  height: 48px;
  width: auto;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  color: rgb(255 255 255 / 0.55);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-copy {
  font-size: 12px;
  color: rgb(255 255 255 / 0.35);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
  }
  .nav-links,
  .btn-daftar {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 100px 24px 64px;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .categories-grid,
  .reg-grid {
    grid-template-columns: 1fr;
  }
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 24px;
  }
  .section-alt .section-inner {
    padding: 64px 24px;
  }
  .countdown-strip {
    gap: 20px;
    padding: 18px 20px;
  }
  .contact-section {
    padding: 72px 24px;
  }
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
  footer {
    padding: 36px 24px;
  }
  .ig-cta-section {
    padding: 56px 24px;
  }
}
@media (max-width: 540px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 90px 20px 60px;
  }
  .hero-title {
    font-size: clamp(38px, 11vw, 52px);
    word-break: break-word;
  }
  .hero-eyebrow span {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-meta {
    gap: 16px;
  }
  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 13px;
  }
  .about-stats {
    gap: 24px;
  }
  .stat-item {
    min-width: 70px;
    max-width: 90px;
  }
}
