@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');
:root {
    --bg: #f4f8f7;
    --surface: #ffffff;
    --surface-soft: #f7fbfa;
    --text: #173b39;
    --muted: #5d6f6e;
    --primary: #0a7e7f;
    --primary-dark: #075f60;
    --accent: #f6c90e;
    --accent-dark: #e5b400;
    --green: #0f6a35;
    --border: #dcebe8;
    --danger: #d73c3c;
    --success: #1f9d5d;
    --warning: #e09a00;
    --radius: 22px;
    --radius-lg: 28px;
    --shadow: 0 16px 40px rgba(7, 82, 82, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
    font-weight: 400;
    letter-spacing: -.01em;
    color: var(--text);
    background: linear-gradient(180deg, #f8fcfb 0%, #eef7f4 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1280px, calc(100% - 32px)); margin: 0 auto; }
.eyebrow { display: inline-block; font-size: .85rem; font-weight: 800; letter-spacing: .03em; color: var(--primary); background: #dff6f6; padding: 7px 12px; border-radius: 999px; }
.muted { color: var(--muted); }
.price { font-size: 1.7rem; font-weight: 900; color: var(--green); }
.note { background: #fff8de; border: 1px solid #f8e099; color: #845c00; padding: 16px 18px; border-radius: 18px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; font-size: .82rem; font-weight: 800; }
.badge.primary { background: #dbf7f7; color: var(--primary); }
.badge.success { background: #dcf8e7; color: #177143; }
.badge.warning { background: #fff0cb; color: #9a6a00; }
.alert { padding: 15px 18px; border-radius: 18px; margin: 16px auto; font-weight: 700; }
.alert.success { background: #dcf8e7; color: #155b35; }
.alert.error { background: #ffe3e3; color: #9f1e1e; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    transition: transform .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #234019; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: #fff; color: var(--primary); border: 1px solid #bfdedb; }
.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-warning { background: var(--warning); color: #fff; }
.btn-pill { border-radius: 999px; }
.inline-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.grid { display: grid; gap: 18px; }
.card, .form-card, .detail-box, .table-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.card-body, .detail-body { padding: 22px; }
.section { padding: 34px 0; }
.section-head, .page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.page-head h1, .section-head h2 { margin: 6px 0 0; }
.page-head-tight { margin-bottom: 22px; }
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.main-nav a {
    font-weight: 700;
    color: #233d3b;
    padding: 10px 6px;
    position: relative;
}
.main-nav a.active,
.main-nav a:hover { color: var(--primary); }
.main-nav a.active::after,
.main-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 16px 0 10px;
    background: linear-gradient(180deg, rgba(244,248,247,.96), rgba(244,248,247,.86));
    backdrop-filter: blur(10px);
}
.nav-shell {
    background: rgba(255,255,255,.96);
    border: 1px solid #d5ebe8;
    box-shadow: 0 14px 36px rgba(10, 74, 74, .08);
    border-radius: 24px;
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 10px 20px;
}
.brand-row { display: flex; align-items: center; gap: 12px; }
.brand-row img { width: 88px; height: 88px; object-fit: contain; }
.brand-row strong { display: block; font-size: 1.15rem; }
.brand-row small { color: var(--muted); }
.hero-home {
    padding: 10px 0 0;
}
.hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid #d6ece8;
    background: linear-gradient(135deg, #dff8fb 0%, #f4fffa 55%, #ffffff 100%);
    box-shadow: var(--shadow);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .95fr .9fr;
    gap: 0;
    align-items: stretch;
}
.hero-copy {
    padding: 48px 30px 36px 36px;
    position: relative;
    z-index: 2;
}
.hero-copy h1 {
    font-size: clamp(2.2rem, 3vw, 4rem);
    line-height: 1.08;
    margin: 16px 0 14px;
}
.hero-copy p { font-size: 1.08rem; color: #375654; max-width: 580px; }
.icon-points { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.icon-point { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.78); border: 1px solid #dcebe8; border-radius: 999px; padding: 10px 14px; }
.icon-ball { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 1.1rem; background: #f8d63a; }
.icon-ball.green { background: #cbeed8; }
.icon-ball.teal { background: #dff6f6; }
.hero-visual {
    min-height: 490px;
    background:
        radial-gradient(circle at 75% 18%, rgba(255,221,0,.95) 0 56px, transparent 57px),
        radial-gradient(circle at 26% 64%, rgba(255,79,79,.10) 0 140px, transparent 141px),
        linear-gradient(180deg, rgba(22,164,193,.18), rgba(7,131,133,.16)),
        url('../images/homepage-reference.png') center/cover no-repeat;
    position: relative;
}
.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.15), transparent 35%, rgba(255,255,255,.10) 100%);
}
.booking-card {
    margin: 24px;
    padding: 22px;
    align-self: center;
    background: rgba(255,255,255,.97);
    border: 1px solid #dcebe8;
    border-radius: 26px;
    box-shadow: 0 16px 34px rgba(4, 71, 71, .12);
    position: relative;
    z-index: 2;
}
.booking-card h3 { margin: 4px 0 6px; font-size: 1.65rem; }
.booking-card .muted { margin-bottom: 18px; }
.booking-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #2a4846; }
input, select, textarea {
    width: 100%;
    border: 1px solid #cfe4e1;
    border-radius: 14px;
    padding: 13px 14px;
    font-size: 1rem;
    color: var(--text);
    background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.ticket-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}
.ticket-card { overflow: hidden; }
.ticket-card .thumb-icon {
    height: 140px;
    display: grid;
    place-items: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #dcf8f6, #fff6d7);
}
.ticket-card .card-body h3 { margin: 4px 0 10px; }
.ticket-card .card-body p { margin: 0 0 12px; }
.facility-panel {
    background: #f6fbfa;
    border: 1px solid #dcebe8;
    border-radius: var(--radius);
    padding: 18px;
}
.facility-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 14px;
}
.facility-item {
    background: #fff;
    border: 1px solid #dcebe8;
    border-radius: 18px;
    text-align: center;
    padding: 16px 10px;
}
.facility-item span { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.info-split, .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; }
.steps-card, .promo-card, .review-wrap { padding: 22px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.step { text-align: left; }
.step .num { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #e4f8f2; color: var(--green); font-weight: 900; margin-bottom: 10px; }
.promo-card {
    background: linear-gradient(135deg, #0a8a8b 0%, #0f6a35 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.promo-card::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 208, 0, .22);
}
.promo-card .coupon { display: inline-block; padding: 10px 14px; border: 1px dashed rgba(255,255,255,.6); border-radius: 14px; margin: 14px 0; }
.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.review-card { background: #fff; border: 1px solid #dcebe8; border-radius: 18px; padding: 16px; }
.review-card strong { display: block; margin-bottom: 6px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.gallery-item {
    height: 180px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dcebe8;
    background: linear-gradient(135deg, rgba(10,126,127,.1), rgba(246,201,14,.22)), url('../images/homepage-reference.png') center/cover;
}
.stats-band { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.stat-box { padding: 22px; text-align: center; }
.stat-box strong { display: block; font-size: 2rem; color: var(--primary); margin-bottom: 6px; }
.event-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.event-thumb { aspect-ratio: 16/10; object-fit: cover; background: linear-gradient(135deg, #dbf8f6, #fff5d4); }
.search-bar { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.metric-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.metric { background: #f7fbfa; padding: 16px; border-radius: 18px; border: 1px solid #dcebe8; }
.metric small { display: block; color: var(--muted); margin-bottom: 4px; }
.ticket-box {
    background: linear-gradient(135deg, #eefcf8 0%, #ffffff 100%);
    border: 1px dashed #7cc4bf;
    border-radius: 28px;
    padding: 28px;
}
.ticket-code {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: .05em;
    color: var(--primary-dark);
}
.ticket-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px; text-align: left; border-bottom: 1px solid #e2f0ee; }
th { background: #f4fbfa; font-size: .92rem; color: #466260; }
.site-footer {
    margin-top: 40px;
    background: linear-gradient(180deg, #08686a 0%, #0d5e30 100%);
    color: #eef9f7;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr .8fr;
    gap: 24px;
    padding: 34px 0 24px;
}
.footer-logo { width: 110px; margin-bottom: 12px; }
.footer-col h4 { margin: 0 0 12px; }
.footer-col a, .footer-col p, .footer-brand-block p { display: block; color: rgba(255,255,255,.9); margin: 0 0 10px; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-row span { border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 8px 12px; font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 14px 0; }
.footer-bottom-row { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .92rem; }
.admin-body { background: #edf6f5; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 290px 1fr; }
.sidebar {
    background: linear-gradient(180deg, #0a6769 0%, #0f6a35 100%);
    color: #fff;
    padding: 24px 18px;
    position: sticky;
    top: 0;
    height: 100vh;
}
.sidebar-brand { display: flex; align-items: center; gap: 12px; color: #fff; margin-bottom: 20px; }
.sidebar-brand img { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,.14); padding: 4px; }
.sidebar-brand span { font-weight: 900; }
.sidebar-brand small { display: block; font-weight: 400; opacity: .85; }
.sidebar-nav { display: grid; gap: 8px; }
.sidebar-nav a { color: #e6fffa; padding: 12px 14px; border-radius: 14px; font-weight: 700; }
.sidebar-nav a:hover { background: rgba(255,255,255,.12); }
.sidebar-user { margin-top: 20px; background: rgba(255,255,255,.12); border-radius: 16px; padding: 14px; }
.sidebar-user span { display: block; opacity: .9; font-size: .92rem; margin-top: 4px; }
.admin-main { padding: 26px; }
.login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: radial-gradient(circle at top, #dff6f6, #f6fbfa 60%);
}
.login-card {
    width: min(520px, 100%);
    padding: 26px;
    background: #fff;
    border-radius: 28px;
    border: 1px solid #dcebe8;
    box-shadow: var(--shadow);
}
.login-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.login-brand img { width: 86px; }
.dashboard-kpis { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin-bottom: 22px; }
.kpi-card { padding: 22px; }
.kpi-card strong { display: block; font-size: 2rem; color: var(--primary); margin-top: 8px; }
@media (max-width: 1180px) {
    .hero-grid { grid-template-columns: 1fr; }
    .booking-card { margin-top: 0; }
    .ticket-grid-cards, .facility-grid, .steps-grid, .gallery-grid, .stats-band, .dashboard-kpis { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .info-split, .split, .footer-main, .admin-shell { grid-template-columns: 1fr; }
    .sidebar { position: relative; height: auto; }
}
@media (max-width: 760px) {
    .nav-shell { grid-template-columns: 1fr; text-align: center; }
    .brand-row { justify-content: center; }
    .main-nav { justify-content: center; }
    .nav-cta { display: flex; justify-content: center; }
    .form-grid, .booking-row, .metric-row, .ticket-grid, .review-grid, .search-bar { grid-template-columns: 1fr; }
    .ticket-grid-cards, .facility-grid, .steps-grid, .gallery-grid, .stats-band, .dashboard-kpis { grid-template-columns: 1fr; }
    .hero-copy { padding: 32px 20px; }
    .hero-visual { min-height: 280px; }
    .booking-card { margin: 18px; }
    .footer-bottom-row { flex-direction: column; }
}

.page-hero { padding: 26px 0 10px; }
.page-hero .container { background: linear-gradient(135deg, #dff8fb 0%, #f7fffb 70%, #ffffff 100%); border:1px solid #d6ece8; border-radius:30px; box-shadow: var(--shadow); padding: 34px 34px 26px; }
.page-hero.compact h1 { margin: 14px 0 8px; font-size: clamp(2rem, 2.6vw, 3.1rem); }
.promo-hero .container { background: linear-gradient(135deg, #0a7e7f 0%, #0f6a35 100%); color:#fff; }
.promo-hero .muted { color: rgba(255,255,255,.9); }
.facility-grid.large { grid-template-columns: repeat(3, minmax(0,1fr)); }
.facility-grid.large .facility-item { min-height: 150px; align-items: flex-start; justify-content: flex-start; flex-direction: column; border-radius: 24px; }
.facility-grid.large .facility-item span { font-size: 2rem; }
.facility-grid.large .facility-item strong { font-size: 1.05rem; }
.facility-grid.large .facility-item small { color: var(--muted); line-height: 1.5; }
.promo-grid-3 { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.promo-tile { min-height: 240px; }
.promo-tile.alt { background: linear-gradient(135deg, #0a7e7f 0%, #178fa0 100%); }
.promo-tile.green { background: linear-gradient(135deg, #0f6a35 0%, #1f9d5d 100%); }
.gallery-grid.real { grid-template-columns: repeat(4, minmax(0,1fr)); }
.gallery-photo { overflow:hidden; position:relative; }
.gallery-photo img { width:100%; height:240px; object-fit:cover; }
.gallery-caption { position:absolute; left:0; right:0; bottom:0; padding:12px 14px; color:#fff; font-weight:800; background: linear-gradient(180deg, transparent, rgba(0,0,0,.55)); }
.gallery-item.tall { min-height: 360px; }
.faq-list { display:grid; gap:14px; margin-top:18px; }
.faq-item { padding:16px 18px; background:#f8fcfb; border:1px solid var(--border); border-radius:18px; }
.info-box-side, .side-photo-panel { padding: 24px; }
.contact-list { display:grid; gap:14px; margin-top: 10px; }
.contact-item { padding:16px 18px; border:1px solid var(--border); border-radius:18px; background:#f8fcfb; }
.contact-item p { margin:8px 0 0; color:var(--muted); }
@media (max-width: 1024px) {
  .promo-grid-3, .facility-grid.large, .gallery-grid.real { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .promo-grid-3, .facility-grid.large, .gallery-grid.real { grid-template-columns: 1fr; }
}


/* --- Homepage v4 closer to design mockup --- */
body { background: #eef3f1; }
.site-header { padding: 10px 0 0; background: transparent; }
.nav-shell {
    min-height: 74px;
    border-radius: 22px 22px 0 0;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 10px 18px;
}
.brand-row { gap: 0; }
.brand-row img { width: 78px; height: 78px; }
.main-nav { gap: 10px 24px; }
.main-nav a { font-size: 1rem; font-weight: 700; }
.btn.btn-primary.btn-pill { background: #0b6f6d; color: #fff4b8; padding: 12px 24px; }
.btn.btn-primary.btn-pill:hover { background: #0a5f5e; }
.home-main { padding: 0 0 20px; }
.home-shell { display: grid; gap: 0; }
.home-hero-card {
    background: #fff;
    border: 1px solid #d8e5e2;
    border-top: 0;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,.05);
}
.home-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.1fr .72fr;
    min-height: 420px;
}
.home-copy {
    padding: 44px 28px 28px 34px;
    background: linear-gradient(180deg,#eaf6f4 0%,#eff7f5 100%);
}
.home-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(2.15rem, 3.5vw, 4.1rem);
    line-height: 1.08;
    color: #12655e;
    font-weight: 900;
}
.home-copy p {
    font-size: 1.08rem;
    line-height: 1.6;
    color: #375654;
    max-width: 460px;
    margin: 0;
}
.home-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.home-feature-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
}
.home-feature-chip strong, .home-feature-chip small { display: block; }
.home-feature-chip strong { font-size: .95rem; color: #244c4a; }
.home-feature-chip small { font-size: .86rem; color: #3f6764; }
.chip-icon {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    font-size: 1.15rem; border: 2px solid rgba(0,0,0,.06);
}
.chip-icon.yellow { background: #f5c919; }
.chip-icon.green { background: #53b36f; color: #fff; }
.chip-icon.teal { background: #2aa7a2; color: #fff; }
.home-visual {
    position: relative;
    background:
      linear-gradient(180deg, rgba(95, 210, 230, .28), rgba(95, 210, 230, .12)),
      url('../images/homepage-reference.png') center center/cover no-repeat;
    overflow: hidden;
}
.home-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,255,255,0) 28%, rgba(255,255,255,0) 72%, rgba(255,255,255,.10));
}
.hero-sun {
    position: absolute; width: 96px; height: 96px; border-radius: 50%; background: #f2e500; top: 28px; left: 50%; transform: translateX(-40%);
    box-shadow: 0 0 0 8px rgba(255,255,255,.15);
}
.hero-rainbow {
    position: absolute; left: 70px; right: 90px; bottom: 10px; top: 100px;
    border-radius: 999px 999px 0 0;
    border: 16px solid transparent;
    border-top: 0;
    background: conic-gradient(from 210deg at 50% 100%, #65c6ef 0 14%, #1d8ddd 14% 24%, #1a8f1a 24% 34%, #f4dc13 34% 44%, #e22a2a 44% 54%, transparent 54% 100%);
    opacity: .75;
    -webkit-mask: radial-gradient(circle at 50% 100%, transparent 0 44%, #000 45%);
            mask: radial-gradient(circle at 50% 100%, transparent 0 44%, #000 45%);
}
.hero-sign {
    position: absolute; right: 80px; top: 118px; background: rgba(11,111,109,.88); color: #fff; font-weight: 900; font-size: .9rem;
    border-radius: 10px; padding: 10px 14px; line-height: 1.05; text-align: center; box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
.home-booking-card {
    background: #f8f8f7;
    padding: 18px;
    border-left: 1px solid #dde9e6;
}
.home-booking-head h3 {
    margin: 0 0 6px; font-size: 1.9rem; color: #244645;
}
.home-booking-head p { margin: 0 0 18px; color: #667775; }
.booking-field { margin-bottom: 16px; }
.booking-field label { display: block; font-size: .95rem; font-weight: 800; margin-bottom: 8px; }
.booking-select {
    border: 1px solid #d5dfdd; background: #fff; border-radius: 14px; padding: 14px 14px; color: #4a5c5a; font-weight: 700;
}
.booking-counter-list { background: #fff; border: 1px solid #dbe6e3; border-radius: 18px; padding: 10px 12px; }
.booking-counter-row {
    display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 4px; border-bottom: 1px solid #edf2f1;
}
.booking-counter-row:last-child { border-bottom: 0; }
.booking-counter-row strong, .booking-counter-row small { display: block; }
.booking-counter-row small { color: #6e8080; }
.booking-counter-ui { display: flex; align-items: center; gap: 10px; }
.booking-counter-ui span {
    width: 28px; height: 28px; border-radius: 50%; background: #f2f3f3; display: grid; place-items: center; font-weight: 900; color: #50615f;
}
.booking-counter-ui b { min-width: 14px; text-align: center; font-size: 1.05rem; }
.home-book-btn {
    width: 100%; margin-top: 8px; background: #f3c617; color: #20423c; border-radius: 14px; font-size: 1rem;
}
.home-book-safe {
    margin-top: 12px; text-align: center; font-size: .92rem; color: #5e706d;
}
.home-row-tickets {
    display: grid;
    grid-template-columns: 2.15fr .95fr;
    gap: 14px;
    margin-top: 14px;
}
.home-ticket-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.home-ticket-card, .home-facility-panel, .home-how-card, .home-review-panel {
    background: #fff;
    border: 1px solid #d8e5e2;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,.04);
}
.home-ticket-card { overflow: hidden; display: grid; grid-template-columns: 126px 1fr; min-height: 150px; }
.home-ticket-thumb {
    width: 100%; height: 100%; object-fit: cover; background: linear-gradient(135deg,#c8f4f0,#f7e998);
}
.home-ticket-thumb.icon-only { display: grid; place-items: center; font-size: 3rem; }
.home-ticket-body { padding: 16px 16px 14px; position: relative; }
.home-ticket-body h3 { margin: 0 0 6px; font-size: 1.15rem; }
.home-ticket-body p { margin: 0 0 12px; color: #6a7b79; font-size: .95rem; line-height: 1.45; }
.home-ticket-price { font-size: 1.18rem; font-weight: 900; color: #13856c; margin-bottom: 12px; }
.home-ticket-price small { font-weight: 700; font-size: .9rem; color: #416662; }
.home-ticket-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #f3c617; color: #27493c; padding: 10px 16px; border-radius: 14px; font-weight: 800;
}
.home-mini-badge {
    position: absolute; right: 12px; top: 12px; font-size: .75rem; font-weight: 900; padding: 6px 10px; border-radius: 999px; color: #fff;
}
.home-mini-badge.blue { background: #4b80ec; }
.home-mini-badge.green { background: #20a152; }
.home-facility-panel { padding: 16px; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 14px; }
.panel-head h3 { margin: 0; font-size: 1.2rem; }
.panel-head a { color: #52706d; font-weight: 700; }
.home-facility-grid {
    display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px;
}
.home-facility-item {
    min-height: 110px; border: 1px solid #e0ebea; background: #fbfcfc; border-radius: 16px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 12px 6px; text-align: center;
}
.home-facility-item span { font-size: 1.65rem; margin-bottom: 8px; }
.home-facility-item strong { font-size: .83rem; line-height: 1.3; color: #2f4f4d; font-weight: 800; }
.home-info-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1.18fr 1.35fr .95fr;
    gap: 14px;
    align-items: stretch;
}
.home-how-card { padding: 16px 18px; }
.home-how-card h3 { margin: 0 0 14px; font-size: 1.25rem; }
.home-step-list { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.home-step-item {
    position: relative; padding-right: 8px;
}
.home-step-item span {
    width: 34px; height: 34px; border-radius: 50%; background: #e8f3df; display: grid; place-items: center; font-weight: 900; color: #346543; margin-bottom: 10px; border: 1px solid #c6ddbc;
}
.home-step-item strong { display: block; font-size: .92rem; line-height: 1.3; margin-bottom: 6px; }
.home-step-item small { color: #687a77; line-height: 1.35; font-size: .82rem; }
.home-promo-banner {
    overflow: hidden; position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 0;
    background: linear-gradient(135deg, #0e8a8a 0%, #0d6b5b 70%);
    color: #fff; border-radius: 18px; border: 1px solid rgba(0,0,0,.06);
}
.home-promo-copy { padding: 20px 22px; position: relative; z-index: 2; }
.home-promo-copy small { font-size: 1rem; font-weight: 800; display: block; margin-bottom: 8px; }
.home-promo-copy h3 { font-size: 3.1rem; line-height: 1; margin: 0 0 8px; color: #ffde33; }
.home-promo-copy p { margin: 0 0 14px; }
.promo-code-box {
    display: inline-block; padding: 10px 14px; background: rgba(255,255,255,.08); border: 1px dashed rgba(255,255,255,.45); border-radius: 14px; margin-bottom: 14px;
}
.home-promo-visual {
    position: relative; min-height: 185px;
    background: radial-gradient(circle at 65% 40%, rgba(255,214,0,.85) 0 28%, transparent 29%),
                radial-gradient(circle at 75% 55%, rgba(255,214,0,.92) 0 10%, transparent 11%),
                radial-gradient(circle at 68% 68%, #f4c81a 0 18%, #2220 19%),
                url('../images/homepage-reference.png') 72% center/cover no-repeat;
}
.home-review-panel { padding: 16px; }
.home-review-card {
    border: 1px solid #e0ebea; border-radius: 16px; padding: 14px; background: #fff; margin-bottom: 12px;
}
.home-review-card strong { display: block; font-size: 1rem; }
.home-review-card p { margin: 8px 0 0; color: #637573; line-height: 1.45; }
.stars { color: #f4c617; letter-spacing: 2px; margin-top: 6px; font-size: 1rem; }
.home-review-dots { display: flex; justify-content: center; gap: 8px; padding-top: 4px; }
.home-review-dots span { width: 9px; height: 9px; border-radius: 50%; background: #c6d4d2; }
.home-review-dots span.active { background: #0b6f6d; }
.site-footer {
    margin-top: 0; border-radius: 0 0 18px 18px; overflow: hidden;
}
.footer-main-home {
    grid-template-columns: 1.2fr .75fr .85fr .85fr 1fr;
    gap: 18px;
    padding: 24px 24px 16px;
}
.footer-main-home .footer-logo { width: 92px; margin-bottom: 8px; }
.icon-socials span {
    width: 34px; height: 34px; display: grid; place-items: center; padding: 0; font-weight: 800;
}
.footer-newsletter p { margin-bottom: 12px; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter-form input {
    background: rgba(255,255,255,.94); border: 0; border-radius: 12px; padding: 12px 14px;
}
.newsletter-form .btn { padding: 12px 16px; }
.footer-bottom { padding: 10px 24px; }
.footer-bottom-row { justify-content: center; }

@media (max-width: 1300px) {
    .home-row-tickets, .home-info-row, .footer-main-home { grid-template-columns: 1fr; }
    .home-ticket-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .home-facility-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
    .home-step-list { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (max-width: 1100px) {
    .home-hero-grid { grid-template-columns: 1fr; }
    .home-booking-card { border-left: 0; border-top: 1px solid #dde9e6; }
    .home-visual { min-height: 340px; }
    .home-ticket-list { grid-template-columns: 1fr; }
    .home-facility-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 760px) {
    .nav-shell { grid-template-columns: 1fr; justify-items: center; border-radius: 18px 18px 0 0; }
    .main-nav { gap: 8px 14px; }
    .main-nav a { font-size: .94rem; }
    .home-copy { padding: 30px 18px 20px; }
    .home-copy h1 { font-size: 2rem; }
    .home-features { gap: 10px; }
    .home-feature-chip { width: 100%; }
    .home-ticket-card { grid-template-columns: 100px 1fr; }
    .home-facility-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .home-step-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .home-promo-banner { grid-template-columns: 1fr; }
    .home-promo-copy h3 { font-size: 2.3rem; }
    .newsletter-form { grid-template-columns: 1fr; }
    .footer-main-home { padding-left: 18px; padding-right: 18px; }
}


/* --- V5 premium lighter typography --- */
body, input, select, textarea, button {
    font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
    font-weight: 300;
    letter-spacing: .01em;
}
h1, h2, h3, h4, h5, h6,
.brand-row strong,
.main-nav a,
.btn,
.home-ticket-price,
.home-booking-head h3,
.panel-head h3,
.home-copy h1,
.home-ticket-body h3,
.footer-col h4,
.ticket-code,
.sidebar-brand span,
.sidebar-nav a,
.page-head h1 {
    letter-spacing: -.02em;
}
.main-nav a { font-weight: 500; }
.home-copy h1 { font-weight: 700; }
.home-copy p,
.home-ticket-body p,
.home-review-card p,
.footer-col p,
.footer-col a,
.footer-brand-block p,
.booking-field label,
.booking-counter-row small,
.home-booking-head p,
.muted,
small {
    font-weight: 300;
}
.brand-row strong { font-weight: 600; }
.btn { font-weight: 600; }
.home-ticket-price { font-weight: 700; }
.home-ticket-price small { font-weight: 400; }
.home-ticket-body h3,
.panel-head h3,
.home-how-card h3,
.footer-col h4,
.home-booking-head h3,
.review-card strong,
.home-review-card strong { font-weight: 600; }
.home-mini-badge,
.badge,
.eyebrow,
.home-step-item strong,
.booking-counter-row strong,
label,
.sidebar-nav a,
.sidebar-brand span,
.page-head h1,
.stat-box strong,
.metric strong,
.ticket-code {
    font-weight: 600;
}
.footer-main-home,
.home-row-tickets,
.home-info-row,
.home-ticket-list,
.home-facility-grid {
    letter-spacing: .005em;
}
.home-feature-chip strong,
.home-facility-item strong,
.home-step-item strong {
    font-weight: 500;
}
.home-feature-chip small,
.home-step-item small,
.footer-bottom-row,
.newsletter-form input::placeholder {
    font-weight: 300;
}
.btn.btn-primary.btn-pill,
.home-book-btn,
.home-ticket-btn {
    font-weight: 600;
}


/* --- Premium thin font refinement v6 --- */
html, body, button, input, select, textarea { font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif; }
body { font-weight: 400; }
p, li, td, th, small, .muted, .footer-col p, .footer-col a, .footer-brand-block p { font-weight: 400; }
h1, h2, h3, h4, h5, h6 { letter-spacing: -.03em; }
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }
.brand-row strong, .sidebar-brand span, .login-brand strong, .ticket-code, .price, .home-ticket-price, .stat-box strong { font-weight: 800; }
.main-nav a, .btn, label, .panel-head a, .home-mini-badge, .badge, .eyebrow { font-weight: 600; }
.btn { letter-spacing: -.01em; }
.page-hero.compact {
    padding: 22px 0 8px;
}
.page-hero.compact .container,
.section .container > .form-card:first-child,
.section .container > .detail-box:first-child {
    position: relative;
}
.page-hero.compact .container {
    background: linear-gradient(135deg,#edf7f6 0%,#ffffff 100%);
    border: 1px solid #d8e5e2;
    border-radius: 22px;
    padding: 26px 28px;
    box-shadow: 0 10px 24px rgba(0,0,0,.04);
}
.page-hero.compact h1 { margin: 10px 0 8px; font-size: clamp(2rem,3vw,3rem); color:#184846; }
.page-hero.compact p { margin:0; max-width:740px; }
.event-grid .card,
.info-box-side,
.form-card,
.detail-box,
.home-ticket-card,
.home-facility-panel,
.home-how-card,
.home-review-panel,
.card { box-shadow: 0 12px 26px rgba(13,74,72,.05); }
.event-grid .card:hover,
.home-ticket-card:hover,
.home-facility-item:hover,
.review-card:hover,
.home-review-card:hover {
    transform: translateY(-2px);
    transition: .18s ease;
}
.event-grid .card-body h3,
.detail-body h1,
.form-card h2,
.info-box-side h3,
.home-how-card h3,
.home-review-panel h3,
.home-facility-panel h3 { color:#203f3e; }
.form-card, .detail-box, .info-box-side { border-radius: 22px; }
.detail-box .event-thumb { border-bottom: 1px solid #e3efec; }
.metric, .kpi, .booking-select, .booking-counter-list, .home-review-card, .review-card, .contact-item {
    background: #fbfdfd;
}
.metric strong, .kpi strong, .contact-item strong { font-weight: 700; color:#234443; }
.contact-list { display:grid; gap:12px; }
.contact-item {
    border:1px solid #dfeae8; border-radius:16px; padding:16px 18px;
}
.contact-item p { margin:6px 0 0; color:#627472; }
.faq-list { display:grid; gap:14px; }
.faq-item {
    border:1px solid #dfeae8; border-radius:16px; padding:16px 18px; background:#fbfdfd;
}
.faq-item strong { display:block; margin-bottom:6px; font-weight:700; }
.info-box-side { padding:22px; display:flex; flex-direction:column; gap:12px; }
.info-box-side .btn { width:100%; }
.form-card form .btn-primary,
.info-box-side .btn-primary,
.detail-body + .form-card .btn-primary,
.ticket-box .btn-primary { min-height: 48px; }
.search-bar input { min-height: 48px; }
.search-bar .btn { min-width: 160px; }
.ticket-grid > div,
.ticket-grid .metric-mini {
    border:1px solid #e1ebea; border-radius:16px; padding:14px 16px; background:#fbfdfd;
}
.ticket-grid small { display:block; color:#6a7c79; margin-bottom:4px; }
.ticket-grid strong { font-weight:700; color:#244342; }
.home-ticket-body h3,
.home-copy h1,
.page-hero.compact h1,
.detail-body h1 { text-wrap: balance; }
.footer-main-home h4, .footer-col h4 { font-weight:700; }
.newsletter-form input::placeholder { color:#7a8a88; }
.newsletter-form .btn { background:#f3c617; color:#25443c; }
@media (max-width: 760px) {
  .page-hero.compact .container { padding:22px 18px; border-radius:18px; }
  .search-bar { grid-template-columns: 1fr; }
  .search-bar .btn { width:100%; }
}


.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #20c45a;
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px 12px 12px;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
    font-weight: 800;
}
.wa-float:hover { background:#16a34a; transform: translateY(-1px); }
.wa-float-icon {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.16);
    display: grid; place-items: center; font-size: 1.15rem; border: 1px solid rgba(255,255,255,.2);
}
.wa-float-text { line-height: 1; }
@media (max-width: 640px) {
    .wa-float { right: 14px; bottom: 14px; padding-right: 12px; }
    .wa-float-text { display:none; }
}

.page-editor-block{margin-top:22px;padding-top:18px;border-top:1px solid #dcebe8}.page-editor-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}.page-editor-head h3{margin:0;}


/* --- v11 homepage more closely matching provided reference --- */
.home-mockup-like { padding: 0 0 8px; }
.home-shell-mockup { gap: 0; }
.site-header { padding-top: 0; }
.site-header .nav-shell {
    background: #ffffff;
    border: 2px solid #1b8b8b20;
    border-bottom: 0;
    box-shadow: 0 8px 24px rgba(6, 62, 63, .06);
    min-height: 76px;
}
.mockup-card-shell {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-top: 0 !important;
}
.home-hero-card {
    background: #fff;
    border: 2px solid #1b8b8b20;
    border-top: 0;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
}
.home-hero-grid {
    grid-template-columns: 1.05fr 1.35fr .9fr;
    min-height: 420px;
}
.home-copy {
    padding: 46px 26px 20px 34px;
    background: linear-gradient(180deg, #f7fcfb 0%, #edf7f6 100%);
}
.home-copy h1 {
    font-size: clamp(2.5rem, 3.6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.04;
    color: #156d66;
    max-width: 520px;
}
.home-copy p {
    font-size: 1.06rem;
    color: #4a6664;
    max-width: 450px;
    margin-top: 14px;
}
.home-features { margin-top: 26px; gap: 14px; }
.home-feature-chip {
    gap: 10px;
    background: transparent;
    padding: 0;
    min-width: 0;
}
.home-feature-chip > div { line-height: 1.15; }
.home-feature-chip strong { font-size: .93rem; font-weight: 700; }
.home-feature-chip small { font-size: .84rem; font-weight: 600; color: #557370; }
.home-visual {
    background:
        linear-gradient(180deg, rgba(120,209,235,.08), rgba(255,255,255,.05)),
        url('../images/homepage-reference.png') center center/cover no-repeat;
    min-height: 420px;
}
.home-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(255,255,255,.06));
}
.hero-sun {
    width: 84px; height: 84px; top: 26px; left: 52%; transform: translateX(-50%);
    background: #f3de13;
    z-index: 1;
}
.hero-rainbow {
    left: 24px; right: 18px; bottom: -6px; top: 98px;
    opacity: .35;
}
.hero-sign {
    top: 126px; right: 92px; font-size: .85rem; z-index: 2; background: rgba(13,120,96,.9);
}
.home-booking-card {
    background: #fcfcfb;
    padding: 18px 18px 16px;
    border-left: 1px solid #e2ece9;
}
.home-booking-head h3 { font-size: 1.55rem; font-weight: 800; margin-bottom: 4px; }
.home-booking-head p { font-size: .96rem; color: #768481; }
.booking-field label {
    font-size: .9rem; font-weight: 800; color: #425756;
}
.booking-select-mockup,
.booking-counter-list {
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.booking-select-mockup {
    font-size: .95rem;
    padding-top: 12px;
    padding-bottom: 12px;
}
.booking-counter-row { padding: 9px 2px; }
.booking-counter-row strong { font-size: .95rem; }
.booking-counter-row small { font-size: .79rem; }
.booking-counter-ui { gap: 12px; }
.booking-counter-ui span {
    width: 26px; height: 26px; font-size: .95rem; background: #f3f3f3;
}
.home-book-btn {
    background: #f3c617;
    color: #1f4039;
    border-radius: 12px;
    font-weight: 800;
    margin-top: 10px;
}
.home-book-safe { font-size: .84rem; }
.home-row-tickets { margin-top: 14px; grid-template-columns: 2.2fr 1fr; }
.home-ticket-list { grid-template-columns: repeat(3, minmax(0,1fr)); }
.home-ticket-card {
    min-height: 150px;
    grid-template-columns: 112px 1fr;
    border-radius: 16px;
}
.home-ticket-thumb { background: linear-gradient(135deg, #dff2ef, #f7ed9e); }
.home-ticket-thumb.icon-only { font-size: 3rem; }
.home-ticket-body { padding: 14px 14px 14px; }
.home-ticket-body h3 { font-size: 1.1rem; font-weight: 800; }
.home-ticket-body p { font-size: .92rem; line-height: 1.42; }
.home-mini-badge { border-radius: 10px; font-size: .7rem; padding: 5px 8px; }
.home-ticket-price { font-size: 1.02rem; }
.home-ticket-btn {
    border-radius: 12px;
    padding: 9px 14px;
    font-size: .9rem;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.05);
}
.home-facility-panel { padding: 16px 16px 14px; }
.home-facility-panel .panel-head h3,
.home-review-panel .panel-head h3,
.home-how-card h3 { font-size: 1.25rem; font-weight: 800; color: #224845; }
.home-facility-grid { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 8px; }
.home-facility-item {
    min-height: 104px;
    border-radius: 14px;
    padding: 10px 6px;
    background: #fbfdfd;
}
.home-facility-item span { font-size: 1.55rem; margin-bottom: 8px; }
.home-facility-item strong { font-size: .82rem; }
.home-info-row {
    margin-top: 14px;
    grid-template-columns: 1.02fr 1.1fr .92fr;
}
.home-how-card, .home-review-panel { padding: 16px; }
.home-step-list { gap: 10px; }
.home-step-item span { width: 32px; height: 32px; font-size: .9rem; }
.home-step-item strong { font-size: .9rem; font-weight: 800; }
.home-step-item small { font-size: .8rem; }
.home-promo-banner {
    min-height: 214px;
    grid-template-columns: 1fr .86fr;
    border-radius: 16px;
}
.home-promo-copy { padding: 18px 18px 14px 20px; }
.home-promo-copy small { font-size: 1rem; }
.home-promo-copy h3 { font-size: 3.2rem; margin: 2px 0 8px; }
.home-promo-copy p { font-size: .96rem; }
.home-promo-visual {
    background:
      radial-gradient(circle at 74% 24%, #f3db19 0 8%, transparent 9%),
      radial-gradient(circle at 78% 42%, #ffd335 0 22%, transparent 23%),
      linear-gradient(180deg, rgba(255,255,255,0) 10%, rgba(255,255,255,.04)),
      url('../images/homepage-reference.png') 70% center/cover no-repeat;
}
.home-review-card { border-radius: 14px; padding: 12px 14px; }
.home-review-card strong { font-size: .95rem; }
.home-review-card p { font-size: .9rem; }
.stars { font-size: .92rem; }
.site-footer {
    margin-top: 0;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}
.footer-main {
    grid-template-columns: 1.25fr .8fr .9fr .9fr 1.15fr;
    gap: 18px;
    padding: 22px 18px 14px;
}
.footer-main.footer-main-home { grid-template-columns: 1.25fr .8fr .9fr .9fr 1.15fr; }
.footer-logo { width: 92px; }
.footer-col h4 { font-size: 1.02rem; font-weight: 800; }
.footer-col a, .footer-col p, .footer-brand-block p { font-size: .92rem; line-height: 1.45; }
.newsletter-form input { min-height: 42px; }
.newsletter-form .btn { min-height: 42px; }
.footer-bottom { padding: 10px 0; }
.footer-bottom-row { justify-content: center; }
@media (max-width: 1280px) {
    .home-hero-grid { grid-template-columns: 1fr; }
    .home-booking-card { border-left: 0; border-top: 1px solid #e2ece9; }
    .home-row-tickets, .home-info-row, .footer-main, .footer-main.footer-main-home { grid-template-columns: 1fr; }
    .home-ticket-list, .home-facility-grid, .home-step-list { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 860px) {
    .home-ticket-list, .home-facility-grid, .home-step-list { grid-template-columns: 1fr; }
    .home-promo-banner { grid-template-columns: 1fr; }
    .home-promo-copy h3 { font-size: 2.4rem; }
}
