/* root */
:root {
    --font-inter: "Inter", sans-serif;
    --color-white: #ffffff;
}

/* hero-section-home */
.container-fluid.hero-section-home {
    background: url("../img/backgrounds/index-hero.png") no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    height: auto;
    padding-top: 100px;
    padding-bottom: 0;
    z-index: 1;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    position: relative;
    /* Hide scrollbar completely */
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE and Edge */
}

.container-fluid.hero-section-home::-webkit-scrollbar {
    display: none !important;
    /* Chrome, Safari and Opera */
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.container-fluid.hero-section-home * {
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE and Edge */
}

.container-fluid.hero-section-home *::-webkit-scrollbar {
    display: none !important;
    /* Chrome, Safari and Opera */
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.container-fluid.hero-section-home .container {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

.hero-section-home .btn1-custom {
    padding: 10px 27px;
    background-color: rgba(217, 217, 217, 0.52);
    border: 1px solid var(--color-white);
    border-radius: 10px;
    transition: all 0.4s ease;
}

.hero-section-home .btn1-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    box-shadow: 0 0 15px rgba(76, 143, 255, 0.5);
    transition: all 0.4s ease;
}

/* up 768px */
.game-cards {
    margin-top: 10rem;
    z-index: 150;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    pointer-events: none;
}

.game-cards a {
    pointer-events: auto;
}

.game-cards>div {
    width: 230px;
    height: 300px;
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    border: 1px solid var(--color-white);
    cursor: pointer;
    z-index: 10;
    display: block !important;
    user-select: none;
    -webkit-user-drag: none;
    flex-shrink: 0;
    flex-grow: 0;
}

.game-cards>div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Card Rotations - 5 Cards */
.card1 {
    transform: translateX(40px) rotate(-12deg) translateY(60px);
    z-index: 1;
}

.card2 {
    transform: translateX(30px) rotate(-6deg) translateY(4px);
    z-index: 2;
}

.card3 {
    transform: translateX(0) rotate(0deg) translateY(-40px);
    z-index: 10;
}

.card4 {
    transform: translateX(-30px) rotate(6deg) translateY(4px);
    z-index: 2;
}

.card5 {
    transform: translateX(-40px) rotate(12deg) translateY(60px);
    z-index: 1;
}

/* Responsive Scaling for Game Cards */
/* Laptop 1024px */
@media screen and (max-width: 1120px) {
    .game-cards>div {
        width: 200px;
        height: 260px;
    }

    .card1 {
        transform: translateX(35px) rotate(-12deg) translateY(50px);
    }

    .card2 {
        transform: translateX(20px) rotate(-6deg) translateY(0px);
    }

    .card3 {
        transform: translateX(0) rotate(0deg) translateY(-30px);
    }

    .card4 {
        transform: translateX(-20px) rotate(6deg) translateY(0px);
    }

    .card5 {
        transform: translateX(-35px) rotate(12deg) translateY(50px);
    }
}

/* Tablet (≤992px) - 3 cards sama besar, posisi seperti laptop (turun) */
@media screen and (max-width: 992px) {

    .game-cards .card4,
    .game-cards .card5 {
        display: none !important;
    }

    .game-cards {
        margin-top: 6rem;
        justify-content: center;
        align-items: flex-end;
        overflow: visible;
    }

    .game-cards>div {
        width: 200px;
        height: 300px;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }

    .game-cards>div img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    /* Pola seperti 1440px: sisi turun (translateY +), tengah sedikit naik (-) */
    .card1 {
        transform: translateX(20px) rotate(-8deg) translateY(45px);
        z-index: 1;
    }

    .card2 {
        transform: translateX(0) rotate(0deg) translateY(4px);
        z-index: 10;
    }

    .card3 {
        transform: translateX(-20px) rotate(8deg) translateY(45px);
        z-index: 1;
    }
}

/* Mobile (≤768px) - 3 cards sama besar, posisi turun seperti laptop */
@media screen and (max-width: 768px) {

    .hero-section-home.container-fluid,
    .hero-section-home .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hero-section-home .container .hero-title {
        font-size: 1.75rem !important;
    }

    .hero-section-home .container .hero-sub {
        font-size: 0.95rem !important;
    }

    .game-cards .card4,
    .game-cards .card5 {
        display: none !important;
    }

    .game-cards {
        margin-top: 9rem !important;
        padding: 0 4px !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center;
        align-items: flex-end;
        overflow: visible;
    }

    .game-cards>div {
        width: 180px;
        height: 270px;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }

    .game-cards>div img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .card1 {
        transform: translateX(15px) rotate(-6deg) translateY(40px);
        z-index: 1;
    }

    .card2 {
        transform: translateX(0) rotate(0deg) translateY(4px);
        z-index: 10;
    }

    .card3 {
        transform: translateX(-15px) rotate(6deg) translateY(40px);
        z-index: 1;
    }
}

@media screen and (max-width: 480px) {
    .game-cards {
        margin-top: 8rem !important;
    }

    .game-cards>div {
        width: 150px;
        height: 225px;
    }

    .card1 {
        transform: translateX(12px) rotate(-5deg) translateY(32px);
    }

    .card2 {
        transform: translateX(0) rotate(0deg) translateY(4px);
    }

    .card3 {
        transform: translateX(-12px) rotate(5deg) translateY(32px);
    }
}

/* most popular */
.most-popular {
    background: url("../img/backgrounds/most-popular.png") no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    width: 100%;
    max-width: 100vw;
    height: auto;
    margin-top: -160px;
    /* Negative margin to pull it up */
    z-index: 100 !important;
    position: relative;
    overflow-x: hidden !important;
}

.most-popular .btn1-custom {
    padding: 10px 27px;
    background-color: rgba(217, 217, 217, 0.52);
    border: 1px solid var(--color-white);
    border-radius: 10px;
    transition: all 0.4s ease;
}

.most-popular .btn1-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    box-shadow: 0 0 15px rgba(76, 143, 255, 0.5);
    transition: all 0.4s ease;
}

.most-popular .most-popular-title {
    font-size: 55px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper .swiper-slide {
    width: 240px;
    height: 360px;
    background: rgba(255, 255, 255, 0.2);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

/* Most popular - jarak & border radius rapi di mobile */

/* Laptop 1024px - portrait format */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .swiper .swiper-slide {
        width: 240px;
        height: 360px;
    }
}

@media screen and (max-width: 768px) {
    .most-popular {
        margin-top: -60px;
    }

    .most-popular .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .most-popular .col-md-5 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .swiper .swiper-slide {
        border-radius: 14px;
    }

    .swiper-slide img {
        border-radius: 14px;
    }

    .swiper .swiper-slide {
        width: 200px;
        height: 300px;
        border-radius: 12px;
    }

    .swiper-slide img {
        border-radius: 12px;
    }
}

@media screen and (max-width: 480px) {
    .most-popular .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .swiper .swiper-slide {
        width: 170px;
        height: 255px;
        border-radius: 14px;
    }

    .swiper-slide img {
        border-radius: 14px;
    }
}

@media screen and (max-width: 375px) {
    .swiper .swiper-slide {
        width: 160px;
        height: 230px;
    }
}

@media screen and (max-width: 1120px) {
    .most-popular {
        margin-top: -100px;
        /* Moderate for tablets/small laptops */
    }
}

/*  top up in 4 easy steps  */
.easy-steps {
    background: #000000;
    position: relative;
}


/* why choose us */
.why {
    background: #000000;
}

.why ul {
    font-size: 18px;
}

.why .why-chara::before {
    position: absolute;
    content: "";
    background: radial-gradient(circle, #003fff, #003fff00 70%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.why .why-chara {
    z-index: 10;
    width: 570px;
    height: 550px;
    position: relative;
}

.why .why-chara img {
    z-index: 10;
    width: 100%;
    height: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media screen and (max-width: 525px) {
    .why .why-chara {
        width: 480px;
        height: 480px;
    }

    .why .why-chara::before {
        width: 420px;
        height: 420px;
    }
}

/* Tablet (<=992px) */
@media screen and (max-width: 992px) {
    .why .why-chara {
        width: 400px;
        height: 400px;
    }

    .why .why-chara::before {
        width: 380px;
        height: 380px;
    }
}

/* Laptop 1024px - horizontal layout like 1440px */
@media screen and (min-width: 993px) and (max-width: 1120px) {
    .why .row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .why .col-sm-12.col-md-6.col-xl-6:first-child {
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding-right: 2rem;
    }

    .why .col-sm-12.col-md-6.col-xl-6.why-chara {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin: 0 !important;
        padding-left: 2rem;
    }

    .why h1 {
        text-align: left !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .why ul {
        text-align: left !important;
        list-style: disc !important;
        padding-left: 1.5rem !important;
        margin: 0 !important;
        width: 100% !important;
        display: block !important;
    }

    .why ul li {
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .why .why-chara {
        width: 450px !important;
        height: 450px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .why .why-chara::before {
        width: 420px !important;
        height: 420px !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* Tablet specific - center and align all elements (768px - 992px) */
@media screen and (min-width: 768px) and (max-width: 992px) {
    .why .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .why .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .why .col-sm-12.col-md-6.col-xl-6 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .why h1 {
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    .why ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0 auto;
        width: 100%;
    }

    .why ul li {
        text-align: center;
        width: 100%;
        max-width: 600px;
    }

    .why .why-chara {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 2rem auto 0;
        width: 320px !important;
        height: 320px !important;
    }

    .why .why-chara img {
        margin: 0 auto;
    }

    .why .why-chara::before {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px !important;
        height: 300px !important;
    }
}

/* Mobile sedang (<=576px) */
@media screen and (max-width: 576px) {
    .why .why-chara {
        width: 320px;
        height: 320px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why .why-chara::before {
        width: 300px;
        height: 300px;
    }
}

/* Mobile to small tablet (577px - 767px) - center everything like tablet */
@media screen and (min-width: 577px) and (max-width: 767px) {
    .why .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .why .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .why .col-sm-12.col-md-6.col-xl-6 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .why h1 {
        text-align: center !important;
        margin: 0 auto;
        width: 100%;
    }

    .why ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .why ul li {
        text-align: center !important;
        width: 100%;
        max-width: 600px;
        list-style: none !important;
    }

    .why p {
        text-align: center !important;
    }

    .why .why-chara {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 2rem auto 0;
        width: 360px !important;
        height: 360px !important;
    }

    .why .why-chara img {
        margin: 0 auto;
    }

    .why .why-chara::before {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 340px !important;
        height: 340px !important;
    }
}



@media screen and (max-width: 376px) {
    .why .why-chara {
        width: 400px;
        height: 400px;
    }

    .why .why-chara::before {
        width: 320px;
        height: 320px;
    }
}

/* Mobile kecil (<=400px) */
@media screen and (max-width: 400px) {
    .why .why-chara {
        width: 260px;
        height: 260px;
    }

    .why .why-chara::before {
        width: 240px;
        height: 240px;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -40%);
    }
}

/* What Players Say */
.testimonial {
    background: url("../img/backgrounds/testi-bg.png") no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    width: 100%;
    height: auto;
}

.glide__slide.testi-cardd {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 1px solid white;
    height: auto;
    min-height: 250px;
    box-sizing: border-box;
}

.glide__slide.testi-cardd .testi-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .glide__slide.testi-cardd {
        min-height: 270px;
    }
}

@media (max-width: 820px) {
    .glide__slide.testi-cardd {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .glide__slide.testi-cardd {
        min-height: 240px;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .glide__slide.testi-cardd {
        min-height: 280px;
        padding: 1rem;
    }
}

@media (max-width: 375px) {
    .glide__slide.testi-cardd {
        min-height: 320px;
    }
}

/* Glide Container Positioning */
.glide {
    position: relative;
}

/* Glide Navigation Arrows */
.glide__arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.glide__arrow {
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(4px);
    pointer-events: auto;
}

.glide__arrow--left {
    left: 10px;
}

.glide__arrow--right {
    right: 10px;
}

.glide__arrow i {
    font-size: 18px;
}

/* Glide Pagination - Blue bullets to match other swipers */
.glide__bullets {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.glide__bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.glide__bullet:hover {
    background: rgba(76, 143, 255, 0.5);
    border-color: #4c8fff;
}

.glide__bullet--active {
    background: #4c8fff;
    border-color: #4c8fff;
    transform: scale(1.2);
}

/* Arrows visible on all devices including mobile */


/* faqs section */
.faqs-section {
    position: relative;
    background: #000000;
    z-index: 1;
    color: #fff;
}

.faq {
    margin: 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.accordion {
    background: transparent;
    color: #fff;
    width: 100%;
    padding: 1.5rem 2rem;
    outline: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion i {
    font-size: 1.3rem;
    color: #fff;
    transition: transform 0.3s ease;
}

/* efek hover */
.accordion:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* rotasi icon saat aktif */
.accordion.active i {
    transform: rotate(180deg);
}

.pannel {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pannel p {
    margin: 1.5rem 0 0;
    line-height: 1.6;
}

/* panel terbuka */
.faq.active .pannel {
    padding-bottom: 1.5rem;
    max-height: 300px;
    /* bisa kamu ubah sesuai tinggi konten */
}

/* Mobile responsive - text align left */
@media (max-width: 768px) {
    .accordion {
        text-align: left;
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
    }

    .pannel {
        text-align: left;
        padding: 0 1rem;
    }

    .pannel p {
        text-align: left;
        margin: 1.2rem 0 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .accordion {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }

    .pannel {
        padding: 0 0.8rem;
    }
}

/* Latest News Section */
.latest-news-section {
    position: relative;
    background: #000000;
    z-index: 1;
}

.news-blog-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: inherit;
}

.news-blog-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.news-blog-content {
    padding: 20px;
}

.news-category-badge {
    margin-bottom: 12px;
}

.news-category-badge span {
    background: rgba(76, 143, 255, 0.2);
    color: #4c8fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(76, 143, 255, 0.3);
}

.news-blog-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-blog-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 15px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-meta {
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-date {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 400;
}

.news-read-more {
    color: #4c8fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: #6ba3ff;
    text-decoration: none;
}

.latest-news-section .btn1-custom {
    padding: 12px 30px;
    background-color: rgba(217, 217, 217, 0.52);
    border: 1px solid var(--color-white);
    border-radius: 10px;
    transition: all 0.4s ease;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.latest-news-section .btn1-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    box-shadow: 0 0 15px rgba(76, 143, 255, 0.5);
    transition: all 0.4s ease;
    color: #fff;
}

/* Responsive for news cards */
@media (max-width: 768px) {
    .news-blog-img {
        height: 180px;
    }

    .news-blog-content {
        padding: 15px;
    }

    .news-blog-content h5 {
        font-size: 1rem;
    }

    .news-blog-content p {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .newsSwiper .news-blog-card {
        min-height: 550px;
        height: 550px;
    }
}

/* News Swiper Carousel for Mobile */
.newsSwiper {
    width: 100%;
    padding-bottom: 50px;
}

.newsSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.newsSwiper .news-blog-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    height: 600px;
}

.newsSwiper .swiper-pagination {
    bottom: 10px;
}

.newsSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.newsSwiper .swiper-pagination-bullet-active {
    background: #4c8fff;
}


/* Get in Touch Section - now with gradient background */
.get-in-touch-section {
    position: relative;
    background: linear-gradient(to bottom, #000000 0%, #000000 10%, #001a66 60%, #007bff 100%);
    z-index: 1;
    color: #fff;
}

/* get in touch */
.get-in-touch-section .row {
    /* gap: -70px; removed invalid gap */
    justify-content: center;
}

.sosial {
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sosial a {
    background: rgba(0, 20, 66, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
}

.sosial a i {
    font-size: 35px;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    max-width: 35px;
    max-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    text-align: center;
    color: var(--color-white);
}

.sosial a:hover {
    background: rgba(0, 20, 66, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.sosial p {
    margin-top: 1rem;
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {


    .sosial a {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        max-width: 70px;
        max-height: 70px;
        padding: 20px;
    }

    .sosial a i {
        font-size: 30px;
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        max-width: 30px;
        max-height: 30px;
    }
}

@media screen and (max-width: 576px) {


    .sosial a {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        max-width: 60px;
        max-height: 60px;
        padding: 18px;
    }

    .sosial a i {
        font-size: 26px;
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
        max-width: 26px;
        max-height: 26px;
    }
}

/* ===== SEMUA PRODUK (All Products) - section & cards ===== */
.container-fluid.popular {
    background: #000000;
    color: #fff;
}

.container-fluid.popular .editor-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.container-fluid.popular .editor-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.container-fluid.popular .editor-line {
    flex-grow: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.container-fluid.popular a {
    display: block;
    width: 100%;
}

.container-fluid.popular .pop-card {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    display: block;
}

.container-fluid.popular .pop-card:hover {
    border-color: #4c8fff;
    box-shadow: 0 0 15px rgba(76, 143, 255, 0.5);
    transform: translateY(-5px);
}

/* Semua Produk - responsive card */
@media screen and (min-width: 769px) {
    .container-fluid.popular .pop-card {
        max-height: 280px;
        object-fit: cover;
    }
}

@media screen and (max-width: 768px) {
    .container-fluid.popular .editor-title h3 {
        font-size: 1.25rem;
    }

    .container-fluid.popular .editor-title {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .container-fluid.popular .editor-title h3 {
        font-size: 1.1rem;
    }

    .container-fluid.popular .editor-title {
        margin-bottom: 0.75rem;
        gap: 12px;
    }
}

/* Swiper Custom Navigation & Gradients */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    z-index: 10;
}

/* Specific styling for newsSwiper buttons to remove hover animation */
.newsSwiper .swiper-button-next,
.newsSwiper .swiper-button-prev {
    transition: none;
    width: 40px;
    height: 40px;
}

.newsSwiper .swiper-button-next {
    right: 10px;
}

.newsSwiper .swiper-button-prev {
    left: 10px;
}

.newsSwiper .swiper-button-next:after,
.newsSwiper .swiper-button-prev:after {
    font-size: 16px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Hide swiper arrows on mobile except for newsSwiper */
@media (max-width: 768px) {

    .swiper-button-next:not(.newsSwiper .swiper-button-next),
    .swiper-button-prev:not(.newsSwiper .swiper-button-prev) {
        display: none;
    }

    /* Ensure newsSwiper and mySwiper buttons are visible on mobile */
    .newsSwiper .swiper-button-next,
    .newsSwiper .swiper-button-prev,
    .mySwiper .swiper-button-next,
    .mySwiper .swiper-button-prev {
        display: flex !important;
    }
}

.swiper-gradient-left,
.swiper-gradient-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 5;
    pointer-events: none;
}

.swiper-gradient-left {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.swiper-gradient-right {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Pagination Dots Customization */
.swiper-pagination.lol .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #ffffff;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-pagination.lol .swiper-pagination-bullet-active {
    background: #4c8fff;
    border-color: #4c8fff;
}

/* Mobile Fix for Carousel Images (Portrait Mode) */
@media screen and (max-width: 576px) {
    .swiper-slide {
        height: auto !important;
        aspect-ratio: 2/3;
    }

    .swiper-slide p-3.rounded-3 {
        padding: 0 !important;
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
}