/* IMPORT FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* LEFT */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 32px;   /* sebelumnya 40px */
    object-fit: contain;
}

/* CENTER MENU */
.navbar-center {
    display: flex;
    gap: 32px;
}

.navbar-center a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 500;
}

.navbar-center a:hover {
    color: #0d6efd;
}

/* RIGHT */
.navbar-right {
    display: flex;
    align-items: center;
}

.btn-register {
    background: #28a745;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease;
}

.btn-register:hover {
    background: #218838;
}

/* =====================
   GLOBAL SECTION STYLE
===================== */

.section-hero {
    min-height: 100vh;
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.section {
    padding: 100px 80px;
}

.section-sm {
    padding: 80px 80px;
}

.section-special {
    padding: 120px 80px;
}


/* =====================
       Home Section
===================== */
.home {
    position: relative;
    height: 100vh;       /* 🔥 KUNCI */
    padding: 120px 80px 0;
    overflow: hidden;
    display: flex;
    align-items: center;

    /* padding: 120px 80px;
    position: relative;
    overflow: hidden;   
    min-height: 100vh; */
    
    font-family: 'Montserrat', sans-serif;
}

.home-content {
    max-width: 50%;
}

.home-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;

    text-shadow:
        -1px -1px 0 #69a09e,
         1px -1px 0 #69a09e,
        -1px  7px 0 #69a09e,
         3px  7px 0 #69a09e;
}

.home-content p {
    position: relative;
    z-index: 2;

    max-width: 520px;
    margin-left: auto;     /* 🔥 geser ke kanan */
    margin-right: 180px;   /* 🔥 jarak dari gambar */
    text-align: left;
}

.home-image {
    position: absolute;
    right: 0;
    bottom: 0;

    height: 100%;
    width: auto;
    z-index: 1;
    pointer-events: none;
}

.home-image img {
    height: 100%;
    width: auto;
    object-fit: cover; /* biar penuh tinggi */
}

/* RESPONSIVE */

/* =====================
    Countdown Section
===================== */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2ec4b6; /* hijau landing */
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 15px;
    color: #666;
}


.statistik-desc {
    font-size: 14px;
    color: #f1f1f1;
    margin: 10px 0 18px;
    line-height: 1.5;
}

/* BUTTON DAFTAR */
.btn-statistik {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 22px;
    border-radius: 20px;
    background-color: #ffffff;
    color: #2ec4b6;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-statistik:hover {
    background-color: #2ec4b6;
    color: #ffffff;
}


/* ============================= */
/* COUNTDOWN SECTION */
/* ============================= */

.section-countdown {
    min-height: 70vh;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.countdown-title {
    font-size: 28px;
    font-weight: 700;
    color: #009B90;
    margin-bottom: 60px;
    text-align: center;
}

/* WRAPPER */
.countdown-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

/* CARD */
.countdown-card {
    width: 140px;
    height: 180px;
    border: 2px solid #009B90;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-6px);
}

/* NUMBER */
.countdown-number {
    font-size: 64px;
    font-weight: 700;
    color: #009B90;
    line-height: 1;
    margin-bottom: 8px;
}

/* LABEL */
.countdown-label {
    font-size: 18px;
    font-weight: 500;
    color: #009B90;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-countdown {
        padding: 80px 24px;
    }

    .countdown-card {
        width: 90px;
        height: 120px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 14px;
    }
}
/* =====================
       Home Section
===================== */

/* =========================
   KEGIATAN SECTION
========================= */

/* WARNA */
.bg-custom-teal {
    background-color: #009B90;
}
.text-custom-teal {
    color: #009B90;
}

/* SECTION */
.kegiatan-section {
    padding: 80px 20px;
    color: #ffffff;
}

.kegiatan-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.kegiatan-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.kegiatan-subtitle {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
    opacity: 0.95;
}

/* CARDS */
.kegiatan-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.event-card {
    width: 320px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.ornamen-kegiatan {
    position: absolute;
    right: 0;
    bottom: -120px; /* 🔥 setengah turun ke about */
    width: 180px;
    z-index: 2;
    pointer-events: none;
}

/* IMAGE AREA */
.card-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #1E3A5F 0%, #00605A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url("https://www.transparenttextures.com/patterns/arches.png");
}

/* COMING SOON BADGE */
.coming-soon-badge {
    z-index: 2;
    border: 3px solid white;
    padding: 6px 16px;
    transform: rotate(-10deg);
    color: white;
    font-weight: 800;
    font-size: 22px;
    text-shadow: 2px 2px 0 #000;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
    text-align: center;
    line-height: 1.1;
}

/* CONTENT */
.event-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: #1f2937;
}

.event-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #009B90;
    margin-bottom: 8px;
}

.event-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* BUTTON */
.btn-daftar {
    background-color: #F9A826;
    color: #1F2937;
    font-weight: 700;
    padding: 12px 0;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-daftar:hover {
    background-color: #e09214;
}

/* PAGINATION */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    opacity: 1;
    background-color: #F9A826;
}
/* RESPONSIVE */

/* =========================
   ABOUT SECTION
========================= */
.about {
    position: relative;
    padding: 120px 80px;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; /* supaya ornamen tidak bikin scroll */
}

.about-container {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* INI KUNCI: sejajar vertikal */
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* ORNAMEN */
.about-ornament {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    z-index: 1;
    object-fit: cover;
    pointer-events: none; /* aman dari klik */
}

.about-ornament img {
    width: 10%;
    height: auto;
    display: block;
}

.about-ornament-top {
    position: absolute;
    right: 0;
    top: 10px; /* 🔥 setengah naik ke kegiatan */
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

/* KONTEN */
.about-content {
    max-width: 920px;
    margin-left: auto; /* dorong konten ke kanan */
}

.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #089f98;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    text-align: justify;
}

.about-image {
    flex: 0 0 560px;
    display: flex;
    object-fit: cover;
    align-items: center; /* gambar ikut center */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .about {
        padding: 80px 40px;
    }

    .about-ornament {
        width: 260px;
        opacity: 0.4;
    }

    .about-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 24px;
    }

    .about-ornament {
        width: 200px;
        opacity: 0.25;
    }

    .about-content {
        margin-left: 0;
        max-width: 100%;
    }

    .about-content p {
        text-align: left;
    }
}
/* =========================
   END OF FILE
========================= */

/* =========================
   KATEGORI SECTION
========================= */
.kategori {
    background: #0a9f98;
    padding: 120px 80px;
    font-family: 'Montserrat', sans-serif;
}

.kategori-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* CONTAINER */
.kategori-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* CARD */
.kategori-card {
    background: #ffffff;
    border-radius: 24px;
    width: 320px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.kategori-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.kategori-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.kategori-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
}

/* overlay warna teal */
.kategori-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 155, 144, 0.65);
}

/* CONTENT */
.kategori-content {
    padding: 20px;
    text-align: center;
}

.kategori-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #009b90;
    margin-bottom: 14px;
}

/* DESKRIPSI KUNING */
.kategori-desc {
    background: #fcb34c;
    color: #29456f;
    font-size: 13px;
    line-height: 1.6;
    padding: 14px 16px;
    border-radius: 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .kategori-container {
        flex-direction: column;
        align-items: center;
    }

    .kategori-card {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .kategori {
        padding: 80px 24px;
    }

    .kategori-title {
        font-size: 28px;
    }
}
/* =========================
   END OF FILE
========================= */

/* =========================
   SPEAKERS SECTION
========================= */
.speakers {
    position: relative;
    padding: 120px 80px;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.speakers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* IMAGE */
.speakers-image {
    flex: 0 0 420px;
}

.spk-ornament-top {
    position: absolute;
    right: 0;
    top: 120px; /* 🔥 setengah naik ke kegiatan */
    width: 340px;
    z-index: 2;
    pointer-events: none;
}

.speakers-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTENT */
.speakers-content {
    max-width: 560px;
}

.speakers-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    color: #0a7f55;
    margin-bottom: 24px;
}

/* BADGE */
.speakers-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: #7fb7b3;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* NAME */
.speakers-name {
    font-size: 28px;
    font-weight: 800;
    color: #089f98;
    margin-bottom: 6px;
}

/* ROLE */
.speakers-role {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
}

/* COLLAB */
.speakers-collab {
    display: flex;
    align-items: center;
    gap: 14px;
}

.speakers-collab span {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.speakers-collab img {
    height: 40px;
    width: auto;
}

/* =========================
   ORNAMEN SLOT
========================= */
.speakers-ornament {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.speakers-ornament-left {
    top: 40px;
    left: 40px;
    width: 140px;
}

.speakers-ornament-right {
    bottom: 40px;
    right: 40px;
    width: 160px;
}

.speakers-ornament img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .speakers {
        padding: 80px 40px;
    }

    .speakers-container {
        gap: 40px;
    }

    .speakers-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .speakers {
        padding: 60px 24px;
    }

    .speakers-container {
        flex-direction: column;
        text-align: center;
    }

    .speakers-image {
        max-width: 320px;
    }

    .speakers-collab {
        justify-content: center;
    }

    .speakers-ornament-left,
    .speakers-ornament-right {
        opacity: 0.3;
    }
}
/* =========================
   END OF FILE
========================= */

/* =========================
   STATISTIK SECTION
========================= */
.statistik {
    position: relative;
    padding: 100px 80px;
    background: #dff3ec;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.statistik-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* TITLE */
.statistik-title {
    font-size: 20px;
    font-weight: 800;
    color: #0a7f55;
    margin-bottom: 48px;
}

/* CARDS */
.statistik-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
}

/* CARD */
.statistik-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(46, 196, 182, 0.15);
    position: relative;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.statistik-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* OVERLAY WARNA */
.statistik-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.9;
}

/* CONTENT */
.statistik-content {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    color: #ffffff;
}

.statistik-desc {
    font-size: 14px;
    opacity: 0.9;
    color: #2ec4b6;
    margin: 10px 0 18px;
    line-height: 1.5;
}

.statistik-category {
    background: #2ec4b6;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.statistik-center {
    text-align: center;
    margin-top: 10px;
}

.statistik-label {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: #2ec4b6;
    display: block;
}
.statistik-number {
    font-size: 42px;
    font-weight: 700;
    color: #2ec4b6;
    display: block;
}

.btn-statistik {
    display: inline-block;
    padding: 8px 26px;
    border-radius: 25px;
    background-color: #ffffff;
    color: #2ec4b6;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-statistik:hover {
    background-color: #2ec4b6;
    color: #ffffff;
}

/* OVERLAY VARIANT */
.bg-dai {
    background: linear-gradient(135deg, #1b4f72, #0a7f55);
}

.bg-mtq {
    background: linear-gradient(135deg, #0a7f55, #089f98);
}

.bg-mhq {
    background: linear-gradient(135deg, #1b4f72, #0b3c49);
}

/* ORNAMEN */
.statistik-ornament {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    z-index: 1;
    pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .statistik-cards {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .statistik {
        padding: 60px 24px;
    }

    .statistik-card {
        width: 100%;
        max-width: 340px;
    }
}

/* =========================
   END OF FILE
========================= */

/* ==============================
   PESERTA APPROVED SECTION
================================ */

.peserta-approved {
    padding: 80px 20px;
    background: #f8fdfc;
}

.peserta-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.peserta-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 10px;
}

.peserta-subtitle {
    color: #555;
    margin-bottom: 40px;
}

.peserta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.peserta-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.peserta-card:hover {
    transform: translateY(-5px);
}

.peserta-badge {
    display: inline-block;
    background: #2ec4b6;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
}

.peserta-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.peserta-instansi,
.peserta-lokasi {
    font-size: 14px;
    color: #666;
}


/* =========================
   BENEFIT SECTION
========================= */
.benefit {
    padding: 100px 80px;
    background: #0ea59b;
    font-family: 'Montserrat', sans-serif;
}

.benefit-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* TITLE */
.benefit-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 48px;
}

/* CARDS WRAPPER */
.benefit-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
}

/* CARD */
.benefit-card {
    width: 230px;
    height: 260px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

/* ICON */
.benefit-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* TEXT */
.benefit-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .benefit-cards {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .benefit {
        padding: 60px 24px;
    }

    .benefit-card {
        width: 100%;
        max-width: 280px;
    }
}
/* =========================
   END OF FILE
========================= */

/* =========================
   TANGGAL PENTING
========================= */
.tanggal-penting {
    background: #bdf6e4;
    padding: 100px 80px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden; /* penting supaya ornamen tidak bikin scroll */
}

.tp-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-right: 300px; /* 🔥 RUANG UNTUK ORNAMEN KANAN */
}

.tp-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #0b8f86;
    margin-bottom: 48px;
}

/* GRID */
.tp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.tp-item {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.tp-date {
    background: #0ea59b;
    color: #ffffff;
    padding: 16px 18px;
    font-weight: 700;
    font-size: 14px;
    min-width: 140px;
    text-align: center;
}

.tp-desc {
    padding: 16px 20px;
    font-size: 14px;
    color: #1f3b3a;
    display: flex;
    align-items: center;
}

/* =========================
   ORNAMEN KANAN
========================= */
.tp-ornament {
    position: absolute;
    right: 0;      /* 🔥 mepet batas kanan section */
    top: 80px;
    width: 280px;
    z-index: 1;
    pointer-events: none;
}

.tp-ornament img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   ALUR REGISTRASI
========================= */
.alur {
    background: #bdf6e4;
    padding: 80px 80px 120px;
}

.alur-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #0b8f86;
    margin-bottom: 48px;
}

.alur-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.alur-item {
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 10px;
    width: 220px;
    font-size: 13px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.alur-number {
    background: #fcb34c;
    color: #ffffff;
    font-weight: 700;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.alur-arrow {
    font-size: 32px;
    color: #0ea59b;
    font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .tp-container {
        padding-right: 0;
    }

    .tp-grid {
        grid-template-columns: 1fr;
    }

    .tp-ornament {
        width: 220px;
        opacity: 0.3;
    }

    .alur-container {
        flex-direction: column;
    }

    .alur-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .tp-ornament {
        display: none;
    }
}
/* =========================
   END OF FILE
========================= */

/* =========================
   BIAYA PENDAFTARAN
========================= */
.biaya {
    background: #0ea59b;
    padding: 100px 80px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.biaya-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.biaya-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 48px;
    letter-spacing: 1px;
}

/* CARD WRAPPER */
.biaya-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* CARD */
.biaya-card {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    min-width: 320px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* LABEL */
.biaya-label {
    background: #bdf6e4;
    color: #0b8f86;
    padding: 20px 22px;
    font-weight: 700;
    font-size: 14px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.biaya-label span {
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
}

/* PRICE */
.biaya-price {
    padding: 20px 28px;
    font-size: 18px;
    font-weight: 800;
    color: #29456f;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* =========================
   ORNAMEN
========================= */
.biaya-ornament {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    pointer-events: none;
    opacity: 0.9;
}

.biaya-ornament.kiri {
    left: -40px;
}

.biaya-ornament.kanan {
    right: -40px;
}

.biaya-ornament img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .biaya {
        padding: 80px 24px;
    }

    .biaya-cards {
        flex-direction: column;
        gap: 24px;
    }

    .biaya-ornament {
        display: none;
    }
}
/* =========================
   END OF FILE
========================= */

/* =========================
   SPONSOR & PARTNER
========================= */
.partner {
    background: #ffffff;
    padding: 100px 80px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.partner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ROW */
.partner-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.partner-row.bottom {
    justify-content: center;
    margin-top: 80px;
}

/* GROUP */
.partner-group {
    text-align: center;
}

.partner-group.center {
    max-width: 420px;
}

/* TITLE BADGE */
.partner-title {
    background: #0ea59b;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 28px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 28px;
}

/* LOGO WRAPPER */
.partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* GRID KHUSUS CO-HOST */
.partner-logos.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* LOGO */
.partner-logos img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #5865f2; /* warna ungu logo */
    padding: 8px;
    object-fit: contain;
}

/* =========================
   ORNAMEN
========================= */
.partner-ornament {
    position: absolute;
    width: 160px;
    pointer-events: none;
}

.partner-ornament.left {
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.partner-ornament.right {
    right: -40px;
    bottom: 40px;
}

.partner-ornament img {
    width: 100%;
    height: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .partner-row {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .partner-row.bottom {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .partner {
        padding: 80px 24px;
    }

    .partner-ornament {
        display: none;
    }

    .partner-logos.grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* =========================
   END OF FILE
========================= */

/* =========================
   SECTION KUTIPAN
========================= */
.quote-section {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* gambar sudah final */
.quote-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* teks numpang di atas gambar */
.quote-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    padding: 0 40px;
    color: #ffffff;
}

/* garis */
.quote-line {
    width: 3px;
    height: 140px;
    background-color: rgba(255, 255, 255, 0.85);
}

/* teks */
.quote-text-wrapper p {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .quote-section {
        height: 320px;
    }

    .quote-text-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .quote-line {
        width: 60px;
        height: 3px;
    }

    .quote-text-wrapper p {
        font-size: 18px;
    }
}
/* =========================
   END OF FILE
========================= */

/* =========================
   CONTACT / INFORMASI
========================= */
.contact-section {
    background: #ffffff;
    padding: 100px 80px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    display: inline-block;
    background: #0ea59b;
    color: #ffffff;
    padding: 8px 28px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 14px;
    color: #1f7d76;
    margin-bottom: 56px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */
.contact-card {
    background: #ffffff;
    border: 1.5px solid #7adfd6;
    border-radius: 14px;
    padding: 48px 20px 28px;
    position: relative;
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0ea59b;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 13px;
    color: #1f3b3a;
    line-height: 1.6;
}

/* ICON BULAT */
.contact-icon {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: #0ea59b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 80px 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   END OF FILE
========================= */

/* =========================
   FOOTER
========================= */
.footer {
    background: #000000;
    padding: 48px 80px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    align-items: center;
}

/* LEFT */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    width: 190px;
}

.footer-copy {
    font-size: 11px;
    color: #bdbdbd;
    line-height: 1.6;
}

/* CENTER */
.footer-nav {
    text-align: center;
    font-size: 13px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer-nav span {
    color: #ffffff;
    margin: 0 6px;
}

/* RIGHT */
.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #0ea59b;
    border-color: #0ea59b;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 24px;
    }

    .footer-logo {
        width: 160px;
    }
}
/* =====================
       Home Section
===================== */





