:root {
    --oz-primary: #3f82b8;
    --oz-secondary: #e2f9ff;
    --oz-light: #f8f9fa;
    --oz-dark: #1a1a1a;
    --oz-accent: #38bdf8;
    --oz-text: #333;
    --oz-text-muted: #64748b;
    --oz-border: #e2e8f0;
}

body {
    /* font-family: "Poppins", sans-serif; */
    font-family: "Verdana", sans-serif;
    color: var(--oz-text);
    background: var(--oz-light);
}

/* Utility classes */
.oz-bg-primary {
    background-color: var(--oz-primary);
}

.oz-bg-accent {
    background-color: var(--oz-accent);
}

.oz-bg-secondary {
    background-color: var(--oz-secondary);
}

.oz-bg-light {
    background-color: var(--oz-light);
}

.oz-bg-dark {
    background-color: var(--oz-dark);
}

.oz-text-primary {
    color: var(--oz-primary);
}

.oz-text-secondary {
    color: var(--oz-secondary);
}

.text-warning {
    font-weight: 550;
}

.text-primary {
    color: var(--oz-primary);
}

/* ===============================
    NAVBAR
  ================================ */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px;
    z-index: 9999;
}

.navbar-toggler {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:not(:focus-visible) {
    outline: none;
}

.nav-link,
.dropdown-item {
    text-decoration: none;
    color: var(--oz-primary);
    padding: 0.625rem 1.125rem;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    font-size: clamp(0.75rem, 1vw + 0.3rem, 1rem);
}

.nav-link::before,
.dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--oz-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.dropdown-item:hover {
    color: var(--oz-primary);
}

.nav-link:hover::before,
.dropdown-item:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* ===============================
    ACTIVE / FOCUS STATE (GLOBAL)
  ================================ */
.nav-link.active,
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:focus-visible {
    color: var(--oz-primary);
    background-color: transparent;
}

.nav-link:hover::before,
.dropdown-item:hover::before,
.nav-link.active::before,
.dropdown-item.active::before,
.dropdown-item:active::before,
.dropdown-item:focus::before {
    transform: scaleX(1);
}

.nav-link.dropdown-toggle,
.nav-link.dropdown-toggle:hover,
.nav-link.dropdown-toggle:focus,
.nav-link.dropdown-toggle:active,
.nav-link.dropdown-toggle.show {
    color: var(--oz-primary);
    background-color: transparent;
}

.nav-link.dropdown-toggle.show::before,
.nav-link.dropdown-toggle:active::before,
.nav-link.dropdown-toggle:focus::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

/* ===============================
    DROPDOWN MAIN ARROW CUSTOM
  ================================ */
.nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid var(--oz-primary);
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

/* ROTATE ARROW KE BAWAH SAAT DROPDOWN TERBUKA */
.nav-link.dropdown-toggle.show::after {
    transform: rotate(1deg);
}

.dropdown-item {
    background-color: transparent;
    padding-left: 0.75rem;
    padding-right: 1.5rem;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu:hover > .dropdown-item {
    background-color: #e2f9ff;
    border-radius: 10px;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-submenu:hover > .dropdown-item {
    background-color: #e2f9ff;
    border-radius: 10px;
}

.dropdown-submenu > .dropdown-item::after {
    display: none;
}
.dropdown-submenu > .dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    left: auto;
    margin-top: -6px;
    margin-right: 6px;
    border-radius: 8px;
    min-width: 200px;
}

/* SHOW SUBMENU */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
    z-index: 9;
}

.dropdown-submenu::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 24px;
    height: 100%;
}

/* ===============================
    SUBMENU ARROW INDICATOR
  ================================ */
.dropdown-submenu > .dropdown-item::after {
    content: "⏵";
    font-size: 1rem;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

/* Buttons */
.oz-btn-primary {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    transition: all 0.3s ease;
    background: linear-gradient(to right, var(--oz-secondary) 50%, var(--oz-primary) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #fff;
}

.oz-btn-primary:hover {
    background-position: left bottom;
    color: var(--oz-primary);
    transform: translateY(-2px);
}

.oz-btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    cursor: pointer;
    background: linear-gradient(to right, var(--oz-secondary) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: var(--oz-secondary);
    border: 2px solid var(--oz-secondary);
    transition:
        background-position 0.35s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.oz-btn-secondary:hover {
    background-position: left bottom;
    color: var(--oz-primary);
    transform: translateY(-2px);
}

.oz-btn-dark {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    cursor: pointer;
    background: linear-gradient(to right, var(--oz-light) 50%, var(--oz-dark) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #fff;
    transition:
        background-position 0.35s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.oz-btn-dark:hover {
    background-position: left bottom;
    color: var(--oz-dark);
    transform: translateY(-2px);
    border: 1px solid var(--oz-dark);
}

.oz-btn-cta {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;

    padding: 16px 38px;
    border-radius: 100px;

    background: linear-gradient(135deg, #ff9f1c, #ffbe0b);
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 2);

    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.6px;

    box-shadow:
        0 12px 35px rgba(255, 159, 28, 0.55),
        0 0 0 2px rgba(255, 255, 255, 0.85);

    text-decoration: none;
    transition: all 0.25s ease;
}

.oz-cta-note {
    display: inline-block;
    padding-left: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffeb3b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-left: 2px solid #ffeb3b;
}

.oz-cta-note:hover {
    background: rgba(255, 235, 59, 0.15);
}
.oz-btn-cta::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255, 190, 11, 0.6), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.oz-btn-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 18px 45px rgba(255, 159, 28, 0.75),
        0 0 0 2px rgba(255, 255, 255, 1);
}

.oz-btn-cta:hover::before {
    opacity: 1;
}

.oz-btn-cta:active {
    transform: translateY(0) scale(0.97);
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Background image */
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    color: #fff;
    padding: 2rem 0;
}

/* Title */
.hero-content h1 {
    font-size: 3.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-text {
    display: inline-block;
    font-size: 1.1em;
    color: #ffeb3b;

    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 152, 0, 0.15);
    white-space: nowrap;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    line-height: 1.4;
}

.hero-info-1 {
    display: inline-block;
    font-size: 1.1em;
    color: #ffffff;
    box-shadow:
        0 0 20px #ff030353,
        0 0 30px #d90000;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 0, 0, 0.54);
    font-weight: 800;
    white-space: nowrap;
    max-width: 1200px;
    overflow: visible;
    box-sizing: border-box;
    line-height: 1.4;
}

.hero-info-2 {
    display: inline-block;
    font-size: 1.1em;
    color: #ffffff;
    box-shadow:
        0 0 20px #f2ff0353,
        0 0 30px #d9d500;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(246, 255, 0, 0.63);
    font-weight: 800;
    white-space: nowrap;
    max-width: 1200px;
    overflow: visible;
    box-sizing: border-box;
    line-height: 1.4;
}

.hero-info-3 {
    display: inline-block;
    font-size: 1.1em;
    color: #ffffff;
    box-shadow:
        0 0 20px #03ffd953,
        0 0 30px #00c7d9;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 238, 255, 0.54);
    font-weight: 800;
    white-space: nowrap;
    max-width: 1200px;
    overflow: visible;
    box-sizing: border-box;
    line-height: 1.4;
}

/* Description */
.hero-content p {
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: none;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* ===============================
   HERO HOME
================================ */
.hero-home {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;

    width: 100%;
}

@keyframes gradientAnim {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    z-index: 2;
}

.hero-home .container {
    position: relative;
    z-index: 3;
}

.hero-home .hero-wrap {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    align-items: flex-start;
}

.hero-home .hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: auto;
    z-index: 2;
}

.hero-home .hero-tag {
    display: inline-block;
    background: #ffb703;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 2);
    font-weight: 700;
    padding: 6px 14px;
    max-width: 100%;
    border-radius: 999px;
    text-transform: uppercase;
    white-space: nowrap;
    width: 175px;
}

.hero-home .hero-title {
    font-size: 3.9rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.1rem;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 0.15em solid #ffd166;
    animation:
        typing 3s steps(50, end) forwards,
        blink 0.75s step-end 4,
        stopCursor 0s forwards;
    animation-delay: 0s, 0s, 3s;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes stopCursor {
    to {
        border-right: none;
    }
}

.hero-home .hero-boot-title {
    font-size: 3.9rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.1rem;
    display: block;
}

.hero-home p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-sub-info {
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 760px;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-boot-sub-info {
    line-height: 1.4;
    max-width: 820px;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-home .hero-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-home .oz-btn-cta {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffb703, #ffd166);
    color: #ffffff;
    font-weight: 900;
    border-radius: 999px;
    text-decoration: none;
    box-shadow:
        0 0 20px #ffb703,
        0 0 30px #ffd166;
    transition: 0.3s ease;
}

.hero-home .oz-btn-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 40px #ffb703,
        0 0 60px #ffd166;
}

.hero-home .hero-info-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-home .hero-card-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    flex: 1 1 calc(25% - 0.75rem);
    text-align: center;
    width: 500px;
}

.hero-note {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    max-width: auto;
}

.hero-note a {
    color: #ffc107;
    font-weight: bold;
    text-decoration: underline;
}

/* section card content */
.feature-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.feature-card {
    background: #fff;
    max-width: 1279px;
    width: 100%;
    border-radius: 16px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-card.right {
    flex-direction: row;
}

.feature-card.left {
    flex-direction: row;
}

.feature-text {
    flex: 1;
}

.feature-text a {
    text-decoration: none;
    color: #3b3a3a;
    transition: color 0.25s ease;
    font-weight: 500;
}

.feature-text a:hover,
.feature-text a:focus {
    color: var(--oz-primary);
    text-decoration: none;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 40rem;
    color: #000;
}

.feature-text h3 {
    font-size: 1.1rem;
    max-width: 40rem;
    color: #3b3a3a;
}

.feature-text small {
    color: #888;
    display: block;
    margin-bottom: 14px;
}

.feature-text p {
    color: #2a2a2a;
    line-height: 1.5;
}

.feature-image {
    flex: 1;
    aspect-ratio: 4 / 3;
    max-width: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

.oz-footer {
    padding-top: 20px;
    background: #173549;
    color: #ffffff;
}

.oz-footer-map {
    width: 100%;
    max-width: 720px;
    height: 480px;
    border: 0;
    border-radius: 12px;
}

.oz-footer-links {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.oz-footer-links li a {
    margin-bottom: 8px;
    text-decoration: none;
}

.oz-footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
}

.oz-footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.oz-footer-social-rounded {
    display: flex;
    gap: 1rem;
}
.oz-footer-social-rounded a {
    text-decoration: none;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.social-icon.instagram {
    background: #e1306c;
}

.social-icon.tiktok {
    background: #000000;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.linkedin {
    background-color: #0a66c2;
    color: #fff;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.slogan {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    display: inline-block;
    background-color: #5d93e9;
    padding: 8px 15px;
    box-shadow: 5px 5px 0px #000000;
    border: 4px solid black;
}

.entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    color: #333;
}

.download-card {
    background: #f0f8ff;
    border: 5px solid #000;
    border-radius: 0;
    margin: 30px 0;
    padding: 30px 40px;
}

/* Desktop grid */
.download-card__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 80px;
    max-width: 920px;
    margin: 0 auto;
}

.download-item {
    flex: 0 1 340px;
    max-width: 340px;
    text-align: center;
    padding: 0;
}

.download-item__icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: white;
    border-radius: 6px;
    margin-bottom: 12px;
}

.download-card--mobile .oz-block-columns.is-layout-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

.download-card--mobile .oz-block-column:nth-child(1) {
    flex: 1.1;
    text-align: left;
}

.download-card--mobile .oz-block-column:nth-child(2) {
    flex: 0 0 auto;
}

.download-card--mobile .oz-block-column:nth-child(3) {
    flex: 1.1;
    text-align: right;
}

.download-card--mobile img {
    width: 90px;
    height: 90px;
}

/* License section */
.license-section {
    text-align: center;
    padding: 30px 0;
    color: #555;
}

.license-section a {
    color: #0066cc;
    text-decoration: underline;
}

hr.oz-block-separator {
    border-color: #ccc;
    margin: 50px 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.carousel-item {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.carousel-caption {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.46);
    padding: 2rem 0;
    text-align: center;
}

.carousel-caption .container {
    max-width: 1200px;
}

.carousel-text {
    color: white;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    max-width: 80%;
    margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0.9;
    z-index: 20;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-size: 60%;
}

.oz-section-title {
    color: var(--oz-primary);
    font-weight: bold;
}

.oz-section-title a {
    color: inherit;
    text-decoration: none;
}

.oz-section-layout {
    padding: 80px 0;
}

.oz-section-layout h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

/*Card Home Page*/
.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.14);
}

.card-image {
    height: auto;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-content {
    padding: 1.8rem 1.6rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}

.card-scroll::-webkit-scrollbar {
    height: 8px;
}

.card-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.card-scroll-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.oz-horizontal-wrapper {
    position: relative;
}

.oz-horizontal-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 3rem 1rem;
}

.oz-horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.oz-horizontal-item {
    flex: 0 0 300px;
}

.oz-horizontal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 20;

    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    font-size: 1.4rem;
    color: #333;

    transition: all 0.3s ease;
}

.oz-horizontal-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.oz-horizontal-arrow.oz-left {
    left: -12px;
}

.oz-horizontal-arrow.oz-right {
    right: -12px;
}

.oz-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.oz-section-desc {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.oz-horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.oz-horizontal-scroll {
    scrollbar-width: none;
}

.oz-horizontal-scroll {
    -ms-overflow-style: none;
}

/* ===== BRIAN ===== */
.blog {
    padding: 4rem 1rem;
}

.blog-header {
    max-width: 720px;
    margin: 0 auto 3rem;
}

.blog-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-subtitle {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.blog-pagination a {
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.blog-pagination a.active {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.blog-hori-container {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-hori-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-hori-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-hori-subtitle {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Grid post */
.blog-hori-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* jarak antar post */
}

/* Setiap post */
.blog-hori-post {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    min-height: 200px;
}

.blog-hori-post:hover {
    transform: translateY(-4px);
}

.blog-hori-img {
    width: 30%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.blog-hori-content {
    width: 80%;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-hori-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
    text-decoration: none;
}

.blog-hori-meta {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.blog-hori-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-hori-readmore {
    text-decoration: none;
    color: #fff;
    background: #111827;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    align-self: flex-start;
}

.oz-single-post-wrapper {
    background-color: #ffffff;
    color: var(--oz-single-post-dark);
    line-height: 1.8;
    max-width: 1310px;
    margin: 0 auto;
}

/* Header */
.oz-single-post-category {
    color: var(--oz-single-post-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.oz-single-post-headline {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin: 15px 0 10px;
    letter-spacing: -0.5px;
}

.oz-single-post-meta {
    font-size: 0.9rem;
    color: var(--oz-single-post-muted);
    margin-bottom: 25px;
}

/* Share buttons */
.oz-single-post-share-top {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--oz-single-post-border);
    align-items: center;
}

.oz-share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition:
        transform 0.2s,
        opacity 0.2s;
}

.oz-share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.oz-bg-fb {
    background: #1877f2;
}
.oz-bg-tw {
    background: #000000;
}
.oz-bg-wa {
    background: #25d366;
}

/* Konten artikel */
.oz-single-post-content {
    font-size: 1.15rem;
    color: var(--oz-single-post-body);
    text-align: justify;
}

/* First letter styling */
.oz-single-post-content::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    font-weight: 800;
    padding-right: 12px;
    color: var(--oz-single-post-dark);
}

/* Floating image di paragraf */
.oz-single-post-image-float {
    float: left;
    width: 45%;
    margin: 0 20px 20px 0;
}

.oz-single-post-image-float img {
    width: 100%;
    border-radius: 4px;
}

.oz-single-post-caption {
    font-size: 0.8rem;
    color: var(--oz-single-post-muted);
    margin-top: 8px;
    font-style: italic;
}

/* Sidebar */
.oz-single-post-row {
    display: flex;
    align-items: flex-start;
}

.oz-single-post-sidebar {
    padding-left: 90px;
    position: sticky;
    top: 20px;
    z-index: 10;
}

.oz-single-post-sidebar-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--oz-single-post-dark);
    display: inline-block;
    padding-bottom: 5px;
}

.oz-single-post-side-card {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 30px;
}

.oz-single-post-side-card:hover .oz-single-post-side-title {
    color: var(--oz-single-post-primary);
}

.oz-single-post-side-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 12px;
    line-height: 1.4;
}

/* Clear float after content */
.oz-single-post-content::after {
    content: "";
    display: table;
    clear: both;
}

.tutorial-main-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.tutorial-hero-container {
    padding: 120px 15px;
}

.tutorial-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #333;
    line-height: 1.1;
}

.tutorial-section-wrapper {
    width: 100%;
    margin-bottom: 0;
}

.tutorial-section-header {
    background-color: #e7f5fe;
    color: #333;
    padding: 25px 0;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    border: none;
    width: 100%;
    display: block;
}
.tutorial-list-group {
    width: 100%;
    padding: 0;
    margin: 0;
}

.tutorial-item-row {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    width: 100%;
    display: block;
    transition: background 0.2s;
}

.tutorial-item-row:hover {
    background-color: #f9f9f9;
}

.tutorial-inner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.tutorial-item-title {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
}

.tutorial-description-box {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    padding: 20px 20px 0 20px;
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
    border-top: 1px dashed #ddd;
}

.tutorial-details summary {
    list-style: none;
    outline: none;
    display: block;
}

.tutorial-details summary::-webkit-details-marker {
    display: none;
}

.accordion-item {
    border: none;
}

.accordion-button {
    font-style: italic;
    font-size: 1.4rem;
    padding: 40px 0;
    color: white;
    background-color: #4a90e2;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

.btn-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.accordion-collapse {
    background-color: #4a90e2;
}

.accordion-body {
    padding: 0 0 40px 0;
    color: white;
    line-height: 2.2;
}

.bg-custom-dark .accordion-button {
    background-color: #e7f5fe;
    color: #111111;
}

.bg-custom-dark .accordion-collapse {
    background-color: #e7f5fe;
}

.bg-custom-dark .accordion-body {
    color: #111111;
}

.accordion-button::after {
    display: none;
}

.custom-arrow {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.bg-custom-dark .custom-arrow {
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed) .custom-arrow {
    transform: rotate(-180deg);
}

.accordion-button:not(.collapsed) {
    background-color: inherit;
}

.oz-testimonial {
    padding: 100px 20px;
    /* background: var(--oz-light); */
    background-color: #f5fcff;
    background-image: radial-gradient(var(--oz-primary) 1px, transparent 0.8px);
    background-size: 24px 24px;
}

.oz-testimonial-container {
    margin: 0 auto;
    text-align: center;
}

.oz-testimonial-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--oz-primary);
    margin-bottom: 10px;
}

.oz-testimonial-subtitle {
    font-size: 18px;
    margin-bottom: 60px;
}

.oz-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.oz-testimonial-carousel {
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.oz-testimonial-carousel.grabbing {
    cursor: grabbing;
}

.oz-testimonial-track {
    display: flex;
    gap: 24px;
    width: max-content;
    align-items: stretch;
    animation: testimonial-scroll 35s linear infinite;
}

.oz-testimonial-carousel:hover .oz-testimonial-track {
    animation-play-state: paused;
}

.oz-testimonial-card {
    flex: 0 0 calc((1100px - 48px) / 3);
    background: white;
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    border: 1px solid var(--oz-border);
    box-shadow: 0 10px 30px #f5fcff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    display: flex;
    flex-direction: column;
}

.oz-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.oz-testimonial-stars {
    color: #ffeb3b;
    font-size: 18px;
    margin-bottom: 12px;
}

.oz-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--oz-text);
    margin-bottom: 24px;
}

.oz-testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.oz-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--oz-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.oz-testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--oz-dark);
}

.oz-testimonial-role {
    font-size: 13px;
    color: var(--oz-text-muted);
}

@keyframes testimonial-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--loop-width)));
    }
}

.oz-all-price-wrapper {
    background-color: #f5fcff;
    background-image: radial-gradient(var(--oz-primary) 1px, transparent 0.8px);
    background-size: 24px 24px;
}

.oz-all-price-container {
    max-width: 1300px;
    margin: auto;
}

.oz-all-price-heading {
    display: table;
    background: var(--oz-primary);
    color: #fff;
    padding: 15px 40px;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 #000;
    margin: 0 auto 60px;
    text-transform: uppercase;
    font-size: 2.5rem;
}

.oz-all-price-section {
    margin-bottom: 50px;
}

.oz-all-price-header {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.oz-all-price-header::after {
    content: "";
    height: 4px;
    flex: 1;
    background: #000;
}

.oz-all-price-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.oz-all-price-card {
    background: #fff;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 #000;
    display: flex;
    transition: 0.2s;
}

.oz-all-price-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #38bdf8;
}

.oz-all-price-aside {
    background: #3f82b8;
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 15px;
    font-weight: 900;
    border-left: 3px solid #000;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-align: center;
}

.oz-all-price-main {
    padding: 25px;
    flex: 1;
}

.oz-all-price-title {
    margin: 0 0 5px;
    font-size: 1.7rem;
    font-weight: 900;
}

.oz-all-price-subtitle {
    font-weight: 700;
    color: #3f82b8;
    margin: 0 0 15px;
}

.oz-all-price-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.oz-all-price-amount {
    font-size: 1.6rem;
}

.oz-all-price-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 18px;
    text-decoration: none;
    font-weight: 800;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #3f82b8;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.oz-all-price-card-adult .oz-all-price-aside {
    background: #1a1a1a;
}

.oz-all-price-card-bootcamp .oz-all-price-aside {
    background: #e67e22;
    color: #fff;
}

.oz-all-price-card-bootcamp .oz-all-price-subtitle {
    color: #e67e22;
}

#oz-all-price-notes {
    background: #fff;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 #000;
    padding: 30px;
    margin-top: 60px;
}

.oz-all-price-notes-label {
    display: inline-block;
    background: #ffd93d;
    padding: 5px 15px;
    border: 2px solid #000;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-top: 0;
}

.oz-all-price-notes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 15px 40px;
    margin-top: 25px;
    padding: 0;
    list-style: none;
}

.oz-all-price-notes-item {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oz-all-price-notes-item::before {
    content: "✦";
    color: #3f82b8;
    font-size: 1.2rem;
}

.oz-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 60px;
}
.oz-gallery-title {
    text-align: center;
    margin: 0 0 3rem;
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.oz-gallery-item {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    position: relative;
}
.oz-gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.oz-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    display: block;
    transition: transform 0.6s ease;
}
.oz-gallery-item:hover img {
    transform: scale(1.12);
}
.oz-gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    opacity: 0;
}
.oz-gallery-item:hover .caption {
    transform: translateY(0);
    opacity: 1;
}
.oz-gallery-item .caption h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
}
.oz-gallery-item .caption p {
    margin: 0 0 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}
.oz-gallery-item .caption small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.sl-overlay {
    background-color: #000000;
    opacity: 0.7;
}
.sl-close,
.sl-prev,
.sl-next {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
}
.sl-caption {
    color: #eeeeee;
    background: rgba(0, 0, 0, 0.75);
    padding: 16px;
}
.sl-counter {
    color: #cccccc;
}

.album-section {
    margin-bottom: 4rem;
}

.album-section a{
    text-decoration:none;
}

.album-wide {
    background: linear-gradient(135deg, #1e1b2e, #2d1b47);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    transition: all 0.5s ease;
    margin-bottom: 2rem;
}

.album-wide:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(167, 139, 250, 0.4);
}

.album-header {
    padding: 30px 40px 20px;
    text-align: center;
}

.album-header h2 {
    margin: 0 0 12px;
    font-size: 2rem;
    color: #e0e0ff;
}

.album-header p {
    margin: 0 0 16px;
    font-size: 1.1rem;
    opacity: 0.9;
    color: #fff;
}

.album-header .meta {
    font-size: 1rem;
    opacity: 0.7;
    color: #fff;
}

/* ===== GANTI JADI GRID TANPA JS ===== */
.album-carousel {
    padding: 0 40px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* selalu 4 */
    gap: 15px;
}

/* sembunyikan sisanya */
.album-carousel img:nth-child(n+5) {
    display: none;
}

.album-carousel img {
    border-radius: 12px;
    width: 100%;
    height: 150px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,.5);
    transition: transform .3s;
}

.album-carousel img:hover {
    transform: scale(1.05);
}



/* ===== TEGAR ===== */

/* DEFAULT: page number tidak aktif */
.pagination .page-item:not(.active):not(.prev):not(.next) .page-link {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

/* PAGE AKTIF */
.pagination .page-item.active .page-link {
    background-color: #000;
    color: #fff;
    border-color: #000;
    font-weight: 600;
}

/* PREV & NEXT SELALU PUTIH */
.pagination .page-item.prev .page-link,
.pagination .page-item.next .page-link {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

/* DISABLED */
.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

/* HOVER (OPSIONAL) */
.pagination .page-link:hover {
    background-color: #000;
    color: #fff;
}

.blog-header {
    text-align: center;
}

.is-pricing-tier-service-checked::before {
    content: "✅";
    margin-right: 12px;
    font-size: 1.3rem;
}

.is-pricing-tier-service-unchecked::before {
    content: "❌";
    margin-right: 12px;
    font-size: 1.3rem;
}

/* Price List */
.bg-card-Personal {
    background-color: #aedefc;
}

.bg-card-Basic {
    background-color: #aedefc;
}

.bg-card-Standard {
    background-color: #f7eed3;
}

.bg-card-Enterprise {
    background-color: #f8fab4;
}

.footer-dark {
    background-color: #1a222e;
    color: white;
}

.price-card {
    border-radius: 15px;
    border: 1.5px solid black;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.85rem;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid gray;
}

.text-xsmall {
    font-size: 0.7rem;
    color: #666;
}

.oz-price-list-section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    border-radius: 13px;
    background-color: #f5fcff;
    background-image: radial-gradient(var(--oz-primary) 1px, transparent 0.8px);
    background-size: 24px 24px;
    /* background-attachment: fixed; */
    overflow: hidden;
}

.oz-price-list-container {
    position: relative;
    max-width: 1078px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
    border: 5px solid var(--oz-dark);
    box-shadow: 20px 20px 0 var(--oz-dark);

    transform: translate(-11px, 0px);
}

.oz-price-list-badge {
    position: absolute;
    top: -25px;
    right: 400px;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ff9f1c, #ffbe0b);
    border: 4px solid var(--oz-dark);
    box-shadow: 5px 5px 0 var(--oz-dark);
    transform: rotate(2deg);
    text-shadow: 2px 2px 2px var(--oz-dark);
    z-index: 10;
}

.oz-price-list-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background: var(--oz-primary);
    border-bottom: 5px solid var(--oz-dark);
}

.oz-price-list-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 0.85;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 4px 4px 1px var(--oz-dark);
}

.oz-price-list-price {
    background: #ffffff;
    padding: 20px 30px;
    border: 4px solid var(--oz-dark);
    box-shadow: 8px 8px 0 var(--oz-dark);
    transform: rotate(-2deg);
    text-align: right;
}

.oz-price-list-price-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--oz-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.oz-price-list-price-amount {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--oz-dark);
}

.oz-price-list-footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
}

.oz-price-list-footer::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 60px;
    font-size: 0.7rem;
    color: var(--oz-accent);
    font-weight: bold;
}

.oz-price-list-notes-title {
    display: block;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--oz-primary);
}

.oz-price-list-notes-item {
    font-size: 1rem;
    font-weight: 700;
    color: var(--oz-dark);
    line-height: 1.5;
    max-width: 480px;
}

.oz-btn-price-list {
    padding: 20px 50px;
    display: inline-block;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid var(--oz-dark);
    box-shadow: 6px 6px 0 var(--oz-dark);
    transition: 0.2s;
    background: var(--oz-accent);
    color: #ffffff;
}

.oz-btn-price-list:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 var(--oz-dark);
    background: var(--oz-primary);
}

.oz-triple-offer-container {
    max-width: 1279px;
    margin: 0 auto;
    margin-top: 48px;
    margin-bottom: 48px;
}

.oz-triple-offer-hero {
    background: #fff;
    border: 2px solid var(--oz-dark);
    box-shadow: 12px 12px 0px #000000;
    padding: 50px 20px;
    margin-bottom: 70px;
    text-align: center;
}

.oz-triple-offer-hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: var(--oz-primary);
    -webkit-text-stroke: 1.5px var(--oz-dark);
    margin-bottom: 20px;
    padding: 28px;
}

.oz-triple-offer-hero p {
    font-weight: 700;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 10px;
}

.oz-triple-offer-info-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: -40px 0 60px 0;
    flex-wrap: wrap;
}

.oz-triple-offer-info-item {
    background: #fffb00;
    border: 3px solid var(--oz-dark);
    padding: 8px 15px;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 4px 4px 0px var(--oz-dark);
}

.oz-triple-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.oz-triple-offer-card {
    background: #fff;
    border: 3px solid var(--oz-dark);
    box-shadow: 12px 12px 0px #000000;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.2s;
}

.oz-triple-offer-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 18px 18px 0px #000000;
}

.oz-triple-offer-card-featured {
    background: var(--oz-primary);
    color: white;
}

.oz-triple-offer-card-header {
    padding: 30px;
    border-bottom: var(--oz-border);
}

.oz-triple-offer-card-type {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.oz-triple-offer-card h2 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.oz-triple-offer-card-body {
    padding-top: 0px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 0px;
    flex-grow: 1;
}

.oz-triple-offer-price-box {
    background: #fff;
    border: 3px solid var(--oz-dark);
    padding: 15px;
    margin-bottom: 25px;
    color: var(--oz-dark);
}

.oz-triple-offer-main-price {
    font-size: 1.8rem;
    font-weight: 900;
    display: block;
}

.oz-triple-offer-sub-price {
    font-weight: 700;
    font-size: 0.9rem;
    color: #d00;
}

.oz-triple-offer-features-list {
    list-style: none;
    margin-bottom: 20px;
}

.oz-triple-offer-features-list li {
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.oz-triple-offer-target-text {
    font-style: italic;
    font-weight: 700;
    margin-top: 15px;
    font-size: 0.9rem;
    background: rgba(255, 251, 0, 0.3);
    padding: 5px;
}

.oz-triple-offer-footer-card {
    padding: 0 30px 30px 30px;
}

.oz-triple-offer-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--oz-dark);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border: 3px solid var(--oz-dark);
    box-shadow: 4px 4px 0px var(--oz-text-muted);
}

.oz-triple-offer-card-featured .oz-triple-offer-btn {
    background: #fffb00;
    color: black;
    box-shadow: 4px 4px 0px black;
}

.oz-triple-offer-cta-bottom {
    text-align: center;
    background: white;
    border: var(--oz-border);
    padding: 40px;
    box-shadow: 12px 12px 0px #000000;
}

.oz-triple-offer-btn-consult {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    border: 4px solid black;
    box-shadow: 8px 8px 0px black;
    transition: 0.2s;
}

.oz-triple-offer-btn-consult:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px black;
}

.oz-triple-offer-duration-badge {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #fffb00;
    border: 3px solid #000;
    padding: 5px 12px;
    font-weight: 900;
    transform: rotate(5deg);
    color: #000;
    z-index: 10;
}

/* ===== CANDRA ===== */

.about {
    padding: 50px 0;
    background: #fff;
}

.about-hero {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.about-image {
    width: 180px;
    border-radius: 12px;
    object-fit: cover;
}

.about-hero-content h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-hero-content p {
    color: #555;
    line-height: 1.6;
}

/* Classes */
.about-classes h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-classes ul {
    padding-left: 20px;
}

.about-classes li {
    margin-bottom: 6px;
}

/* Staff */
.about-staff {
    margin-top: 40px;
}

.about-staff-desc {
    color: #666;
    margin-bottom: 15px;
}

.about-staff-card {
    padding: 18px;
    background: #f9f9f9;
    border-left: 4px solid #ffd166;
    border-radius: 8px;
    margin-bottom: 15px;
}

.about-staff-card h3 {
    margin: 0;
    font-weight: 700;
}

.about-staff-card span {
    font-size: 13px;
    color: #777;
}

.about-staff-card a {
    color: #007bff;
    text-decoration: none;
}

.about-staff-card a:hover {
    text-decoration: underline;
}

/* Responsive */

/* Header Faq */
.faq-hero-wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.faq-hero-title {
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}

.border-start-custom {
    border-left: 2px solid #dee2e6;
}

/* SECTION */
.other-features-section {
    background-color: #f8f9fa;
}

.other-feature-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e6e9ee;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    height: auto;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.other-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

/* HEADER (ICON + TITLE SEJAJAR) */
.other-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ICON */
.other-feature-icon {
    width: 45px;
    height: 45px;
    background: #f1f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.other-feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* TITLE */
.other-feature-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

/* LOCK DETAIL TEXT SIZE */
.other-feature-card .collapse,
.other-feature-card .collapsing {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* DETAIL */
.other-feature-detail {
    background: #f9fafb;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
}

/* BORDER */
.other-feature-detail.border-top {
    border-top: 1px dashed #dee2e6;
}

/* SMOOTH HEIGHT ONLY */
.other-feature-card .collapsing {
    transition: height 0.2s ease;
}

/* ===== Hero Section ===== */
.career-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--oz-primary);
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
}

.career-hero-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--oz-primary);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.career-hero-lead {
    color: var(--oz-text-muted);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* ===== Application Methods Cards ===== */
.application-methods-grid {
    margin-bottom: 4rem;
}

.application-method-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    background-clip: padding-box;
    will-change: transform, box-shadow;
    border: none;
}

.application-method-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.14);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.14);
}

.application-method-card .card-body {
    padding: 1.875rem 1.625rem 2.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.application-method-title {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 700;
    color: var(--oz-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.application-method-text {
    color: var(--oz-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Stretch columns */
.application-methods-grid > .col-md-6 {
    display: flex;
}

/* Remuneration highlight */
.remuneration-box {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--oz-primary);
    background: var(--oz-secondary);
    padding: 1.25rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

/* Job Vacancy Section */
.job-vacancy-section {
    margin-bottom: 3rem;
}

.job-vacancy-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--oz-primary);
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.job-vacancy-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: var(--oz-primary);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Table career */
.table-responsive {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.table.table-bordered.table-striped {
    margin-bottom: 0;
    background: white;
}

.table th {
    background: var(--oz-primary);
    color: white;
    font-weight: 600;
    padding: 1rem 1.25rem;
    border: none;
}

.table td {
    padding: 1rem 1.25rem;
    vertical-align: top;
    border: 1px solid var(--oz-border);
    color: #495057;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(63, 130, 184, 0.05);
}

.table ul.mb-0 {
    padding-left: 1.25rem;
    list-style: disc;
    margin: 0;
}

.table ul li {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Horizontal Rule */
hr.my-5 {
    border-top: 2px solid var(--oz-border);
    opacity: 0.6;
}

/* about us */

.about-flow {
    background: linear-gradient(180deg, #e6f7ff 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* Comic book dot pattern background */
.about-flow::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#a7c7e7 15%, transparent 16%), radial-gradient(#a7c7e7 15%, transparent 16%);
    background-size: 30px 30px;
    background-position:
        0 0,
        15px 15px;
    opacity: 0.15;
    pointer-events: none;
}

.about-flow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url("image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0L1200,0L1200,120L0,120Z' fill='%233f82b8' opacity='0.15'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
}

.about-wrapper {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.about-image-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 25%);
    border-right: 12px dashed #3f82b8;
}

.about-image {
    width: 360px;
    border-radius: 28px;
    background: white;
    transform: scale(0.96) rotate(-1.5deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 14px solid #3f82b8;
    box-shadow:
        0 10px 0 #1a5fb4,
        0 20px 0 rgba(0, 0, 0, 0.1),
        15px 15px 0 rgba(63, 130, 184, 0.3),
        30px 30px 0 rgba(63, 130, 184, 0.2);
    position: relative;
    overflow: hidden;
}

/* Comic book motion lines on hover */
.about-image::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.8) 48%,
        rgba(255, 255, 255, 0.8) 52%,
        transparent 55%
    );
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
}

.about-image:hover {
    transform: scale(1.06) rotate(1.5deg);
    box-shadow:
        0 10px 0 #1a5fb4,
        0 20px 0 rgba(0, 0, 0, 0.15),
        20px 20px 0 rgba(63, 130, 184, 0.4),
        40px 40px 0 rgba(63, 130, 184, 0.3),
        60px 60px 0 rgba(63, 130, 184, 0.2);
    z-index: 100;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 5;
    border: 6px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Comic book "POW" burst effect on image */
.about-image::after {
    position: absolute;
    bottom: -35px;
    right: -25px;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ff4757;
    background: #ffd32a;
    padding: 6px 16px;
    border-radius: 50% 10% 50% 10%;
    transform: rotate(15deg);
    opacity: 0.85;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    z-index: 20;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%,
    100% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(15deg) translateY(-8px);
    }
}

.about-content-wrapper {
    height: 100vh;
    overflow-y: scroll;
    padding: 100px 60px 150px;
    scrollbar-width: none;
    background: white;
    border-left: 12px dashed #6cb4ee;
}
.about-content-wrapper::-webkit-scrollbar {
    display: none;
}

/* Section styling with comic book panels - COMPACT VERSION */
.section-about,
.section-staff,
.section-programs {
    min-height: 85vh;
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    background: white;
    border: 10px solid #3f82b8;
    border-radius: 28px;
    position: relative;
    box-shadow:
        10px 10px 0 rgba(63, 130, 184, 0.25),
        20px 20px 0 rgba(63, 130, 184, 0.15);
    margin-bottom: 60px;
    max-width: 95%;
}

/* Comic book corner fold effect */
.section-about::before,
.section-staff::before,
.section-programs::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3f82b8 0%, #3f82b8 50%, #e0f2fe 50%, #e0f2fe 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: 10;
    box-shadow: -3px 3px 0 rgba(0, 0, 0, 0.1);
}

.section-about.fade-in,
.section-staff.fade-in,
.section-programs.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Section title styling - comic book burst - COMPACT */
.section-about .section-subtitle,
.section-programs .section-subtitle,
.section-staff .section-subtitle {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
    background: linear-gradient(120deg, #ff4757, #ffa502, #3f82b8);
    text-transform: uppercase;
    margin-bottom: 28px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 45px;
    position: relative;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    border: 4px solid white;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.section-about .section-subtitle::after,
.section-programs .section-subtitle::after,
.section-staff .section-subtitle::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -12px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #3f82b8;
    z-index: -1;
}

.section-about p,
.section-staff p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1e3a8a;
    max-width: 700px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Comic book speech bubble list items - COMPACT */
.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0 40px;
    padding: 0;
    position: relative;
}

.about-list::before {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff4757;
    text-shadow: 4px 4px 0 rgba(63, 130, 184, 0.3);
    letter-spacing: -2px;
    z-index: -1;
    opacity: 0.25;
}

.about-list li {
    background: white;
    border: 7px solid #3f82b8;
    border-radius: 24px;
    padding: 15px;
    transform: rotate(-1.5deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        7px 7px 0 rgba(63, 130, 184, 0.25),
        14px 14px 0 rgba(63, 130, 184, 0.15);
    position: relative;
    overflow: hidden;
}

.about-list li::before {
    content: "";
    position: absolute;
    bottom: -22px;
    right: 18px;
    width: 55px;
    height: 55px;
    background: white;
    border: 7px solid #3f82b8;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 7px 7px 0 rgba(63, 130, 184, 0.2);
}

.about-list li::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 35px;
    height: 35px;
    background: white;
    border: 7px solid #3f82b8;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 7px 7px 0 rgba(63, 130, 184, 0.2);
}

.about-list li:hover {
    transform: rotate(0) scale(1.06) translateY(-12px);
    border-width: 9px;
    box-shadow:
        10px 10px 0 rgba(63, 130, 184, 0.35),
        20px 20px 0 rgba(63, 130, 184, 0.25),
        0 0 25px rgba(255, 100, 100, 0.4);
    z-index: 10;
    border-color: #ff4757;
}

.about-list li:hover::before,
.about-list li:hover::after {
    background: #ff6b81;
    border-color: #ff4757;
    box-shadow: 7px 7px 0 rgba(255, 71, 87, 0.4);
}

.about-list strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 rgba(63, 130, 184, 0.2);
    position: relative;
    z-index: 2;
}

.about-list span {
    font-size: 1rem;
    background: linear-gradient(120deg, #ffd32a, #ffa502);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 800;
    display: inline-block;
    margin-top: 6px;
    border: 3px solid #ff9e00;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

/* Staff section styling - COMPACT */
.about-staff {
    background: white;
    border: 8px solid #3f82b8;
    border-radius: 28px;
    padding: 35px;
    transform: rotate(-1deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        8px 8px 0 rgba(63, 130, 184, 0.25),
        16px 16px 0 rgba(63, 130, 184, 0.15);
    position: relative;
    max-width: 750px;
    margin-top: 25px;
}

.about-staff::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 18px;
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 35px solid #3f82b8;
    transform: rotate(10deg);
    z-index: -1;
}

.about-staff:hover {
    transform: rotate(0) scale(1.04) translateY(-12px);
    box-shadow:
        12px 12px 0 rgba(63, 130, 184, 0.35),
        24px 24px 0 rgba(63, 130, 184, 0.25),
        0 0 30px rgba(100, 200, 255, 0.5);
    border-width: 10px;
    z-index: 10;
}

.staff-name {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 rgba(63, 130, 184, 0.25);
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.staff-name::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: #ffd32a;
    z-index: -1;
    border-radius: 6px;
    transform: rotate(-2deg);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.staff-role {
    font-size: 1.35rem;
    color: #3f82b8;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.staff-role::after {
    content: "★";
    position: absolute;
    right: 0;
    top: -3px;
    font-size: 1.4rem;
    color: #ffd32a;
}

.section-staff a {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 45px;
    background: linear-gradient(120deg, #ff4757, #ff6b81);
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    border: 5px solid #ff1a4d;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s;
    margin-top: 12px;
    letter-spacing: -0.03em;
}

.section-staff a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #ff1a4d, #cc0033);
    z-index: -1;
    transition: transform 0.4s;
    transform: scaleX(0);
    transform-origin: right;
}

.section-staff a:hover {
    background: transparent;
    color: white;
    transform: translateX(4px) translateY(-2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
    border-color: #cc0033;
}

.section-staff a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Floating comic elements */
@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Add floating comic elements in the background */
.about-content-wrapper::before {
    position: fixed;
    font-weight: 800;
    font-size: 3.5rem;
    color: rgba(255, 71, 87, 0.1);
    top: 25%;
    left: 15%;
    animation: float 8s ease-in-out infinite;
    transform-origin: center;
    z-index: -1;
    pointer-events: none;
    text-shadow: 4px 4px 0 rgba(63, 130, 184, 0.1);
}

.about-content-wrapper::after {
    position: fixed;
    font-weight: 800;
    font-size: 4rem;
    color: rgba(63, 130, 184, 0.08);
    bottom: 20%;
    right: 10%;
    animation: float 10s ease-in-out infinite 1s;
    transform-origin: center;
    z-index: -1;
    pointer-events: none;
    text-shadow: 4px 4px 0 rgba(255, 211, 42, 0.2);
}

/* Section numbers as comic badges - COMPACT */
.section-about::after,
.section-programs::after,
.section-staff::after {
    content: attr(data-section-number);
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: #ff4757;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid white;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
    z-index: 20;
    animation: bounce 2s infinite;
}

.section-about::after {
    content: "1";
}
.section-programs::after {
    content: "2";
}
.section-staff::after {
    content: "3";
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .about-image {
        width: 320px;
        border-width: 12px;
    }

    .about-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }

    .about-content-wrapper {
        padding: 80px 50px 120px;
    }

    .section-about,
    .section-staff,
    .section-programs {
        padding: 45px 50px;
        margin-bottom: 50px;
    }
}

@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image-container {
        position: relative;
        height: auto;
        padding: 40px 20px;
        border-right: none;
        border-bottom: 12px dashed #3f82b8;
    }

    .about-content-wrapper {
        height: auto;
        border-left: none;
        padding: 70px 35px 100px;
    }

    .about-image {
        width: 280px;
    }

    .section-about,
    .section-staff,
    .section-programs {
        min-height: auto;
        margin-bottom: 505px;
        padding: 40px 45px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }
}
