        :root {
            --blue-dark: #06264f;
            --blue: #0b5ed7;
            --blue-light: #eaf3ff;
            --yellow: #ffd43b;
            --yellow-dark: #f2b705;
            --white: #ffffff;
            --text: #1f2937;
            --muted: #667085;
            --shadow: 0 18px 45px rgba(6, 38, 79, 0.16);
            --radius-lg: 28px;
            --radius-md: 18px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 45%, #f7fbff 100%);
            overflow-x: hidden;
        }

        a {
            color: inherit;
        }

        .camp-page {
            position: relative;
            overflow: hidden;
        }

        .camp-page::before,
        .camp-page::after {
            content: "";
            position: absolute;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: rgba(255, 212, 59, 0.22);
            filter: blur(3px);
            z-index: 0;
        }

        .camp-page::before {
            top: 140px;
            right: -160px;
        }

        .camp-page::after {
            bottom: 280px;
            left: -180px;
            background: rgba(11, 94, 215, 0.12);
        }

        .section-wrap {
            position: relative;
            z-index: 1;
            width: min(1180px, calc(100% - 32px));
            margin: 0 auto;
        }

        .hero {
            position: relative;
            min-height: 680px;
            padding: 86px 0 70px;
            background:
                linear-gradient(120deg, rgba(6, 38, 79, 0.92), rgba(11, 94, 215, 0.72)),
                url('./images/plagat82.png') center/cover no-repeat;
            color: var(--white);
            border-bottom-left-radius: 42px;
            border-bottom-right-radius: 42px;
            overflow: hidden;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto -10% -90px -10%;
            height: 190px;
            background: var(--yellow);
            transform: rotate(-2deg);
            opacity: 0.94;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 42px;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            border-radius: 999px;
            background: rgba(255, 212, 59, 0.18);
            border: 1px solid rgba(255, 212, 59, 0.48);
            color: #fff6c7;
            font-weight: 700;
            letter-spacing: 0.3px;
            margin-bottom: 22px;
        }

        .eyebrow span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--yellow);
            box-shadow: 0 0 0 8px rgba(255, 212, 59, 0.16);
        }

        .hero h1 {
            font-size: clamp(42px, 7vw, 86px);
            line-height: 0.95;
            font-weight: 900;
            margin: 0 0 22px;
            letter-spacing: -2.5px;
        }

        .hero h1 strong {
            color: var(--yellow);
        }

        .hero-lead {
            font-size: clamp(17px, 2vw, 22px);
            line-height: 1.7;
            max-width: 680px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .btn-camp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 999px;
            padding: 15px 24px;
            font-weight: 800;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .btn-camp:hover {
            transform: translateY(-3px);
            text-decoration: none;
        }

        .btn-primary-camp {
            color: var(--blue-dark);
            background: var(--yellow);
            box-shadow: 0 16px 30px rgba(255, 212, 59, 0.28);
        }

        .btn-primary-camp:hover {
            color: var(--blue-dark);
            background: #ffe169;
        }

        .btn-secondary-camp {
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.42);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
        }

        .btn-secondary-camp:hover {
            color: var(--white);
            background: rgba(255, 255, 255, 0.16);
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: var(--radius-lg);
            padding: 26px;
            backdrop-filter: blur(18px);
            box-shadow: var(--shadow);
        }

        .hero-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 22px;
            margin-bottom: 18px;
            background: rgba(255,255,255,0.15);
        }

        .date-box {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .date-item {
            padding: 18px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.16);
        }

        .date-item small {
            display: block;
            color: rgba(255,255,255,0.7);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .date-item b {
            display: block;
            color: var(--yellow);
            font-size: 22px;
            line-height: 1.2;
        }

        .section {
            padding: 84px 0;
        }

        .section-title {
            max-width: 760px;
            margin-bottom: 34px;
        }

        .section-kicker {
            display: inline-block;
            color: var(--blue);
            background: var(--blue-light);
            padding: 8px 14px;
            border-radius: 999px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .section-title h2 {
            font-size: clamp(30px, 4vw, 52px);
            font-weight: 900;
            color: var(--blue-dark);
            letter-spacing: -1.2px;
            margin-bottom: 14px;
        }

        .section-title p {
            color: var(--muted);
            font-size: 18px;
            line-height: 1.75;
            margin: 0;
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .info-card,
        .activity-card,
        .price-card,
        .bring-card,
        .contact-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border: 1px solid rgba(11, 94, 215, 0.08);
        }

        .info-card {
            padding: 28px;
        }

        .info-card .icon,
        .activity-card .icon {
            width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--blue), var(--blue-dark));
            color: var(--yellow);
            font-size: 25px;
            margin-bottom: 18px;
        }

        .info-card h3,
        .activity-card h3 {
            color: var(--blue-dark);
            font-weight: 900;
            margin-bottom: 10px;
        }

        .info-card p,
        .activity-card p {
            color: var(--muted);
            line-height: 1.7;
            margin: 0;
        }

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

        .activity-card {
            padding: 26px;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .activity-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 24px 55px rgba(6, 38, 79, 0.22);
        }

        .price-section {
            background: linear-gradient(135deg, var(--blue-dark), var(--blue));
            color: var(--white);
            border-radius: 42px;
            padding: 64px 0;
            margin: 30px auto;
            width: min(1220px, calc(100% - 24px));
        }

        .price-section .section-title h2,
        .price-section .section-title p {
            color: var(--white);
        }

        .price-section .section-kicker {
            background: rgba(255, 212, 59, 0.18);
            color: var(--yellow);
        }

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

        .price-card {
            padding: 30px;
            color: var(--text);
            position: relative;
            overflow: hidden;
        }

        .price-card.highlight {
            border: 3px solid var(--yellow);
            transform: translateY(-8px);
        }

        .price-badge {
            display: inline-block;
            background: var(--yellow);
            color: var(--blue-dark);
            padding: 7px 12px;
            border-radius: 999px;
            font-weight: 900;
            font-size: 13px;
            margin-bottom: 18px;
        }

        .price-card h3 {
            color: var(--blue-dark);
            font-weight: 900;
            margin-bottom: 12px;
        }

        .price {
            font-size: 48px;
            font-weight: 900;
            color: var(--blue);
            margin-bottom: 10px;
        }

        .price small {
            font-size: 16px;
            color: var(--muted);
            font-weight: 700;
        }

        .included {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 9px 13px;
    background: linear-gradient(135deg, #FFD43B, #FFB800);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255, 180, 0, 0.4);
}

        .bring-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 28px;
            align-items: start;
        }

        .bring-card {
            padding: 32px;
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 14px;
        }

        .check-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: var(--text);
            font-weight: 600;
        }

        .check-list li::before {
            content: "✓";
            flex: 0 0 28px;
            height: 28px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--yellow);
            color: var(--blue-dark);
            font-weight: 900;
        }

        .note-box {
            padding: 28px;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, rgba(255, 212, 59, 0.32), rgba(11, 94, 215, 0.12));
            border: 1px solid rgba(11, 94, 215, 0.12);
        }

        .note-box h3 {
            color: var(--blue-dark);
            font-weight: 900;
            margin-bottom: 12px;
        }

        .note-box p {
            color: var(--muted);
            line-height: 1.7;
            margin: 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr;
            grid-auto-rows: 240px;
            gap: 16px;
        }

        .gallery-item {
            position: relative;
            border-radius: 26px;
            overflow: hidden;
            background: var(--blue-light);
            box-shadow: var(--shadow);
        }

        .gallery-item.large {
            grid-row: span 2;
        }

        .gallery-item img,
        .gallery-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img,
        .gallery-item:hover video {
            transform: scale(1.05);
        }

        .gallery-label {
            position: absolute;
            left: 16px;
            bottom: 16px;
            padding: 9px 13px;
            border-radius: 999px;
            background: rgba(6, 38, 79, 0.78);
            color: var(--white);
            font-weight: 800;
            font-size: 14px;
            backdrop-filter: blur(10px);
        }

        .video-placeholder {
            height: 100%;
            display: grid;
            place-items: center;
            text-align: center;
            padding: 24px;
            color: var(--white);
            background: linear-gradient(135deg, var(--blue-dark), var(--blue));
        }

        .video-placeholder .play {
            width: 74px;
            height: 74px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--yellow);
            color: var(--blue-dark);
            font-size: 32px;
            font-weight: 900;
            margin: 0 auto 16px;
        }

        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            align-items: stretch;
        }

        .contact-card {
            padding: 34px;
        }

        .contact-card h2 {
            color: var(--blue-dark);
            font-weight: 900;
            margin-bottom: 14px;
        }

        .contact-card p {
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .contact-links {
            display: grid;
            gap: 14px;
        }

        .contact-links a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding: 15px 16px;
            border-radius: 18px;
            background: var(--blue-light);
            color: var(--blue-dark);
            font-weight: 800;
            text-decoration: none;
            transition: transform 0.25s ease, background 0.25s ease;
        }

        .contact-links a:hover {
            transform: translateX(5px);
            background: rgba(255, 212, 59, 0.32);
            text-decoration: none;
            color: var(--blue-dark);
        }

        .poster-card {
            min-height: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
            background: var(--blue-light);
        }

        .poster-card img {
            width: 100%;
            height: 100%;
            min-height: 430px;
            object-fit: cover;
            display: block;
        }

        .reveal {
            opacity: 0;
            transform: translateY(34px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 992px) {
            .hero-grid,
            .bring-grid,
            .contact-wrap {
                grid-template-columns: 1fr;
            }

            .info-cards,
            .activities-grid,
            .price-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .price-card.highlight {
                transform: none;
            }

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

            .gallery-item.large {
                grid-row: span 1;
            }
        }

        @media (max-width: 640px) {
            .hero {
                min-height: auto;
                padding: 58px 0 64px;
                border-bottom-left-radius: 28px;
                border-bottom-right-radius: 28px;
            }

            .hero h1 {
                letter-spacing: -1.3px;
            }

            .hero-card img {
                height: 210px;
            }

            .date-box,
            .info-cards,
            .activities-grid,
            .price-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-auto-rows: 230px;
            }

            .section {
                padding: 58px 0;
            }

            .price-section {
                border-radius: 28px;
            }
        }