:root {
    --hepigo-red: #ff0000;
    --hepigo-dark: #333333;
    --hepigo-gold: #ffd700;
    --hepigo-gray: #666666;
    --hepigo-light: #f8f9fa;

    /* Font Variables */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Outfit', sans-serif;

    /* Font Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
}

/* General Styles */
* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

/* Enable text selection for content areas */
p,
h1,
h2,
h3,
h4,
h5,
h6,
.text-content,
.content-section {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Ensure all containers respect viewport width */
.container,
.container-fluid,
.row,
[class*='col-'] {
    max-width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

/* Enable text selection for content areas */
p,
h1,
h2,
h3,
h4,
h5,
h6,
.text-content,
.content-section {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Header and Navbar Styles */
.header-nav {
    background-color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(0);
    will-change: transform, background-color, box-shadow;
}

/* Navbar hidden state */
.header-nav.nav-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

/* Scrolled state with background effect */
.header-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

/* Ensure smooth transitions for mobile menu */
.navbar-collapse {
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

/* Prevent transition on page load */
.no-transition {
    transition: none !important;
}

/* Scroll Behavior Classes */
.header-nav {
    transform: translateY(0);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.header-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
}

.header-nav.nav-up {
    transform: translateY(-100%);
}

.header-nav.nav-hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar-nav {
    padding: 0.5rem 0;
}

.nav-item {
    position: relative;
    padding: 0 0.5rem;
}

.nav-link {
    color: var(--hepigo-dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem 1.5rem !important;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.nav-link:hover {
    color: var(--hepigo-red) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--hepigo-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link:hover::before {
    width: 70%;
}

.navbar-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Logo Bar Styles */
.logo-bar {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-link img {
    height: 50px;
    width: auto;
}

.navbar-brand-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

.navbar-brand,
.navbar-brand-app {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-link img {
    height: 50px;
    width: auto;
}

.navbar-brand img,
.navbar-brand-app img {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover,
.navbar-brand-app img:hover {
    transform: translateY(-2px);
}

.navbar-nav {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    margin: 0 auto;
    max-width: 800px;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .header-nav {
        height: auto;
        transform-origin: top;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header-nav.nav-hidden {
        transform: translateY(-100%) scale(0.98);
        opacity: 0;
    }

    .header-nav.scrolled {
        background-color: rgba(255, 255, 255, 0.98);
    }

    .logo-bar {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: border-color 0.3s ease;
    }

    .logo-link img {
        height: 40px;
        transition: transform 0.3s ease;
    }

    .logo-link:hover img {
        transform: translateY(-2px);
    }

    .navbar {
        padding: 0.5rem;
        background-color: #ffffff;
    }

    .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-top: 0.75rem;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav {
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0.25rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    .nav-link:hover {
        background-color: rgba(255, 0, 0, 0.1);
        transform: translateX(5px);
        color: var(--hepigo-red) !important;
    }

    .nav-link::before {
        display: none;
    }

    .dropdown-menu {
        box-shadow: none;
        background-color: rgba(255, 0, 0, 0.05);
        margin: 0.5rem 0;
        padding: 0.75rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 0, 0, 0.1);
        position: static !important;
        transform: none !important;
        width: 100%;
    }

    .dropdown-item {
        text-align: center;
        padding: 0.75rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .dropdown-item:hover {
        transform: translateX(5px);
        background-color: rgba(255, 0, 0, 0.1);
        color: var(--hepigo-red);
    }

    .navbar-brand-container {
        padding: 0 15px;
        max-width: 100%;
    }

    .navbar-brand img,
    .navbar-brand-app img {
        height: 35px;
    }

    .navbar {
        padding: 0.5rem;
        background-color: #ffffff;
    }

    .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-top: 0.75rem;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav {
        gap: 0.5rem;
        padding: 0.5rem;
        flex-direction: column;
        max-width: 100%;
        justify-content: flex-start;
    }

    .navbar-nav .nav-link {
        color: var(--hepigo-dark) !important;
        font-weight: 500;
    }

    .navbar-nav .nav-link.active {
        color: #ffffff !important;
        background: var(--hepigo-red);
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.15);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0.25rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-align: center;
        white-space: nowrap;
    }

    .nav-link:hover {
        background-color: rgba(255, 0, 0, 0.1);
        transform: translateX(5px);
        color: var(--hepigo-red) !important;
    }

    .nav-link::before {
        display: none;
    }

    .dropdown-menu {
        box-shadow: none;
        background-color: rgba(255, 0, 0, 0.05);
        margin: 0.5rem 0;
        padding: 0.75rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 0, 0, 0.1);
        position: static !important;
        transform: none !important;
        width: 100%;
    }

    .dropdown-item {
        text-align: center;
        padding: 0.75rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .dropdown-item:hover {
        transform: translateX(5px);
        background-color: rgba(255, 0, 0, 0.1);
        color: var(--hepigo-red);
    }
}

@media (max-width: 575.98px) {
    .navbar-top {
        padding: 0.25rem 0;
    }

    .navbar-brand-container {
        padding: 0.5rem 1rem;
    }

    .navbar-brand img,
    .navbar-brand-app img {
        height: 30px;
    }

    .navbar-collapse {
        padding: 0.75rem;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .dropdown-menu {
        border: none;
        background: transparent;
        padding-left: 1rem;
        box-shadow: none;
    }

    .dropdown-item {
        color: #666;
        padding: 0.5rem 1rem;
    }

    .dropdown-item:hover {
        background: rgba(255, 0, 0, 0.1);
        color: var(--hepigo-red);
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0 !important;
        white-space: nowrap;
    }
}

.nav-link {
    color: var(--hepigo-dark) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--hepigo-red) !important;
    opacity: 0.9;
}

.nav-link.active {
    color: var(--hepigo-red) !important;
    font-weight: 600;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--hepigo-dark);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.dropdown-item:hover {
    background-color: rgba(255, 0, 0, 0.05);
    color: var(--hepigo-red);
    transform: translateX(5px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover {
    background-color: rgba(255, 0, 0, 0.1);
}

.navbar-toggler.active {
    background-color: rgba(255, 0, 0, 0.1);
    border-color: var(--hepigo-red);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

@media (max-width: 991.98px) {
    .navbar-top {
        padding: 0.5rem 0;
    }

    .navbar-brand-container {
        padding: 0 15px;
        max-width: 100%;
    }

    .navbar-brand,
    .navbar-brand-app {
        padding: 0 10px;
    }

    .navbar-brand img,
    .navbar-brand-app img {
        height: 35px;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 0;
        border-radius: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .nav-link {
        padding: 0.5rem 0 !important;
        text-align: center;
        white-space: nowrap;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        text-align: center;
    }

    .navbar-toggler {
        margin: 0.5rem auto;
    }
}

/* Top Info Bar */
.top-info-bar {
    padding: 8px 0;
    color: #ffffff;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info-items {
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    font-size: 0.8rem;
    opacity: 0.9;
}

.info-item span {
    font-weight: 500;
    letter-spacing: 0.2px;
}

.top-social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    color: #ffffff;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .top-info-items {
        justify-content: center;
        text-align: center;
        padding: 0.5rem 0;
    }

    .top-social-links {
        justify-content: center;
        padding: 0.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Logo Bar Styles */
.logo-bar {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.logo-link {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--hepigo-red), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-link:hover::after {
    opacity: 1;
}

.logo-link img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Main Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hepigo-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: var(--font-secondary);
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--hepigo-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--hepigo-gray);
    margin-bottom: 3rem;
    font-weight: 500;
    text-align: center;
}

/* Card Styles */
.info-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-card .card-body {
    padding: 2rem;
}

.info-card .card-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.info-card .text-content h3 {
    color: var(--hepigo-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card .text-content p {
    color: var(--hepigo-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.info-card .icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 0, 0, 0.1);
}

.info-card .info-icon {
    width: 60%;
    height: auto;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}

/* Main Navigation Styles */
.navbar {
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar-nav {
    padding: 0.5rem 0;
}

.nav-item {
    position: relative;
    padding: 0 0.5rem;
}

.nav-link {
    color: var(--hepigo-dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem 1.5rem !important;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--hepigo-red) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--hepigo-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link:hover::before {
    width: 70%;
}

/* Dropdown Styles */
.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded='true']::after {
    transform: rotate(-180deg);
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    min-width: 200px;
    margin-top: 0.5rem;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-family: var(--font-primary);
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--hepigo-dark);
    transition: all 0.2s ease;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.dropdown-item:hover {
    background-color: rgba(255, 0, 0, 0.1);
    color: var(--hepigo-red);
    transform: translateX(5px);
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: rgba(255, 0, 0, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Active State */
.nav-link.active {
    color: var(--hepigo-red) !important;
    font-weight: 600;
}

.nav-link.active::before {
    width: 70%;
    opacity: 1;
}

.nav-link.active::before {
    width: 70%;
}

/* Active State */
.nav-link.active {
    color: var(--hepigo-red) !important;
    font-weight: 600;
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus,
.dropdown-item:focus {
    outline: 2px solid var(--hepigo-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link {
        border: 1px solid transparent;
    }

    .nav-link:hover,
    .nav-link.active {
        border-color: var(--hepigo-red);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .coin,
    .gift-box,
    .shape {
        animation: none !important;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 767.98px) {
    /* Reduce motion for better performance on mobile */
    .coin,
    .gift-box,
    .shape {
        animation-duration: 8s !important;
    }

    /* Optimize transforms for mobile */
    .nav-link:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    /* Reduce box shadows on mobile for performance */
    .card,
    .info-card,
    .benefit-item {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .card:hover,
    .info-card:hover,
    .benefit-item:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

[data-aos][data-aos][data-aos-duration='400'],
body[data-aos-duration='400'] [data-aos] {
    transition-duration: 400ms;
}

/* Main Content Styles */
section {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hepigo-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: var(--font-secondary);
}

section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--hepigo-red);
    border-radius: 2px;
}

section .section-subtitle {
    font-size: 1.2rem;
    color: var(--hepigo-gray);
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/decorative-shape.png') no-repeat right top;
    opacity: 0.05;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--hepigo-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.5rem;
    color: var(--hepigo-gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-section .btn-danger {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-section .btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

/* Hepigo Info Section */
.hepigo-info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hepigo-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/decorative-shape.png') no-repeat right top;
    opacity: 0.05;
    pointer-events: none;
}

.hepigo-info-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* FAQs Section */
.faqs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faqs-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/decorative-shape.png') no-repeat right top;
    opacity: 0.05;
    pointer-events: none;
    transform: scaleX(-1);
}

.faqs-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Modern Decorative Shapes */
.decorative-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    transform-origin: top right;
    transition: all 0.5s ease-in-out;
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 45%;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.9;
    z-index: 1;
    animation-delay: 0s;
}

.shape-2 {
    width: 42%;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 5% 100%);
    opacity: 0.7;
    z-index: 2;
    animation-delay: -5s;
}

.shape-3 {
    width: 40%;
    background: linear-gradient(135deg, #990000 0%, #660000 100%);
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 10% 100%);
    opacity: 0.5;
    z-index: 3;
    animation-delay: -10s;
}

@keyframes shapeFloat {
    0%,
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-5px) translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateX(5px) translateY(5px) rotate(-1deg);
    }
    75% {
        transform: translateX(-5px) translateY(5px) rotate(0.5deg);
    }
}

.shape:hover {
    filter: brightness(1.1);
    transform: scale(1.01);
}

/* Content Styles */
.hero-section h1 {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--hepigo-dark);
    letter-spacing: -0.03em;
}

.hero-section h1 .text-danger {
    font-family: var(--font-secondary);
}

.hero-section .lead {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--hepigo-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.hepigo-logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.badge.bg-danger {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.btn-danger {
    font-family: var(--font-primary);
    background-color: var(--hepigo-red);
    border-color: var(--hepigo-red);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Hero Image */
.hero-image {
    position: relative;
    text-align: right;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    padding: 2rem 0;
}

.gift-box {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
}

.gift-box {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    margin-right: -2rem;
    transform: translateX(1rem);
}

.coin {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: coinFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

.coin-1 {
    top: -5%;
    right: 25%;
    animation-delay: 0s;
    width: 90px;
    height: 90px;
}

.coin-2 {
    top: 15%;
    right: 45%;
    animation-delay: 1s;
    width: 70px;
    height: 70px;
}

.coin-3 {
    top: 35%;
    right: 35%;
    animation-delay: 2s;
    width: 60px;
    height: 60px;
}

.hero-image {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-2deg);
    }
    50% {
        transform: translateY(-25px) rotate(2deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes coinFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1);
    }
    25% {
        transform: translateY(-40px) rotate(90deg) scale(1.1);
        filter: brightness(1.2);
    }
    50% {
        transform: translateY(-60px) rotate(180deg) scale(1);
        filter: brightness(1.4);
    }
    75% {
        transform: translateY(-40px) rotate(270deg) scale(1.1);
        filter: brightness(1.2);
    }
}

.gift-box {
    animation: float 6s ease-in-out infinite;
    transform-origin: center center;
}

.coin {
    animation: coinFloat 6s ease-in-out infinite;
    transform-origin: center center;
    transition: all 0.3s ease;
}

.coin:hover {
    filter: brightness(1.3) drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
    transform: scale(1.1);
}

/* Scroll Behavior Classes */
.header-nav {
    transform: translateY(0);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.header-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
}

.header-nav.nav-up {
    transform: translateY(-100%);
}

.header-nav.nav-hidden {
    transform: translateY(-100%);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .level-progression {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 991.98px) {
    .header-nav {
        height: auto;
        width: 100%;
        max-width: 100vw;
    }

    /* Hide top info bar on mobile by default */
    .top-info-bar {
        display: none;
    }

    .logo-bar {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        max-width: 100vw;
    }

    .logo-link img {
        height: 35px;
        transition: transform 0.3s ease;
    }

    .logo-link:hover img {
        transform: translateY(-2px);
    }

    .navbar {
        padding: 0;
        background-color: transparent;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    .navbar .container {
        position: relative;
    }

    /* Mobile toggler container - centered white div */
    .mobile-toggler-container {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        padding: 0.25rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        border: 1px solid var(--hepigo-red);
        border-radius: 6px;
        background: #ffffff;
        transition: all 0.3s ease;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
        outline: none;
    }

    .navbar-toggler:hover {
        background-color: rgba(255, 0, 0, 0.1);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .navbar-toggler.active {
        background-color: rgba(255, 0, 0, 0.1);
        border-color: var(--hepigo-red);
        transform: translateY(-1px);
    }

    .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='%23ff0000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        transition: transform 0.3s ease;
    }

    .navbar-toggler.active .navbar-toggler-icon {
        transform: rotate(90deg);
    }

    /* Navbar collapse styles - dropdown from top */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: #ffffff;
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-top: none;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1040;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .navbar-collapse:not(.show) {
        display: block;
        visibility: hidden;
        transform: translateY(-10px);
        opacity: 0;
    }

    .navbar-collapse.show {
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }

    /* Mobile nav item styles for dropdown */
    .navbar-nav {
        margin: 0;
        padding: 0;
        flex-direction: column;
        gap: 0.25rem;
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--hepigo-dark);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.05);
        margin-bottom: 0.25rem;
        text-align: left;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-link:hover,
    .nav-link:focus {
        background: rgba(255, 0, 0, 0.1);
        color: var(--hepigo-red);
        transform: translateX(3px);
        border-color: rgba(255, 0, 0, 0.2);
    }

    .nav-link.active {
        background: var(--hepigo-red);
        color: #ffffff;
        border-color: var(--hepigo-red);
    }

    .dropdown-menu {
        border: none;
        background: rgba(255, 0, 0, 0.05);
        margin: 0.25rem 0;
        border-radius: 8px;
        padding: 0.5rem;
        box-shadow: none;
        position: static !important;
        transform: none !important;
        width: 100%;
    }

    .dropdown-item {
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        color: var(--hepigo-dark);
        text-align: left;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(255, 0, 0, 0.1);
        color: var(--hepigo-red);
        transform: translateX(3px);
    }

    .dropdown-toggle {
        justify-content: space-between !important;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
    }

    .dropdown-toggle::after {
        margin-left: auto;
        transition: transform 0.3s ease;
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
        flex-shrink: 0;
    }

    .dropdown-toggle[aria-expanded='true']::after {
        transform: rotate(-180deg);
    }

    /* Hero Section Responsive */
    .hero-section {
        padding: 140px 0 60px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-section .lead {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .hero-image {
        max-width: 100%;
        padding: 2rem;
        margin: 2rem auto 0;
    }

    .gift-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .coin {
        transform-origin: center;
    }

    .coin-1 {
        top: -10%;
        right: 20%;
    }

    .coin-2 {
        top: 10%;
        right: 40%;
    }

    .coin-3 {
        top: 30%;
        right: 30%;
    }

    /* Hepigo Info Section Responsive */
    .hepigo-info-section {
        padding: 60px 0;
    }

    .hepigo-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
        padding: 20px;
    }

    .hepigo-content {
        padding: 20px 0;
        margin: 15px auto;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        border: none;
        max-width: 100%;
        width: 100%;
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .level-progression {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .logo-link img {
        height: 35px;
    }

    .navbar-toggler {
        padding: 0.5rem;
        border: 2px solid var(--hepigo-red);
        border-radius: 8px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
    }

    .navbar-collapse {
        left: 10px;
        right: 10px;
        padding: 0.75rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.75rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dropdown-toggle {
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-section .lead {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .btn-danger {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .gift-box {
        max-width: 70%;
    }

    .coin {
        width: 50px;
        height: 50px;
    }

    .coin-1 {
        width: 60px;
        height: 60px;
        top: 5%;
        right: 10%;
    }

    .coin-2 {
        width: 40px;
        height: 40px;
        top: 25%;
        right: 30%;
    }

    .coin-3 {
        width: 35px;
        height: 35px;
        top: 45%;
        right: 20%;
    }

    /* Hepigo Info Section */
    .hepigo-info-section {
        padding: 40px 0;
    }

    .hepigo-sidebar {
        padding: 15px;
        margin-bottom: 25px;
    }

    .hepigo-content {
        padding: 15px 0;
        margin: 10px auto;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        border: none;
        max-width: 100%;
        width: 100%;
    }

    .content-section {
        padding: 25px;
        margin: 15px auto;
        border-radius: 12px;
        max-width: 100%;
        width: 100%;
    }

    .content-section p,
    .content-section ul,
    .content-section ol,
    .content-section li {
        margin-left: 10px;
        margin-right: 10px;
    }

    .content-section h2 {
        font-size: 1.75rem;
        margin-bottom: 12px;
        margin-left: 8px;
    }

    .content-section .subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 12px 15px;
        border-radius: 0 6px 6px 0;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .level-progression {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-card .card-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .text-content h3 {
        font-size: 1.2rem;
    }

    .text-content p {
        font-size: 0.95rem;
    }

    .icon-wrapper {
        margin: 10px auto;
        width: 60px;
        height: 60px;
    }

    .info-note {
        padding: 15px;
        margin-top: 20px;
        border-radius: 10px;
    }

    .info-note p {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .info-note .highlight {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .logo-bar {
        padding: 0.5rem 0;
    }

    .logo-link img {
        height: 32px;
    }

    .navbar-collapse {
        left: 5px;
        right: 5px;
        padding: 0.5rem;
        border-radius: 0 0 8px 8px;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dropdown-toggle {
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
    }

    .hero-section {
        padding: 120px 0 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hepigo-logo-section {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hepigo-logo-section img {
        height: 40px;
    }

    .badge.bg-danger {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .btn-danger {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }

    .hero-image {
        padding: 1rem;
        margin-top: 2rem;
    }

    .gift-box {
        max-width: 280px;
    }

    .coin {
        width: 32px;
        height: 32px;
    }

    .coin-1 {
        width: 40px;
        height: 40px;
        top: -5%;
        right: 25%;
    }

    .coin-2 {
        width: 30px;
        height: 30px;
        top: 15%;
        right: 45%;
    }

    .coin-3 {
        width: 25px;
        height: 25px;
        top: 35%;
        right: 35%;
    }

    /* Hepigo Info Section */
    .hepigo-info-section {
        padding: 30px 0;
    }

    .hepigo-sidebar {
        padding: 12px;
        margin-bottom: 20px;
    }

    .hepigo-sidebar .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .hepigo-sidebar .nav-link .number {
        width: 22px;
        height: 22px;
        font-size: 11px;
        margin-right: 8px;
    }

    .hepigo-content {
        padding: 10px 0;
        margin: 8px auto;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        border: none;
        max-width: 100%;
        width: 100%;
    }

    .content-section {
        padding: 20px;
        margin: 10px auto;
        border-radius: 10px;
        max-width: 100%;
        width: 100%;
    }

    .content-section p,
    .content-section ul,
    .content-section ol,
    .content-section li {
        margin-left: 8px;
        margin-right: 8px;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        margin-left: 6px;
    }

    .content-section .subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
        padding: 10px 12px;
        border-radius: 0 5px 5px 0;
    }

    .keuntungan-benefit-item {
        padding: 15px;
    }

    .keuntungan-benefit-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }

    .keuntungan-benefit-item h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .keuntungan-benefit-item p {
        font-size: 0.9rem;
    }

    .level-card {
        padding: 15px;
    }

    .level-card h5 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .level-card p {
        font-size: 0.8rem;
    }

    .info-note {
        padding: 12px;
        margin-top: 15px;
        border-radius: 8px;
    }

    .info-note p {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .info-note .highlight {
        font-size: 1rem;
    }
}

/* Responsive shapes for mobile */
@media (max-width: 991.98px) {
    .shape-1 {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    }

    .shape-2 {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    }

    .shape-3 {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    }

    .decorative-shapes {
        opacity: 0.8;
    }
}

/* Additional mobile optimizations */
@media (max-width: 767.98px) {
    .shape-1 {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    }

    .shape-2 {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    }

    .shape-3 {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    }

    .decorative-shapes {
        opacity: 0.6;
    }
}

/* Additional mobile optimizations for shapes */
@media (max-width: 575.98px) {
    .shape-1,
    .shape-2,
    .shape-3 {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 97%);
    }

    .decorative-shapes {
        opacity: 0.4;
    }
}

/* Additional mobile optimizations */
@media (max-width: 767.98px) {
    .shape-1 {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    }

    .shape-2 {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    }

    .shape-3 {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    }

    .decorative-shapes {
        opacity: 0.6;
    }
}

/* Additional mobile optimizations for shapes */
@media (max-width: 575.98px) {
    .shape-1,
    .shape-2,
    .shape-3 {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 97%);
    }

    .decorative-shapes {
        opacity: 0.4;
    }
}

/* Hepigo Info Section Styles */
.hepigo-info-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

/* Sidebar Styles */
.hepigo-sidebar {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hepigo-sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: #555555;
    border-radius: 14px;
    margin: 4px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-primary);
    font-size: 14.5px;
    font-weight: var(--fw-medium);
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
    background: transparent;
    text-transform: none;
    line-height: 1.6;
}

.hepigo-sidebar .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: var(--hepigo-red);
    opacity: 0.1;
    transition: height 0.3s ease;
}

.hepigo-sidebar .nav-link .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #f5f5f5;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-primary);
    color: #666666;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.hepigo-sidebar .nav-link:hover {
    color: var(--hepigo-red);
    transform: translateX(5px);
}

.hepigo-sidebar .nav-link:hover::before {
    height: 100%;
}

.hepigo-sidebar .nav-link:hover .number {
    background-color: var(--hepigo-red);
    color: #ffffff;
    transform: scale(1.05);
    border-color: var(--hepigo-red);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.15);
}

.hepigo-sidebar .nav-link.active {
    background: var(--hepigo-red);
    color: #ffffff !important;
    font-weight: var(--fw-semibold);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.15);
    transform: translateX(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hepigo-sidebar .nav-link.active::before {
    display: none;
}

.hepigo-sidebar .nav-link.active .number {
    background-color: #ffffff;
    color: var(--hepigo-red);
    font-weight: var(--fw-bold);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Content Section Styles */
.hepigo-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section h2 {
    color: var(--hepigo-dark);
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

.content-section .subtitle {
    color: var(--hepigo-dark);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Responsive Styles for Hepigo Info Section */
@media (max-width: 991.98px) {
    .hepigo-info-section {
        padding: 60px 0;
    }

    .hepigo-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
        padding: 20px;
    }

    .hepigo-sidebar .nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }

    .hepigo-sidebar .nav-link .number {
        width: 24px;
        height: 24px;
        font-size: 12px;
        margin-right: 10px;
    }

    .hepigo-content {
        padding: 25px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .hepigo-info-section {
        padding: 40px 0;
    }

    .hepigo-sidebar {
        padding: 15px;
        margin-bottom: 25px;
    }

    .hepigo-content {
        padding: 20px;
    }

    .content-section h2 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .content-section .subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .hepigo-info-section {
        padding: 30px 0;
    }

    .hepigo-sidebar {
        padding: 12px;
        margin-bottom: 20px;
    }

    .hepigo-sidebar .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .hepigo-sidebar .nav-link .number {
        width: 22px;
        height: 22px;
        font-size: 11px;
        margin-right: 8px;
    }

    .hepigo-content {
        padding: 15px;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .content-section .subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}

/* Additional mobile optimizations for shapes */
@media (max-width: 575.98px) {
    .shape-1,
    .shape-2,
    .shape-3 {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 97%);
    }

    .decorative-shapes {
        opacity: 0.4;
    }
}

/* Additional mobile optimizations for shapes */
@media (max-width: 575.98px) {
    .shape-1,
    .shape-2,
    .shape-3 {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 97%);
    }

    .decorative-shapes {
        opacity: 0.4;
    }
}

/* Cara Mendapatkan Hepigo Styles */
.way-section {
    margin-bottom: 4rem;
}

.way-section h3 {
    color: var(--hepigo-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.way-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.dealer-grid {
    grid-template-columns: repeat(3, 1fr);
}

.way-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.way-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.way-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.way-card:hover .way-icon {
    transform: scale(1.1);
    background: rgba(255, 0, 0, 0.1);
}

.way-icon img {
    width: 60%;
    height: auto;
}

.way-card h4 {
    color: var(--hepigo-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.way-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.way-card ul li {
    color: var(--hepigo-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.way-card ul li:before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--hepigo-red);
}

/* App Steps Carousel Styles */
.app-steps {
    margin-top: 4rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
}

.carousel-slide img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--hepigo-red);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .dealer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .way-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .way-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .dealer-grid {
        grid-template-columns: 1fr;
    }

    .way-card {
        padding: 1rem;
    }

    .way-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .way-card h4 {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .way-grid {
        grid-template-columns: 1fr;
    }

    .way-section {
        margin-bottom: 2rem;
    }

    .way-section h3 {
        font-size: 1.3rem;
    }
}

/* Points Conversion Styles */
.points-conversion {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.conversion-header h3 {
    color: var(--hepigo-red);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.conversion-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.formula-item {
    background: var(--hepigo-red);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: 600;
}

.formula-equals {
    font-size: 2rem;
    color: var(--hepigo-red);
    font-weight: 700;
}

.conversion-note {
    color: var(--hepigo-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Registration Steps Styles */
.registration-steps {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.registration-steps h3 {
    color: var(--hepigo-dark);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.4;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-number {
    background: var(--hepigo-red);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.phone-validation {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.phone-display {
    background: #ffffff;
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.phone-display span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--hepigo-dark);
}

.validation-icon {
    color: #28a745;
    font-size: 1.4rem;
}

.phone-validation p {
    color: #28a745;
    font-weight: 500;
    margin: 0;
}

/* Sidebar Styles */
.hepigo-sidebar {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.hepigo-sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: #555555;
    border-radius: 14px;
    margin: 4px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-primary);
    font-size: 14.5px;
    font-weight: var(--fw-medium);
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
    background: transparent;
    text-transform: none;
    line-height: 1.6;
    text-align: left;
    justify-content: flex-start;
    opacity: 1;
    visibility: visible;
    cursor: pointer;
    text-decoration: none;
}

.hepigo-sidebar .nav-link.active {
    background: var(--hepigo-red) !important;
    color: #ffffff !important;
    font-weight: var(--fw-semibold);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.15);
    transform: translateX(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
}

.hepigo-sidebar .nav-link.active .number {
    background-color: #ffffff !important;
    color: var(--hepigo-red) !important;
    font-weight: var(--fw-bold);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    opacity: 1;
    visibility: visible;
}

.hepigo-sidebar .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: var(--hepigo-red);
    opacity: 0.1;
    transition: height 0.3s ease;
    z-index: 0;
}

.hepigo-sidebar .nav-link .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #f5f5f5;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-primary);
    color: #666666;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hepigo-sidebar .nav-link > *:not(.number) {
    position: relative;
    z-index: 1;
}

.hepigo-sidebar .nav-link:hover {
    color: var(--hepigo-red);
    transform: translateX(5px);
}

.hepigo-sidebar .nav-link:hover::before {
    height: 100%;
}

.hepigo-sidebar .nav-link:hover .number {
    background-color: var(--hepigo-red);
    color: #ffffff;
    transform: scale(1.05);
    border-color: var(--hepigo-red);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.15);
}

/* Ensure text content is left-aligned */
.hepigo-sidebar .nav-link {
    text-align: left;
}

.hepigo-sidebar .nav-link > *:not(.number) {
    text-align: left;
    flex: 1;
}

/* Ensure text content is left-aligned and properly spaced */
.hepigo-sidebar .nav-link {
    text-align: left;
    justify-content: flex-start;
}

.hepigo-sidebar .nav-link::after {
    content: '';
    flex: 1;
}

.hepigo-sidebar .nav-link:hover {
    color: var(--hepigo-red);
    transform: translateX(5px);
}

.hepigo-sidebar .nav-link:hover::before {
    height: 100%;
}

.hepigo-sidebar .nav-link:hover .number {
    background-color: var(--hepigo-red);
    color: #ffffff;
    transform: scale(1.05);
    border-color: var(--hepigo-red);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.15);
}

.hepigo-sidebar .nav-link.active {
    background: var(--hepigo-red);
    color: #ffffff !important;
    font-weight: var(--fw-semibold);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.15);
    transform: translateX(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hepigo-sidebar .nav-link.active::before {
    display: none;
}

.hepigo-sidebar .nav-link.active .number {
    background-color: #ffffff;
    color: var(--hepigo-red);
    font-weight: var(--fw-bold);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Content Section Styles */
.hepigo-content {
    padding: 30px 0;
    background: transparent;
    border-radius: 0;
    margin: 20px auto;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.hepigo-content::before {
    display: none;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 40px;
    margin: 20px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    max-width: 100%;
    width: 100%;
}

.content-section p,
.content-section ul,
.content-section ol,
.content-section li {
    margin-left: 15px;
    margin-right: 15px;
}

.content-section.active {
    display: block;
}

.content-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-section h2 {
    color: var(--hepigo-dark);
    margin-bottom: 20px;
    margin-left: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    animation: slideInFromLeft 0.6s ease-out;
}

.content-section .subtitle {
    animation: slideInFromLeft 0.6s ease-out 0.2s both;
    color: var(--hepigo-gray);
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 3px solid rgba(255, 0, 0, 0.2);
    background: rgba(255, 0, 0, 0.02);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--hepigo-red) 0%, #ff4444 100%);
    border-radius: 2px;
}

/* Info Cards Styles */
.info-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    position: relative;
}

.info-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--hepigo-red) 50%, transparent 100%);
    opacity: 0.3;
}

.info-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.95);
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.text-content {
    flex: 1;
}

.text-content h3 {
    color: var(--hepigo-red);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.text-content p {
    color: var(--hepigo-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.info-icon {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
    background: rgba(255, 0, 0, 0.1);
    transform: scale(1.05);
    border-color: rgba(255, 0, 0, 0.2);
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}

/* Info Note Styles */
.info-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.info-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--hepigo-red) 0%, #ff4444 100%);
    border-radius: 12px 0 0 12px;
}

.info-note p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--hepigo-dark);
}

.info-note .highlight {
    color: var(--hepigo-red);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0;
}

/* Additional Content Styling */
.content-section > * {
    position: relative;
    z-index: 2;
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

[data-aos][data-aos][data-aos-duration='400'],
body[data-aos-duration='400'] [data-aos] {
    transition-duration: 400ms;
}

/* Mobile Performance Optimizations */
@media (max-width: 767.98px) {
    /* Reduce motion for better performance on mobile */
    .coin,
    .gift-box,
    .shape {
        animation-duration: 8s !important;
    }

    /* Optimize transforms for mobile */
    .nav-link:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    /* Reduce box shadows on mobile for performance */
    .card,
    .info-card,
    .keuntungan-benefit-item {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .card:hover,
    .info-card:hover,
    .keuntungan-benefit-item:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus,
.dropdown-item:focus {
    outline: 2px solid var(--hepigo-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link {
        border: 1px solid transparent;
    }

    .nav-link:hover,
    .nav-link.active {
        border-color: var(--hepigo-red);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .coin,
    .gift-box,
    .shape {
        animation: none !important;
    }
}

/* Footer Styles */
.footer-section {
    background: #ffffff;
    color: #333333;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.footer-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    width: 100%;
}

/* Red Contact Section */
.footer-contact-red {
    background: #e02020;
    padding: 40px 0;
    color: #ffffff;
    width: 100%;
    margin: 0 auto;
}

.footer-contact-red .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    text-align: left;
}

.footer-contact-red .contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-red .contact-icon i {
    font-size: 20px;
    color: #ffffff;
}

.footer-contact-red .contact-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-red .contact-content p {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* Dark Gray Info Section */
.footer-info-dark {
    background: #363636;
    padding: 40px 0 20px;
    color: #cccccc;
    width: 100%;
    margin: 0 auto;
}

.footer-info-dark h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cccccc;
}

.footer-info-dark p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #cccccc;
}

.footer-info-dark .company-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-info-dark .services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-dark .services-list li {
    font-size: 14px;
    margin-bottom: 5px;
    color: #cccccc;
}

.footer-info-dark .address-info p {
    margin-bottom: 5px;
}

/* Bottom Row with Copyright and Social Media */
.footer-bottom-row {
    border-top: 1px dashed #666666;
    padding-top: 20px;
    margin-top: 30px;
}

.footer-bottom-row .copyright {
    font-size: 13px;
    color: #cccccc;
    margin: 0;
}

.footer-bottom-row .social-media-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-bottom-row .social-icon {
    width: 35px;
    height: 35px;
    background: transparent;
    border: 1px solid #666666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-row .social-icon:hover {
    background: #ffffff;
    color: #363636;
    transform: translateY(-2px);
}

/* Footer Responsive Styles */
@media (max-width: 991.98px) {
    .footer-contact-red {
        padding: 30px 0;
    }

    .footer-info-dark {
        padding: 30px 0 15px;
    }

    .footer-contact-red .contact-item {
        margin-bottom: 15px;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-contact-red .contact-icon {
        width: 45px;
        height: 45px;
    }

    .footer-contact-red .contact-icon i {
        font-size: 18px;
    }

    .footer-info-dark .company-info,
    .footer-info-dark .services-info,
    .footer-info-dark .visit-info {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .footer-contact-red {
        padding: 25px 0;
    }

    .footer-info-dark {
        padding: 25px 0 15px;
    }

    .footer-bottom-row {
        text-align: center;
    }

    .footer-bottom-row .social-media-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-info-dark .company-info,
    .footer-info-dark .services-info,
    .footer-info-dark .visit-info {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-contact-red .contact-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .footer-contact-red .contact-content h4 {
        font-size: 12px;
    }

    .footer-contact-red .contact-content p {
        font-size: 12px;
    }

    .footer-info-dark h3 {
        font-size: 14px;
    }

    .footer-info-dark p {
        font-size: 13px;
    }

    .footer-bottom-row .copyright {
        font-size: 12px;
    }

    .footer-contact-red .contact-icon {
        width: 40px;
        height: 40px;
    }

    .footer-contact-red .contact-icon i {
        font-size: 16px;
    }
}

/* FAQs Section Styles */
.faqs-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faqs-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hepigo-dark);
    margin-bottom: 3rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hepigo-dark);
    margin-bottom: 1.5rem;
}

.faq-category h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--hepigo-dark);
    margin-bottom: 1.5rem;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: var(--hepigo-red) !important;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 8px !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--hepigo-red) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
    font-size: 1rem;
    color: var(--hepigo-dark);
    line-height: 1.6;
}

/* FAQs Responsive Styles */
@media (max-width: 991.98px) {
    .faqs-section {
        padding: 60px 0;
    }

    .faqs-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-category h3 {
        font-size: 1.6rem;
    }

    .faq-category h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .faqs-section {
        padding: 40px 0;
    }

    .faqs-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .faq-category h3 {
        font-size: 1.4rem;
    }

    .faq-category h4 {
        font-size: 1.2rem;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .faqs-section {
        padding: 30px 0;
    }

    .faqs-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }

    .faq-category h3 {
        font-size: 1.3rem;
    }

    .faq-category h4 {
        font-size: 1.1rem;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}
