.affirmation-carousel-container {
    margin-bottom: 2rem;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(12px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.05),
        0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: background 0.8s ease;
}

.aff-slides-wrapper {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.aff-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 3rem 1.5rem;
    text-align: center;

    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(8px);

    transition:
        opacity 0.8s cubic-bezier(0.25, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.3, 1),
        filter 0.8s ease;

    pointer-events: none;
    z-index: 1;
}


.aff-slide.aff-slide--active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);

    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.aff-slide-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
}

.aff-slide--active .aff-slide-inner {
    animation: floatContinuous 5s ease-in-out 1s infinite;
}

@keyframes floatContinuous {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bg-soft-purple {
    background: linear-gradient(135deg, #fbf7ff 0%, #ece0fa 100%);
}

.bg-soft-orange {
    background: linear-gradient(135deg, #fffaf6 0%, #fee4cd 100%);
}

.bg-soft-blue {
    background: linear-gradient(135deg, #f5f9ff 0%, #dceaff 100%);
}

.affirmation-icon {
    font-size: 3.2rem;
    margin-bottom: 1.05rem;
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.aff-slide--active .affirmation-icon {
    animation: iconEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

@keyframes iconEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-25deg) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateY(0);
    }
}

.bg-soft-purple .affirmation-icon {
    color: #8338ec;
}

.bg-soft-orange .affirmation-icon {
    color: #fb5607;
}

.bg-soft-blue .affirmation-icon {
    color: #3a86ff;
}

.affirmation-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #1f2937;
    letter-spacing: -0.5px;

    opacity: 0;
    transform: translateY(20px);
}

.aff-slide--active .affirmation-title {
    animation: textEntrance 0.7s cubic-bezier(0.25, 1, 0.3, 1) 0.25s forwards;
}

.affirmation-text {
    font-size: 1.05rem;
    color: #4b5563;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;

    opacity: 0;
    transform: translateY(20px);
}

/* Text animation */

.aff-slide--active .affirmation-text {
    animation: textEntrance 0.7s cubic-bezier(0.25, 1, 0.3, 1) 0.4s forwards;
}

@keyframes textEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aff-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 0 1.05rem;
    position: relative;
    z-index: 10;
}

.aff-dot {
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 999px;

    background: rgba(156, 163, 175, 0.4);

    height: 8px;
    width: 8px;

    transition:
        width 0.4s cubic-bezier(0.25, 1, 0.3, 1),
        background 0.3s ease,
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.aff-dot:hover {
    background: rgba(107, 114, 128, 0.8);
    transform: scale(1.2);
}

.aff-dot.aff-dot--active {
    background: #5d2a77;
    width: 36px;
    transform: scale(1);
    box-shadow: 0 3px 10px rgba(93, 42, 119, 0.4);
}

@media (max-width:768px) {
    .aff-slide {
        padding: 2rem 1.5rem 1.5rem;
    }

    .affirmation-text {
        max-width: 100%;
        font-size: 1.05rem;
    }

    .affirmation-title {
        font-size: 1.35rem;
    }

    .aff-slides-wrapper {
        min-height: 230px;
    }
}

.collection {
    background-color: #FAFAFA !important;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    z-index: 1;
}

/* Elegant radial glow backdrops */
.collection::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 70, 211, 0.05) 0%, rgba(250, 250, 250, 0) 70%);
    top: 5%;
    left: -15%;
    pointer-events: none;
    z-index: -1;
}

.collection::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93, 42, 119, 0.04) 0%, rgba(250, 250, 250, 0) 70%);
    bottom: 5%;
    right: -15%;
    pointer-events: none;
    z-index: -1;
}

.text-collection h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--high-ungu);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.text-collection .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Card Link Container */
.pcard-link {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    width: 100%;
}

/* Premium Glassmorphic Card */
.pcard {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid transparent !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75)),
        linear-gradient(135deg, rgba(93, 42, 119, 0.12), rgba(255, 255, 255, 0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 10px 30px -15px rgba(93, 42, 119, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pcard:hover {
    transform: translateY(-8px);
    background-image: linear-gradient(#FFFFFF, #FFFFFF),
        linear-gradient(135deg, rgba(163, 70, 211, 0.4), rgba(232, 189, 255, 0.2));
    box-shadow:
        0 20px 40px -15px rgba(93, 42, 119, 0.15),
        0 0 30px 2px rgba(163, 70, 211, 0.08);
}

/* Top Accent Line Colors */
.pcard-accent-line {
    height: 5px;
    width: 100%;
    opacity: 0.85;
    transition: all 0.5s ease;
}

.pcard:hover .pcard-accent-line {
    height: 7px;
    opacity: 1;
}

.bg-fisik {
    background: linear-gradient(90deg, #FF6B6B, #FF8E53);
}

.bg-psikis {
    background: linear-gradient(90deg, #8338EC, #B5179E);
}

.bg-bullying {
    background: linear-gradient(90deg, #3A86FF, #00B4D8);
}

.bg-seksual {
    background: linear-gradient(90deg, #E63946, #FF4D6D);
}

.bg-diskriminasi {
    background: linear-gradient(90deg, #06D6A0, #118AB2);
}

.bg-kebijakan {
    background: linear-gradient(90deg, #FFB703, #FB8500);
}

/* Card Body */
.pcard-body {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 1;
}

/* Icon Container */
.pcard-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 1.8rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pcard:hover .pcard-icon-wrapper {
    transform: scale(1.08) translateY(-2px);
    background: #FFFFFF;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.color-fisik {
    color: #FF6B6B !important;
}

.color-psikis {
    color: #8338EC !important;
}

.color-bullying {
    color: #3A86FF !important;
}

.color-seksual {
    color: #E63946 !important;
}

.color-diskriminasi {
    color: #06D6A0 !important;
}

.color-kebijakan {
    color: #FB8500 !important;
}

/* Category Title Highlighted Badge */
.pcard-title-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 12px;
    background: rgba(93, 42, 119, 0.04);
    border: 1px solid rgba(93, 42, 119, 0.05);
    margin-bottom: 1.05rem;
    width: fit-content;
    transition: all 0.3s ease;
}

.pcard:hover .pcard-title-badge {
    background: rgba(93, 42, 119, 0.07);
    border-color: rgba(93, 42, 119, 0.12);
}

.pcard-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #2D2D2D;
    margin: 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.pcard:hover .pcard-title {
    color: var(--high-ungu);
}

/* Description Text */
.pcard-text {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

/* Card Footer Interactive Elements */
.pcard-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--high-ungu);
    margin-top: auto;
    transition: all 0.3s ease;
}

.read-more-text {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.read-more-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.pcard:hover .pcard-footer {
    color: var(--semi-high-ungu);
}

.pcard:hover .read-more-text {
    opacity: 1;
}

.pcard:hover .read-more-icon {
    transform: translateX(5px);
}

.bgpp {
    background: linear-gradient(135deg, var(--high-oren), var(--semi-medium-oren));
    height: 300px;
    color: white;
}

.panduanph {
    padding-top: 0;
    padding-right: 20px;
}

.panduanp {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.panduanh {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.3;
}

.pbutton2 {
    padding-top: 0;
    padding-left: 0;
}

.button-panduan {
    font-family: 'Montserrat', sans-serif !important;
    height: 60px;
    width: 100%;
    max-width: 380px;
    background-color: var(--maroon5);
    border-radius: 8px;
    border: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: 0.3s;
    color: white;
}

.button-panduan:hover {
    background-color: var(--burgundy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.polybtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pbutton {
    width: 12px;
}

.berita {
    background-color: var(--high-ungu);
    padding-top: 80px;
    padding-bottom: 80px;
    height: auto;
}

.beritah {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.pberita {
    padding-left: 50px;
}

.becard {
    width: 100%;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(93, 42, 119, 0.1);
}

.blog-card-img-wrapper {
    height: 240px;
    overflow: hidden;
    padding: 16px;
    padding-bottom: 0;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-date {
    font-size: 1.05rem;
}

.blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--high-ungu);
}

.pertanyaan {
    padding-top: 140px;
}

.pertanyaanh {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
}

.pertanyaanp {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
}

.button-pertanyaan {
    font-family: 'Montserrat', sans-serif !important;
    height: 40px;
    width: 180px;
    background-color: var(--maroon5);
    border-radius: 6px;
    border: none;
    font-weight: bold;
    transition: 0.3s;
    color: white;
}

.button-pertanyaan:hover {
    background-color: var(--burgundy);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.imgpertanyaan {
    height: 500px;
    width: auto;
    cursor: pointer;
}

.navdef {
    color: var(--maroon5);
}

.navdef:hover {
    color: var(--burgundy);
}

.defnav {
    color: var(--maroon5);
}

.defnav:hover {
    color: var(--burgundy);
}

.defhero {
    background-image: url(../assets/Rectangle\ 21.png);
    margin-top: 150px;
    height: 420px;
    width: 500px;
    border-radius: 6px;
    margin-left: 100px;
}

.definfo {
    margin: 30px;
}

.imgdef {
    margin-left: 550px;
    border-radius: 6px;
    margin-top: -360px;
    height: 420px;
    width: 500px;
}

.jenisks {
    background-image: url(../assets/Rectangle\ 21.png);
    height: 500px;
    margin-top: 50px;
}

.hks {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: bold;
    color: white;
}

.bgks {
    background-color: white;
    height: 150px;
    width: 100%;
    border-radius: 6px;
    padding-top: 20px;
}

.hjenis {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
}

.pjenis {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.05rem;
    font-weight: 550;
}

.bgks2 {
    margin-top: 30px;
    background-color: white;
    height: 150px;
    width: 45%;
    border-radius: 6px;
    padding-top: 7px;
    margin-left: 12px;
}

.bgks3 {
    margin-top: 30px;
    background-color: white;
    height: 150px;
    width: 45%;
    border-radius: 6px;
    padding-top: 7px;
    margin-left: 90px;
}

.hcks {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: bold;
}

.pictall {
    margin-top: 40px;
    margin-left: 100px;
}

.pict {
    background-image: url(../assets/Rectangle\ 21.png);
    height: 200px;
    width: 200px;
    padding: 30px;
    border-radius: 6px;
}

.picta {
    width: 100px;
}

.pict2 {
    background-image: url(../assets/Rectangle\ 80.png);
    height: 200px;
    width: 200px;
    padding: 30px;
    border-radius: 6px;
}

.p3 {
    color: white;
    font-family: 'Montserrat', sans-serif !important;
}

.p6 {
    font-family: 'Montserrat', sans-serif !important;
}

.pphero {
    margin-top: 80px;
    padding-bottom: 80px;
}

.hpngn {
    font-weight: 800;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.8rem;
}

.hppngn {
    font-weight: 700;
    color: var(--maroon5);
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.3rem;
}

.bghpngn {
    background-color: #D9D9D9;
    height: 200px;
    width: 45%;
    border-radius: 6px;
    padding: 10px;
    margin-left: 50px;
}

.bghpngn2 {
    background-color: #D9D9D9;
    height: 200px;
    width: 45%;
    border-radius: 6px;
    padding: 10px;
    margin-left: 35px;
}

.bghpngn3 {
    background-color: #D9D9D9;
    height: 200px;
    width: 45%;
    border-radius: 6px;
    padding: 10px;
    margin-left: 50px;
    margin-top: 30px;
}

.bghpngn4 {
    background-color: #D9D9D9;
    height: 200px;
    width: 45%;
    border-radius: 6px;
    padding: 10px;
    margin-left: 35px;
    margin-top: 30px;
}

.imghp {
    width: 150px;
    position: absolute;
    left: 450px;
    bottom: 220px;
}

.imghp2 {
    width: 150px;
    position: absolute;
    left: 1005px;
    bottom: 220px;
}

.imghp3 {
    width: 150px;
    position: absolute;
    left: 450px;
    bottom: -10px;
}

.imghp4 {
    width: 150px;
    position: absolute;
    left: 1005px;
    bottom: -10px;
}

.pncghks {
    margin-top: 70px;
    background-image: url(../assets/Rectangle\ 21.png);
    height: 500px;
}

.pencegahpict {
    margin-left: 35px;
}

.allpict {
    padding-top: 100px;
    margin-left: 90px;
}

.allpict2 {
    padding-top: 50px;
    margin-left: 100px;
}

.hpncgh {
    font-weight: 700;
    font-family: 'Montserrat', sans-serif !important;
    color: white;
}

.pictpks {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-left: 5px;
    padding-top: 10px;
    margin-left: 95px;
}

.pictpks2 {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-top: 10px;
    margin-left: -30px;
}

.pictpks3 {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-top: 10px;
    padding-left: 5px;
    margin-left: -10px;
}

.pictpks3a {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-top: 10px;
    margin-left: -45px;
}

.pictpks4 {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-top: 10px;
    padding-left: 5px;
    margin-left: -77px;
}

.pictpks4a {
    background-color: white;
    height: 150px;
    width: 150px;
    border-radius: 6px;
    padding-top: 10px;
    margin-left: -115px;
}

.imgpks {
    width: 70px;
}

.tks {
    font-size: 1.05rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
}

.imgttgkmi {
    background-image: url(../assets/ttgkami.png);
    height: 400px;
    margin-top: 80px;
    padding-top: 120px;
}

.httgkmi {
    color: white;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
}

.bghttgkmi {
    background-image: url(../assets/Rectangle\ 21.png);
    margin-top: 100px;
    height: 400px;
    width: 100%;
    border-radius: 6px;
}

.imgell {
    width: 200px;
    margin-top: 50px;
}

.himgttg {
    color: white;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
}

.pimgttg {
    color: white;
    font-family: 'Montserrat', sans-serif !important;
}

.filosofi {
    margin-top: 330px;
}

.imgfilo {
    height: 250px;
    margin-left: 50px;
}

.mgfilo {
    margin-top: 45px;
    margin-right: 70px;
}

.hfilo {
    color: var(--maroon5);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
}

.pfilo {
    font-family: 'Montserrat', sans-serif !important;
}

.bgfilo {
    background-image: url(../assets/Rectangle\ 21.png);
}

.bgim {
    background-image: url(../assets/Rectangle\ 21.png);
    height: 250px;
    margin-top: 50px;
    padding-top: 60px;
}

.him {
    color: white;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
    text-align: center;
}

.pim {
    color: white;
    font-family: 'Montserrat', sans-serif !important;
    text-align: justify;
}

.padclrplt {
    padding-top: 50px;
}

.clrplt {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600px;
    text-align: center;
}

.imgclrplt {
    width: 100%;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.plyfd {
    background-color: #D9D9D9;
    width: 100%;
    height: 100px;
    padding: 15px;
    margin-bottom: 50px;
}

.ply {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
    color: var(--maroon5);
}

.pply {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
    font-size: large;
}

.Montserrat {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
    color: var(--maroon5);
}

.pMontserrat {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
    font-size: large;
}

/* ===== TABLET RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .berita {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .beritah {
        font-size: 1.8rem;
    }

    .collection {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
    .affirmation-carousel-container {
        margin-bottom: 1.05rem;
    }

    .aff-slides-wrapper {
        min-height: 180px;
    }

    .aff-slide {
        padding: 1.5rem 1.05rem 1.05rem;
    }

    .affirmation-title {
        font-size: 1.05rem;
    }

    .affirmation-text {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .berita {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .beritah {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .herop {
        font-size: 1.05rem;
    }

    .blog-card-img-wrapper {
        height: 200px;
        padding: 12px;
    }

    .blog-title {
        font-size: 1.05rem;
    }

    .collection {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .text-collection {
        padding-bottom: 1.05rem !important;
    }

    .text-collection h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .text-collection p {
        font-size: 1.05rem;
    }

    .pcard .card-body {
        padding: 1.25rem;
    }

    .panduanimg {
        width: 50px;
        height: 50px;
        padding: 10px;
        margin-bottom: 16px;
    }

    .pcard .card-title {
        font-size: 1.05rem;
    }

    .pcard .szf {
        font-size: 1.05rem;
    }

    .blog-card {
        border-radius: 16px;
    }
}

@media (max-width: 575.98px) {
    .button-panduan {
        width: 100%;
        max-width: 280px;
    }

    .bgreport {
        padding: 40px 15px;
    }

    .affirmation-carousel-container {
        border-radius: 14px;
        margin-bottom: 0.5rem;
    }

    .aff-slides-wrapper {
        min-height: 160px;
    }

    .aff-slide {
        padding: 1.05rem 1.05rem 0.8rem;
    }

    .affirmation-title {
        font-size: 1.05rem;
    }

    .affirmation-text {
        font-size: 1.05rem;
    }

    .affirmation-icon {
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem;
    }

    .aff-dots {
        padding: 0 0 0.8rem;
        gap: 8px;
    }

    .berita {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .beritah {
        font-size: 1.25rem;
    }

    .blog-card-img-wrapper {
        height: 180px;
        padding: 10px;
    }

    .blog-title {
        font-size: 1.05rem;
    }

    .blog-date {
        font-size: 1.05rem;
    }

    .blog-card .card-body {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 10px;
        padding-bottom: 14px;
    }

    .pcard .card-body {
        padding: 1.1.05rem;
    }

    .collection {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .text-collection h3 {
        font-size: 1.4rem;
    }
}

/* ==========================================
   HOMEPAGE EXPANSION & MODERNIZATION CSS
   ========================================== */

/* General background mesh and glows */
.home-page-wrapper {
    position: relative;
    background-color: #FAFAFA;
    overflow: hidden;
}

.home-mesh-glow-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: 5%;
    left: -15%;
    pointer-events: none;
    z-index: 0;
}

.home-mesh-glow-2 {
    position: absolute;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.09) 0%, rgba(255, 255, 255, 0) 70%);
    top: 25%;
    right: -12%;
    pointer-events: none;
    z-index: 0;
}

.home-mesh-glow-3 {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(93, 42, 119, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: 10%;
    left: -10%;
    pointer-events: none;
    z-index: 0;
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating particles in Hero */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(93, 42, 119, 0.15), rgba(230, 57, 70, 0.08));
    animation: floatSlow 8s infinite ease-in-out;
}

/* Hero card enhancement */
.hero-wrapper {
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, rgba(245, 239, 255, 0.4) 0%, rgba(250, 250, 250, 0) 100%);
    overflow: visible;
}

.hero-card {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 3rem;
    box-shadow:
        0 20px 40px -15px rgba(93, 42, 119, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.02);
}

/* Section Common Titles */
.section-title-wrapper {
    margin-bottom: 3.5rem;
}

.section-pre-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--high-oren);
    margin-bottom: 8px;
    display: block;
}

.section-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--high-ungu);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-desc-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 1. Timeline Section: Bagaimana Pelaporan Bekerja */
.timeline-section {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.timeline-flow-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    padding-top: 40px;
}

.timeline-step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    position: relative;
    box-shadow:
        0 10px 25px -10px rgba(93, 42, 119, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    text-align: center;
}

.timeline-step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--high-oren), var(--high-ungu));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-step-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--high-ungu), var(--semi-high-ungu));
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(93, 42, 119, 0.3);
}

.timeline-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--soft-purple);
    color: var(--high-ungu);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 10px auto 16px;
    transition: all 0.3s ease;
}

.timeline-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.timeline-step-text {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Connective lines between steps */
.timeline-connectors-wrapper {
    position: absolute;
    top: 130px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(93, 42, 119, 0.08);
    z-index: 1;
}

.timeline-connect-line {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--high-oren) 0%, var(--high-ungu) 100%);
    transition: width 1.5s ease-in-out;
}

/* Hover behaviors */
.timeline-step-card:hover {
    transform: translateY(-8px);
    background: #FFFFFF;
    box-shadow:
        0 20px 35px -10px rgba(93, 42, 119, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.02);
}

.timeline-step-card:hover::before {
    opacity: 1;
}

.timeline-step-card:hover .timeline-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--high-ungu), var(--semi-high-ungu));
    color: white;
}

/* 2. Status Penanganan Kasus Section */
.status-tracker-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, rgba(245, 242, 249, 0.4) 100%);
}

.tracker-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 50px;
}

/* Vertical line */
.tracker-line-path {
    position: absolute;
    top: 10px;
    left: 19px;
    bottom: 10px;
    width: 3px;
    background: rgba(93, 42, 119, 0.1);
}

.tracker-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--high-oren) 0%, var(--high-ungu) 100%);
    transition: height 2s ease-in-out;
}

.tracker-node {
    position: relative;
    margin-bottom: 30px;
}

.tracker-node:last-child {
    margin-bottom: 0;
}

.tracker-node-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 3px solid rgba(93, 42, 119, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -50px;
    top: 5px;
    z-index: 2;
    transition: all 0.4s ease;
    font-size: 1.05rem;
    font-weight: 700;
}

.tracker-node-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    box-shadow:
        0 8px 20px -10px rgba(93, 42, 119, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tracker-node-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracker-badge {
    font-size: 1.05rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tracker-node-desc {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Category colors for tracker badges */
.badge-state-1 {
    background-color: rgba(93, 42, 119, 0.1);
    color: var(--high-ungu);
}

.badge-state-2 {
    background-color: rgba(251, 86, 7, 0.1);
    color: #fb5607;
}

.badge-state-3 {
    background-color: rgba(58, 134, 255, 0.1);
    color: #3a86ff;
}

.badge-state-4 {
    background-color: rgba(255, 0, 110, 0.1);
    color: #ff006e;
}

.badge-state-5 {
    background-color: rgba(131, 56, 236, 0.1);
    color: #8338ec;
}

.badge-state-6 {
    background-color: rgba(255, 190, 11, 0.1);
    color: #e5b000;
}

.badge-state-7 {
    background-color: rgba(6, 214, 160, 0.1);
    color: #06d6a0;
}

.badge-state-8 {
    background-color: rgba(230, 57, 70, 0.1);
    color: #e63946;
}

/* Active tracker styles */
.tracker-node.active .tracker-node-indicator {
    border-color: var(--high-ungu);
    background: linear-gradient(135deg, var(--high-ungu), var(--semi-high-ungu));
    color: white;
    box-shadow: 0 0 12px rgba(93, 42, 119, 0.4);
}

.tracker-node.active .tracker-node-card {
    background: #FFFFFF;
    border-color: rgba(93, 42, 119, 0.2);
    box-shadow:
        0 15px 30px -10px rgba(93, 42, 119, 0.1);
}

/* 3. Komitmen Ruang Aman Section */
.commitment-section {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.commitment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.commitment-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow:
        0 10px 25px -10px rgba(93, 42, 119, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.commitment-card:hover {
    transform: translateY(-6px);
    background: #FFFFFF;
    box-shadow:
        0 20px 40px -15px rgba(93, 42, 119, 0.12),
        0 0 25px rgba(163, 70, 211, 0.04);
    border-color: rgba(163, 70, 211, 0.15);
}

.commitment-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(93, 42, 119, 0.08) 0%, rgba(230, 57, 70, 0.03) 100%);
    color: var(--high-ungu);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.commitment-card:hover .commitment-icon-wrapper {
    background: linear-gradient(135deg, var(--high-ungu), var(--semi-high-ungu));
    color: white;
    transform: scale(1.08) rotate(3deg);
}

.commitment-card-title {
    font-size: 1.05rem;
    font-weight: 750;
    color: #111827;
    margin-bottom: 10px;
}

.commitment-card-text {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 4. Jenis Kekerasan Cards Enhanced Hover */
.pcard {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pcard-link:hover .pcard {
    transform: translateY(-8px) scale(1.01);
    background: #FFFFFF;
    box-shadow:
        0 25px 45px -15px rgba(93, 42, 119, 0.15),
        0 0 35px 2px rgba(163, 70, 211, 0.06);
    border-color: rgba(93, 42, 119, 0.1) !important;
}

.pcard-accent-line {
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: height 0.3s ease;
}

.pcard-link:hover .pcard-accent-line {
    height: 6px;
}

.pcard-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.pcard-link:hover .pcard-icon-wrapper {
    transform: scale(1.1);
    color: white !important;
}

.pcard-link:hover .pcard-icon-wrapper.color-fisik {
    background: #FF6B6B;
}

.pcard-link:hover .pcard-icon-wrapper.color-psikis {
    background: #8338EC;
}

.pcard-link:hover .pcard-icon-wrapper.color-bullying {
    background: #3A86FF;
}

.pcard-link:hover .pcard-icon-wrapper.color-seksual {
    background: #E63946;
}

.pcard-link:hover .pcard-icon-wrapper.color-diskriminasi {
    background: #06D6A0;
}

.pcard-link:hover .pcard-icon-wrapper.color-kebijakan {
    background: #FB8500;
}

.read-more-icon {
    transition: transform 0.3s ease;
}

.pcard-link:hover .read-more-icon {
    transform: translateX(4px);
}

/* 5. Kenapa Harus Melapor Section */
.why-report-section {
    position: relative;
    padding: 80px 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(245, 242, 249, 0.4) 0%, rgba(250, 250, 250, 0) 100%);
}

.why-report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-report-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-report-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(10px);
    z-index: 0;
}

.why-report-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.05));
    animation: floatContinuous 6s ease-in-out infinite;
}

.why-report-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.why-report-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.why-report-bullet-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(6, 214, 160, 0.1);
    color: #06d6a0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-report-item-title {
    font-size: 1.05rem;
    font-weight: 750;
    color: #111827;
    margin-bottom: 4px;
}

.why-report-item-text {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 6. FAQ Accordion Section */
.faq-section {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 15px -5px rgba(93, 42, 119, 0.02),
        0 1px 2px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(93, 42, 119, 0.15);
    box-shadow:
        0 10px 25px -10px rgba(93, 42, 119, 0.06),
        0 2px 5px rgba(0, 0, 0, 0.01);
}

.faq-btn {
    width: 100%;
    padding: 1.3rem 1.6rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 750;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-btn:focus {
    outline: none;
}

.faq-btn-icon {
    font-size: 1.05rem;
    color: var(--high-ungu);
    transition: transform 0.3s ease;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.3);
}

.faq-body {
    padding: 0 1.6rem 1.4rem;
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.7;
}

/* Active FAQ Styles */
.faq-item.active {
    background: #FFFFFF;
    border-color: rgba(93, 42, 119, 0.2);
    box-shadow:
        0 15px 30px -15px rgba(93, 42, 119, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.02);
}

.faq-item.active .faq-btn-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-panel {
    max-height: 300px;
}

/* 7. Kontak Darurat & Bantuan Section */
.emergency-section {
    position: relative;
    padding: 60px 0 100px;
    z-index: 1;
}

.emergency-banner-card {
    background: linear-gradient(135deg, #1b0e27 0%, #301744 100%);
    border-radius: 32px;
    padding: 3.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(27, 14, 39, 0.35);
}

.emergency-banner-card::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.emergency-content-wrapper {
    position: relative;
    z-index: 1;
}

.emergency-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.emergency-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.emergency-card-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.emergency-card-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.emergency-item-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.emergency-card-item:hover .emergency-item-icon-box {
    background: var(--accent-red);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.emergency-item-label {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}

.emergency-item-value {
    font-size: 1.05rem;
    font-weight: 750;
    color: white;
    margin-bottom: 12px;
    word-break: break-word;
}

.emergency-link-btn {
    margin-top: auto;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.emergency-link-btn:hover {
    color: white !important;
}

.emergency-link-btn i {
    transition: transform 0.3s ease;
}

.emergency-link-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Overrides for new elements */
@media (max-width: 991.98px) {
    .timeline-flow-container {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        gap: 30px;
    }

    .timeline-col {
        width: 100% !important;
    }

    .timeline-connectors-wrapper {
        display: none;
    }

    .timeline-step-card {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding-top: 2rem;
    }

    .commitment-card {
        flex: 1 1 calc(50% - 30px);
        max-width: 450px;
    }

    .timeline-step-badge {
        left: 30px;
        transform: none;
    }

    .timeline-icon-box {
        margin: 0;
        flex-shrink: 0;
    }

    .why-report-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-report-visual {
        order: 2;
    }

    .emergency-banner-card {
        padding: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .tracker-container {
        padding-left: 35px;
    }

    .tracker-line-path {
        left: 14px;
    }

    .tracker-node-indicator {
        width: 30px;
        height: 30px;
        left: -40px;
        font-size: 1.05rem;
    }

    .tracker-badge {
        display: none;
    }

    .emergency-banner-card {
        padding: 1.8rem;
    }

    .commitment-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}