:root {
    --marvel-red: #941434;
    --marvel-red-hover: #6F0F27;
    --marvel-dark: #151515;
}

body {
    margin: 0;
    padding: 0;
}

/* Top Bar */
.top-bar {
    background-color: var(--marvel-dark);
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.top-bar .btn-login {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.top-bar .btn-login:hover {
    color: var(--marvel-red);
}

.btn-free-book {
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}



/* Main Header */
.main-header {
    background-color: var(--marvel-dark);
    padding: 15px 0;
}

.jessetran-logo {
    height: 50px;
    width: auto;
}

/* Navigation */
.main-nav {
    background-color: var(--marvel-dark);
    border-top: 1px solid #333;
}

.main-nav .nav-link {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 15px 20px;
    border: none;
    background: transparent;
}

.main-nav .nav-link:hover {
    color: var(--marvel-red);
}

/* Mobile Menu */
.offcanvas {
    background-color: var(--marvel-dark);
    width: 375px !important;
}

@media only screen and (max-width: 768px) {
    .offcanvas {
        width: 100% !important;
    }
}


.offcanvas-header {
    border-bottom: 1px solid #333;
}

.offcanvas-body {
    padding: 0;
    position: relative;
    overflow: auto;
}

.mobile-menu-item {
    color: #fff;
    text-decoration: none;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.mobile-menu-item:hover {
    background-color: #222;
    color: #fff;
}

.btn-close-white {
    filter: invert(1);
}

/* Search Icon */
.search-icon {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.search-icon:hover {
    color: var(--marvel-red);
}

/* Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Menu Panel System */
.menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
}

.menu-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.menu-panel.slide-left {
    transform: translateX(-100%);
}

/* Submenu Specific */
.submenu-panel {
    transform: translateX(100%);
}

.submenu-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #333;
    gap: 15px;
}

.back-button {
    color: var(--marvel-red);
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.back-button:hover {
    color: var(--marvel-red);
    transform: translateX(-3px);
}

.submenu-title {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}


/* Hero Video Section */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Promotional Banner */
.promo-banner {
    background-color: #000;
    padding: 10px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #333;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.banner-text {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.banner-highlight {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Banner Adjustments */
@media (max-width: 768px) {
    .promo-banner {
        padding: 8px 0;
    }

    .banner-text,
    .banner-highlight {
        font-size: 0.65rem;
    }
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* CTA Button Container - Initially overlaps, then becomes sticky on scroll */
.hero-video-section {
    position: relative;
    width: 100%;
    overflow: visible;
}

.cta-container {
    position: sticky;
    top: 20px;
    z-index: 1000;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transform: translateY(38%);
    margin-top: -90px;
}


/* .cta-container {
    position: sticky;
    top: 20px;
    
    z-index: 1000;
    text-align: center;
    margin-top: -58px;
    
} */

.cta-container a {
    display: inline-block;
    padding: 15px 140px;
    background: white;
    color: #4169E1;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta-container a:hover {
    background-color: #6F0F27 !important;
    color: white !important;
}

/* CTA Button */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.price-label {
    background: var(--marvel-red);
    padding: 2px 15px;
    border-radius: 25px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.limited-time {
    color: white;
    font-weight: normal;
    font-size: 11px;
    text-transform: uppercase;
}


.btn-hero {
    background-color: white;
    color: #6366f1;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover {
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); */
    color: #6366f1;
    background-color: #f8f9fa;
}

/* Pause Button */
.pause-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pause-btn:hover {
    background-color: #000;
    transform: scale(1.1);
}

.pause-btn i {
    font-size: 1.2rem;
}

.swiper {
    padding: 40px 60px 60px;
    /* Tambah padding kiri-kanan untuk tombol */
    position: relative;
}


.swiper-slide {
    width: auto;
    /* Allow slides to size based on content */
}


/* Tambahkan di dalam tag <style> */
.reviewsSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.reviewsSwiper .swiper-slide .card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.reviewsSwiper .swiper-slide .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reviewsSwiper .swiper-slide .card-body p {
    flex: 1;
}

/* Untuk mobile, set min-height agar semua card sama tinggi */
@media (max-width: 767px) {
    .reviewsSwiper .swiper-slide {
        height: 100%;
    }

    .reviewsSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .reviewsSwiper .swiper-slide .card {
        min-height: 100%;
    }

    /* Padding lebih kecil untuk mobile */
    .swiper {
        padding: 40px 50px 60px;
    }
}

/* Styling tombol navigasi */
.swiper-button-next,
.swiper-button-prev {
    background-color: #941434;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Posisi tombol di luar slide area */
.swiper-button-next {
    right: 5px;
    /* Jarak dari kanan container */
}

.swiper-button-prev {
    left: 5px;
    /* Jarak dari kiri container */
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: white;
    font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #6F0F27;
    transform: scale(1.05);
}

/* Disabled state */
.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.swiper-button-disabled:hover {
    transform: none;
}

/* Responsive untuk tablet */
@media (max-width: 991px) {
    .swiper {
        padding: 40px 55px 60px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

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

/* Responsive untuk mobile */
@media (max-width: 575px) {
    .swiper {
        padding: 40px 45px 60px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

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

    .pause-btn {
        bottom: 60px !important;
        z-index: 9999;
    }
}



/* Adjust Ebook Card for Swiper */
.ebook-card:hover {
    transform: translateY(-10px);
}

.ebook-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    /* Remove border radius based on reference image if needed, or keep it */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    transition: box-shadow 0.3s ease;
}

.ebook-card:hover .ebook-cover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.ebook-card-title {
    color: #151515;
    /* Dark color for title on white background */
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.ebook-year {
    color: #999;
    font-size: 0.75rem;
    margin: 0;
    font-weight: 600;
}

/* White Section Spacer */
.white-section {
    background-color: #fff;
    padding: 60px 0;
}

/* Welcome Section */
.welcome-section {
    background-color: #000;
    color: white;
    padding: 100px 20px 80px;
    position: relative;
}

.welcome-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--gold-color);
}

.welcome-text {
    font-size: 1.1rem;
    color: var(--gold-color);
    line-height: 1.6;
}

.welcome-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-video-section {
        height: 60vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .welcome-section {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 768px) {
    .hero-video-section {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn-hero {
        padding: 15px 32px;
        font-size: 1rem;
    }


    .pause-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-image {
        width: 250px;
        height: 250px;
    }

    .welcome-section {
        padding: 80px 20px 60px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-video-section {
        min-height: 300px;
    }

    .btn-hero {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    /* .cta-container {
        bottom: -20px;
    }

    .cta-container a {
        top: 10px;
    } */

    .welcome-title {
        font-size: 1.75rem;
    }

    .welcome-image {
        width: 200px;
        height: 200px;
    }
}

/* Ebook Carousel Section */
.ebook-section {
    background-color: #151515;
    padding: 0;
    position: relative;
    overflow: visible;
}

.ebook-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}


/* Ebook Carousel Section */
.ebook-section {
    background-color: #151515;
    padding: 0;
    position: relative;
    overflow: visible;
}

.ebook-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* Top Section with Featured Comic */
.ebook-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
}

/* Left Content */
.ebook-left {
    background-color: #151515;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 80px));
    padding-bottom: 140px;
}

.ebook-badge {
    color: #999;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ebook-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ebook-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-release {
    background-color: var(--marvel-red);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    width: fit-content;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    transition: all 0.3s ease;
}

.btn-release:hover {
    background-color: #c41e22;
    color: white;
    transform: translateY(-2px);
}

/* Featured Comic Right Side */
.ebook-featured-right {
    background:
        repeating-linear-gradient(45deg,
            #2a2a2a,
            #2a2a2a 10px,
            #1f1f1f 10px,
            #1f1f1f 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    padding-left: 120px;
    position: relative;
    clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -80px;
    background-position: center;
    background-size: cover;
}

.featured-comic {
    display: block;
    max-width: 400px;
}

.featured-comic-mobile {
    display: none;
}

.featured-comic-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.featured-comic-img:hover {
    transform: rotate(0deg) scale(1.02);
}


/* Footer Styles */
.main-footer {
    background-color: #151515;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Footer Logo and Links */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--marvel-red);
}

/* Marvel Unlimited Section */
.footer-unlimited {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
}

.unlimited-icon {
    width: 60px;
    height: 60px;
}

.unlimited-text {
    flex: 1;
}

.unlimited-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.unlimited-desc {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
}

/* Social Media Section */
.footer-social {
    gap: 20px;
}

.social-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.social-icon {
    color: #999;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    text-align: center;
}

.social-icon:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.legal-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #fff;
}

.copyright {
    color: #666;
    margin-left: auto;
}


.main-header .d-flex {
    position: relative;
}

/* Left, Center, Right sections dengan lebar yang sama */
.header-left,
.header-right {
    flex: 1;
    min-width: 150px;
}

.header-left {
    /* Kosong untuk balance */
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.jessetran-logo {
    height: 40px;
    width: auto;
}

.btn-free-book {
    background-color: #941434 !important;
    text-decoration: none;
}

.btn-free-book:hover {
    background-color: #6F0F27 !important;
    color: #fff;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {

    .header-left,
    .header-right {
        min-width: 80px;
    }

    .btn-free-book {
        /* display: none; */
    }
}


.ebook-section {
    position: relative;
    overflow: hidden;
}

.hero-background {
    display: flex;
    min-height: 600px;
    position: relative;
}

/* Left Side - Solid Black Background */
.hero-left {
    flex: 0 0 55%;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    position: relative;
    z-index: 2;
}

/* Right Side - Pattern Background */
.hero-right {
    flex: 0 0 45%;
    background-color: #1a1a1a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Diagonal Pattern Overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, .4) 2px,
            rgba(0, 0, 0, .4) 4px);
    z-index: 1;
}

/* Vertical Divider Line */
.hero-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #e62429;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #ffffff;
}

.hero-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    background-color: #e62429;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 15px 35px;
    text-decoration: none;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #c41e22;
}

/* Comic Image */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    max-width: 350px;
    padding: 40px;
}

.hero-comic-image {
    width: 100%;
    height: auto;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transform: rotate(-5deg);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-background {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: 1 1 100%;
    }

    .hero-left {
        padding: 40px 30px;
    }

    .hero-left::after {
        display: none;
    }

    .hero-right {
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-left {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-image-wrapper {
        max-width: 220px;
        padding: 30px;
    }
}

/* Jesse Tran - Ebook Section with Diagonal Cut */
.jessetran_ebook-section {
    background-color: #151515;
    padding: 0;
    position: relative;
    overflow: visible;
}

.jessetran_ebook-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
    margin: 0 auto;
}

.jessetran_ebook-left {
    background-color: #151515;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
    padding-right: 140px;
    position: relative;
    z-index: 2;
}

.jessetran_ebook-badge {
    color: #999;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.jessetran_ebook-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.jessetran_ebook-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.jessetran_btn-release {
    background-color: var(--marvel-red);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    width: fit-content;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    transition: all 0.3s ease;
}

.jessetran_btn-release:hover {
    background-color: (var(--marvel-red-hover));
    color: white;
}

.jessetran_ebook-right {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -80px;
}

/* Responsive for Jesse Tran Ebook Section */
@media (max-width: 1200px) {
    .jessetran_ebook-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .jessetran_ebook-left {
        clip-path: none;
        padding: 0;
        padding-right: 40px;
        text-align: center;
    }

    .jessetran_ebook-right {
        clip-path: none;
        margin-left: 0;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .jessetran_ebook-left {
        padding: 40px 20px;
    }

    .jessetran_ebook-title {
        font-size: 2rem;
    }

    .jessetran_ebook-right {
        min-height: 300px;
    }
}





/* Blue Outline Button */
.btn-outline-blue {
    border: 1px solid #1f78b5;
    color: #1f78b5;
    background-color: #fff;
}

.btn-outline-blue:hover {
    border: 1px solid #1f78b5;
    color: #1f78b5;
    background-color: #e6f1f9;
}

.btn-outline-blue:focus,
.btn-outline-blue:active {
    border: 1px solid #1f78b5;
    color: #1f78b5;
    background-color: #cce4f3;
    box-shadow: 0 0 0 0.25rem rgba(31, 120, 181, 0.25);
}

.btn-outline-blue:disabled {
    border: 1px solid #1f78b5;
    color: #1f78b5;
    background-color: #fff;
    opacity: 0.65;
}

/* Dark Green Button */
.btn-darkgreen {
    background-color: #7da427;
    border-color: #7da427;
    color: #fff;
}

.btn-darkgreen:hover {
    background-color: #6b8f1d;
    border-color: #6b8f1d;
    color: #fff;
}

.btn-darkgreen:focus,
.btn-darkgreen:active {
    background-color: #5a7a19;
    border-color: #5a7a19;
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(125, 164, 39, 0.5);
}

.btn-darkgreen:disabled {
    background-color: #7da427;
    border-color: #7da427;
    color: #fff;
    opacity: 0.65;
}

/* Dark Green Outline Button */
.btn-outline-darkgreen {
    border: 1px solid #7da427;
    color: #7da427;
    background-color: transparent;
}

.btn-outline-darkgreen:hover {
    background-color: #7da427;
    border-color: #7da427;
    color: #fff;
}

.btn-outline-darkgreen:focus,
.btn-outline-darkgreen:active {
    background-color: #6b8f1d;
    border-color: #6b8f1d;
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(125, 164, 39, 0.5);
}

/* Background Utility Classes */
.bg-darkgreen {
    background-color: #7da427 !important;
    color: #fff !important;
}

.bg-blue {
    background-color: #1f78b5 !important;
    color: #fff !important;
}

/* Text Color Utilities */
.text-darkgreen {
    color: #7da427 !important;
}

.text-blue {
    color: #1f78b5 !important;
}

/* Border Color Utilities */
.border-darkgreen {
    border-color: #7da427 !important;
}

.border-blue {
    border-color: #1f78b5 !important;
}


.tab-switcher {
    max-width: 600px;
    font-family: sans-serif;
    position: relative;
    user-select: none;
    margin: 0;
}

/* Untuk mobile: tampil dropdown */
.tab-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: white;
    padding: 12px 16px;
    border-radius: 30px;
    cursor: pointer;
}

.arrow {
    margin-left: 8px;
}

.tab-options {
    display: none;
    flex-direction: column;
    background-color: #f7f7f7;
    margin-top: 6px;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: absolute;
    width: 100%;
    z-index: 999;
}

.tab-option {
    padding: 10px;
    text-align: left;
    border-radius: 30px;
    margin: 4px;
    cursor: pointer;
    display: flex;
    gap: 5px;
}

.tab-option:hover {
    background-color: #e0e0e0;
    text-decoration: none;
}

.show {
    display: flex;
}

.selected-label {
    color: #fff;
}

.txt-decoration-none {
    text-decoration: none;
}

.txt-decoration-none:hover {
    text-decoration: none;
}

/* Desktop: ubah menjadi tab */
@media (min-width: 657px) {
    .tab-selected {
        display: none;
    }

    .tab-options {
        display: flex !important;
        position: static;
        flex-direction: row;
        background-color: #f2f2f2;
        padding: 4px;
        border-radius: 30px;
        box-shadow: none;
        margin-top: 0;
    }

    .tab-option {
        background-color: #f2f2f2;
        color: black;
    }

    .tab-option.active {
        background-color: #222;
        color: white;
    }
}

.tab-pane {
    display: none;
}

.tab-pane-active {
    display: block !important;
}



/* 1. Base Card Style (Label) */
.format-box {
    border: 2px solid #e5e7eb;
    /* Border abu-abu netral saat tidak dipilih */
    background-color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width: 100%;
    position: relative;
    overflow: visible;
    /* Wajib visible agar ribbon bisa keluar */

    /* PADDING PROPORSIONAL */
    /* Top 3.5rem (56px) memberi ruang agar teks tidak tertutup ribbon */
    padding: 3.5rem 1.5rem 1.5rem 1.5rem;
}

/* 2. Logic Saat Radio Button Dipilih (:checked) */
/* Saat input radio (d-none) diceklis, ubah style label tetangganya */
.format-radio:checked+.format-box {
    border-color: #1e5bb0;
    /* Warna biru border saat aktif */
    background-color: #f0f7ff;
    /* Warna background biru muda saat aktif */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* 3. Logic Icon Checkmark */
.check-icon {
    font-size: 1.5rem;
    color: #cbd5e1;
    /* Abu-abu saat tidak dipilih */
    transition: color 0.2s;
}

/* Ubah warna icon jadi hijau saat dipilih */
.format-radio:checked+.format-box .check-icon {
    color: #198754;
    /* Bootstrap Success Green */
}

/* 4. Ribbon Styling (Sesuai snippet sebelumnya) */
.ribbon {
    /* Default variables (jika tidak ada inline style) */
    --f: 10px;
    --r: 10px;
    --bg: #f47721;

    position: absolute;
    background: var(--bg);
    /* Mengambil warna dari inline style HTML Anda */
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 8px 16px;
    /* Padding dalam ribbon */
    z-index: 10;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Ribbon Posisi Kiri */
.ribbon.left {
    top: 20px;
    /* Jarak dari atas */
    left: calc(-1 * var(--f));
    /* Geser keluar kiri */

    /* Shadow lipatan menggunakan border-bottom */
    border-bottom: var(--f) solid #b3520f;
    /* Warna shadow statis atau bisa pakai var darker */

    /* Clip-path shape */
    clip-path: polygon(0 0,
            100% 0,
            calc(100% - var(--r)) 50%,
            /* Ekor */
            100% calc(100% - var(--f)),
            var(--f) calc(100% - var(--f)),
            var(--f) 100%,
            0 calc(100% - var(--f)));
}

.banner-text a:hover {
    text-decoration: none;
    color: #941434 !important;
}

select,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(200, 200, 200);
    border-image: initial;
    padding: 12px 15px !important;
}


.fullInput,
.majorInput {
    font-size: 1em;
    color: rgb(50, 51, 55);
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(170, 170, 170);
    border-image: initial;
    border-radius: 4px;
    padding: 12px 15px !important;
}

.fullInput {
    width: 100%;
}

.btn-send-now {
    background-color: #7FA92E;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    font-size: 1.1rem;
}

.btn-send-now:hover {
    background-color: #6d9126;
    color: white;
}

.jessetran_ebook-readmore {
    display: none;
}

.jessetran_ebook-readmore.show {
    display: block;
}

.jessetran_ebook-readmore-link {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

.jessetran_ebook-readmore-link:hover {
    text-decoration: underline;
}

.btn-send-now:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    background-color: #7FA92E;
    color: #fff;
}

.confirmGreen {
    padding: 10px;
    border: 1px solid #00a651;
    background: #def0da;
    text-align: center;
    margin-bottom: 20px;
    color: #568453;
    border-radius: 5px;
}

.container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.breadcrumb-wrapper {
    margin-bottom: 3rem;
}


.breadcrumb-wrapper a:hover {
    color: #941434 !important;
}
