/* utility */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.mb-0 {
    margin-bottom: 0;
}
.mb-1 {
    margin-bottom: 0.25rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-3 {
    margin-bottom: 1rem;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.mb-5 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}
.mt-1 {
    margin-top: 0.25rem;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mt-3 {
    margin-top: 1rem;
}
.mt-4 {
    margin-top: 1.5rem;
}
.mt-5 {
    margin-top: 3rem;
}

.p-0 {
    padding: 0;
}
.p-1 {
    padding: 0.25rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-3 {
    padding: 1rem;
}
.p-4 {
    padding: 1.5rem;
}
.p-5 {
    padding: 3rem;
}

.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
:root {
    /* Primary Colors */
    --bg-primary: #0a0a1a;
    --bg-secondary: #2c2c3a;
    --bg: #000000;

    /* Text Colors */
    --text-white: #ffffff;
    --text-light-blue: #4a90e2;
    --text-light: rgba(255, 255, 255, 0.6);
    --white: #ffffff;

    /* Accent Colors */
    --accent-blue: #4a90e2;
    --blue: rgba(0, 63, 255, 1);
    --navy: rgba(0, 19, 78, 1);

    /* Gradient Colors for Tiles */
    --tile-gradient-top: rgba(255, 255, 255, 0.12);
    --tile-gradient-bottom: rgba(255, 255, 255, 0.08);
    --active-gradient-top: rgba(255, 255, 255, 0.16);
    --active-gradient-bottom: rgba(255, 255, 255, 0.1);

    /* Border & Opacity */
    --border-color: rgba(255, 255, 255, 0.35);

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

.gradient-text {
    background: linear-gradient(90deg, #003fff 0%, #ffffff 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.font-inter {
    font-family: var(--font-inter);
}
.btn1-custom {
    padding: 12px 20px;
    background-color: rgba(217, 217, 217, 0.52);
    border: 1px solid var(--color-white);
    border-radius: 10px;
    transition: all 0.4s ease;
}
.btn1-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    box-shadow: 0 0 15px rgba(76, 143, 255, 0.5);
    transition: all 0.4s ease;
}

.bg-grey {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* navbar */
.navbar {
    height: 82px;
    background: transparent !important;
    padding: 1rem 0 !important;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    background: rgba(0, 0, 0, 0.2) !important;
}

.navbar .container-fluid {
    padding-top: 0;
    margin: 0;
    position: relative;
}

.navbar-brand {
    color: var(--white) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.fallback-logo {
    display: none;
}

.fallback-logo.show {
    display: inline;
}

.navbar-nav {
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #6aa8ff !important;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px !important;
    margin-top: 0.5rem !important;
}

.dropdown-item {
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease !important;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #6aa8ff !important;
}

/* Search Container */
.search-container {
    width: 196px !important;
    height: 38px !important;
    position: relative !important;
}

.search-input {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    ) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 5px !important;
    padding: 8px 35px 8px 15px !important;
    color: var(--white) !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 300 !important;
    font-size: 15px !important;
}

.search-input::placeholder {
    color: var(--white) !important;
}

.search-input:focus {
    outline: none !important;
    border-color: var(--white) !important;
    box-shadow: none !important;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white) !important;
    font-size: 18px !important;
    line-height: 0;
}

/* Auth Buttons in Navbar */
.btn-sm {
    padding: 8px 16px !important;
    font-size: 14px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: white !important;
}

/* Navbar Toggler */
.navbar-toggler {
    border: 1px solid var(--border-color) !important;
    padding: 0.5rem !important;
    background: transparent !important;
}

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

.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") !important;
}

.navbar-collapse {
    margin-top: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
}

/* footer */
.footer {
    background-color: #00134d;
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 22.4px;
    max-width: 291px;
    margin-top: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6aa8ff;
}

.footer-divider {
    height: 2px;
    background: var(--white);
    border: none;
    margin: 20px 0;
}

.social-icon {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    color: #6aa8ff;
}

/* button */
.btn-primary {
    /* background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s; */
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #003fff 0%, #4a90e2 100%);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    /* background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4); */
    background: linear-gradient(90deg, #0056ff 0%, #5ba3ff 100%);
    transform: translateY(-1px);
}

.btn-warning {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #ffc107 0%, #ffb300 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: linear-gradient(90deg, #ff9800 0%, #ff6f00 100%);
    transform: translateY(-1px);
    color: #fff;
}

.btn-success {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(90deg, #218838 0%, #1c7430 100%);
    transform: translateY(-1px);
    color: white;
}

.category-nav {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.btn-filter {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 15px 20px;
    margin-right: 30px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    display: inline-block;
}

.btn-filter:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.btn-filter.active {
    color: var(--white);
    border-bottom-color: #4a90e2;
}

.btn-filter.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4a90e2;
    animation: slideIn 0.3s ease;
}

/* editor line */
.editor-title {
    gap: 16px;
}
.editor-line {
    flex-grow: 1;
    height: 3px;
    border-radius: 2px;
    background: var(--color-white);
}

/* hero section */
.hero-section {
    background: url("../img/backgrounds/hero.png") no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
    padding-top: 100px;
    z-index: 1;
}

.hero-section-detail {
    padding: 150px 0 100px;
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}

/* Hero Section dengan Background Image */
/* .hero-section.has-background {
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
}

.hero-section.has-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section.has-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
} */

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Hero Title dengan Gradient Text */
.hero-title.gradient {
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Title dengan Solid Color + Shadow */
.hero-title.solid {
    font-size: 80px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
}

/* Contact Hero Section */
.contact-hero-section {
    padding: 150px 0 80px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

/* section */
.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle,
.section-description {
    font-size: 18px;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.gradient-text {
    background: linear-gradient(
        90deg,
        rgba(0, 63, 255, 1) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* tile */
.help-tile,
.tile-base {
    background: linear-gradient(
        180deg,
        var(--tile-gradient-top) 0%,
        var(--tile-gradient-bottom) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.help-tile:hover,
.tile-base:hover {
    transform: translateY(-5px);
}

.tile-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

/* accordion */
.accordion-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    scroll-margin-top: 90px; /* offset navbar fixed */
}

/* Section dengan background-image */
.accordion-section.terms-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: -37px;
}

.section-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
}

.section-divider {
    height: 2px;
    background: var(--white);
    border: none;
    margin: 0;
}

.accordion-wrapper {
    margin-top: 30px;
}

.accordion-item {
    background: linear-gradient(
        180deg,
        var(--tile-gradient-top) 0%,
        var(--tile-gradient-bottom) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.accordion-item.active {
    background: linear-gradient(
        180deg,
        var(--active-gradient-top) 0%,
        var(--active-gradient-bottom) 100%
    );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.accordion-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accordion-icon {
    font-size: 24px;
    color: var(--white);
    transition: transform 0.3s;
}

.accordion-content {
    padding: 0 24px 20px;
}

.accordion-content p {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 35px;
    margin: 0;
}

/* icon styles */
.icon-large {
    font-size: 80px;
    color: var(--white);
    margin-bottom: 20px;
}

.faq-icon {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.faq-icon span {
    display: inline-block;
    margin: 0 5px;
}

/* form */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: var(--white);
    border: 2px solid #000;
    border-radius: 8px;
    color: #000;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #000;
    box-shadow: none;
    background: var(--white);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control option {
    background-color: rgba(10, 10, 26, 0.95);
    color: var(--white);
    padding: 10px;
    border: none;
}

select.form-control option:hover,
select.form-control option:focus,
select.form-control option:checked {
    background: linear-gradient(
        135deg,
        rgba(74, 144, 226, 0.3),
        rgba(116, 185, 255, 0.2)
    );
    color: var(--white);
}

/* background */
.bg-gradient-conic {
    position: fixed;
    top: 0%;
    left: 29%;
    transform: translate(-50%, -50%);
    width: 1325px;
    height: 476px;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(0, 63, 255, 0.8) 0deg,
        rgba(255, 255, 255, 0.1) 90deg,
        rgba(0, 63, 255, 0.8) 180deg,
        rgba(255, 255, 255, 0.1) 270deg,
        rgba(0, 63, 255, 0.8) 360deg
    );
    -webkit-filter: blur(120px);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.bg-ellipse {
    position: fixed;
    border-radius: 50%;
    filter: blur(50px);
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 19, 78, 1) 13%,
        rgba(115, 115, 115, 0) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.bg-ellipse-1 {
    width: 674px;
    height: 646px;
    top: 1100px;
    left: -257px;
}

.bg-ellipse-2 {
    width: 930px;
    height: 904px;
    top: 1886px;
    right: -200px;
}

.bg-ellipse-3 {
    width: 674px;
    height: 550px;
    top: 400px;
    right: -180px;
}

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .bg-gradient-conic {
        width: 1400px;
        height: 500px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .bg-gradient-conic {
        width: 1200px;
        height: 450px;
    }
}

/* Laptop Large (992px - 1199px) */
@media (max-width: 1199px) {
    .section-title {
        font-size: 40px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-title.solid {
        font-size: 56px;
    }

    .bg-gradient-conic {
        width: 1000px;
        height: 400px;
        left: 50%;
    }
}

/* Tablet & Laptop Small (768px - 991px) */
@media (max-width: 991px) {
    .navbar-collapse {
        width: 100%;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.5);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 12px;
        box-sizing: border-box;
        margin-top: 16px;
        padding: 12px 0 16px 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-top: 0;
    }

    .navbar-nav .nav-link {
        width: 100%;
        display: block;
        padding: 14px 20px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navbar-nav .nav-link:first-child {
        border-top: none;
    }

    .search-container {
        width: calc(100% - 40px) !important;
        margin: 16px auto 0 auto !important;
        padding: 0 !important;
    }

    .section-title {
        font-size: 32px;
    }

    .tile-title {
        font-size: 32px;
    }

    .section-heading {
        font-size: 32px;
    }

    .icon-large {
        font-size: 60px;
    }

    .faq-icon {
        font-size: 45px;
    }

    .help-tile,
    .tile-base {
        padding: 30px 15px;
    }

    .accordion-section {
        padding: 50px 0;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-section.has-background {
        padding: 140px 0 100px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-title.solid {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .contact-hero-title {
        font-size: 48px;
    }

    .bg-gradient-conic {
        width: 800px;
        height: 350px;
        top: 10%;
        left: 50%;
    }

    .bg-ellipse {
        filter: blur(30px);
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .logo-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle,
    .section-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .tile-title {
        font-size: 28px;
    }

    .section-heading {
        font-size: 28px;
    }

    .icon-large {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .faq-icon {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .help-tile,
    .tile-base {
        padding: 30px 20px;
    }

    .accordion-section {
        padding: 40px 0;
    }

    .accordion-header {
        padding: 16px 20px;
    }

    .accordion-question {
        font-size: 18px;
    }

    .accordion-content {
        padding: 0 20px 16px;
    }

    .accordion-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .accordion-icon {
        font-size: 20px;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-section.has-background {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-title.solid {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-description {
        text-align: center;
        max-width: 100%;
        margin: 20px auto 0;
    }

    .footer-heading {
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .bg-gradient-conic {
        width: 600px;
        height: 300px;
        top: 15%;
    }
}

/* Mobile Small (320px - 575px) */
@media (max-width: 575px) {
    .navbar-brand {
        font-size: 16px;
    }

    .logo-text {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .tile-title {
        font-size: 24px;
    }

    .section-heading {
        font-size: 22px;
        white-space: normal;
    }

    .icon-large {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .faq-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .help-tile,
    .tile-base {
        padding: 25px 15px;
    }

    .accordion-section {
        padding: 30px 0;
    }

    .accordion-header {
        padding: 14px 16px;
    }

    .accordion-question {
        font-size: 16px;
    }

    .accordion-content {
        padding: 0 16px 14px;
    }

    .accordion-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .accordion-icon {
        font-size: 18px;
    }

    .hero-section {
        padding: 80px 0 50px;
    }

    .hero-section.has-background {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-title.solid {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-subtitle {
        font-size: 15px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bg-gradient-conic {
        width: 400px;
        height: 250px;
        top: 20%;
        left: 50%;
    }

    .bg-ellipse {
        filter: blur(20px);
    }

    .bg-ellipse-1 {
        width: 400px;
        height: 400px;
        top: 800px;
        left: -200px;
    }

    .bg-ellipse-2 {
        width: 500px;
        height: 500px;
        top: 1500px;
        right: -150px;
    }

    .bg-ellipse-3 {
        width: 400px;
        height: 300px;
        top: 300px;
        right: -120px;
    }

    .search-container {
        width: calc(100% - 32px) !important;
        margin: 16px auto 0 auto !important;
        padding: 0 !important;
    }
}

/* top up easy steps */
.step-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #232222;
    border: 1px solid var(--color-white);
    transition: all 0.3s ease;
}
.step-img img {
    width: 60%;
    height: 60%;
    object-fit: cover;
    object-position: center;
}
.easy-steps .btn1-custom {
    padding: 12px 20px;
    background-color: rgba(217, 217, 217, 0.52);
    border: 1px solid var(--color-white);
    border-radius: 10px;
    transition: all 0.4s ease;
}
.easy-steps .btn1-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    box-shadow: 0 0 15px rgba(76, 143, 255, 0.5);
    transition: all 0.4s ease;
}
/* Responsive untuk tablet dan mobile (992px ke bawah) */
@media (max-width: 992px) {
    .easy-steps {
        padding: 3rem 1rem !important;
    }

    .easy-steps h1 {
        font-size: 2.5rem !important;
        padding: 2rem 0 !important;
    }

    .step-img {
        width: 150px;
        height: 150px;
    }

    .easy-steps .col-md-3 {
        margin-top: 2rem;
    }

    .easy-steps .col-md-3:first-child {
        margin-top: 0;
    }

    .easy-steps p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .easy-steps .btn1-custom {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}
@media (max-width: 576px) {
    .easy-steps {
        padding: 2rem 0.5rem !important;
    }

    .easy-steps h1 {
        font-size: 1.8rem !important;
        padding: 1.5rem 0 !important;
    }

    .step-img {
        width: 120px;
        height: 120px;
    }

    .step-img img {
        width: 55%;
        height: 55%;
    }

    .easy-steps p {
        font-size: 0.9rem;
        margin-top: 1rem !important;
    }

    .easy-steps .btn1-custom {
        padding: 10px 16px;
        font-size: 0.9rem;
        width: 90%;
    }

    .easy-steps .d-flex.justify-content-center.mt-3 {
        width: 100%;
    }
}

/* Background Gradients */
.bg-gradient-conic {
    position: fixed;
    top: 0%;
    left: 29%;
    transform: translate(-50%, -50%);
    width: 1325px;
    height: 476px;
    background: conic-gradient(
        from 90deg at 50% 50%,
        rgba(0, 63, 255, 1) 0%,
        rgba(0, 19, 78, 1) 18%,
        rgba(0, 0, 0, 0.51) 35%,
        rgba(18, 2, 10, 0.18) 78%,
        rgba(9, 0, 4, 0.04) 89%,
        rgba(44, 27, 119, 0) 97%,
        rgba(44, 27, 119, 0) 100%
    );
    -webkit-filter: blur(120px);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.bg-ellipse {
    position: fixed;
    border-radius: 50%;
    filter: blur(50px);
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 19, 78, 1) 13%,
        rgba(115, 115, 115, 0) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.bg-ellipse-1 {
    width: 674px;
    height: 646px;
    top: 1100px;
    left: -257px;
}

.bg-ellipse-2 {
    width: 930px;
    height: 904px;
    top: 1886px;
    right: -200px;
}

.bg-ellipse-3 {
    width: 674px;
    height: 550px;
    top: 400px;
    right: -180px;
}

.btn-show-all {
    padding: 14px 40px;
    background: var(--accent-blue);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-show-all:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

/* Card Styling */
.glass-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

/* Form Controls */
.form-control {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    color: var(--white) !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border-color: #4a90e2 !important;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2) !important;
    color: var(--white) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1) inset !important;
    -webkit-text-fill-color: var(--white) !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.tab-nav-item {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 15px 20px;
    margin-right: 30px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
}

.tab-nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.tab-nav-item.active {
    color: var(--white);
    border-bottom-color: #4a90e2;
}

.tab-nav-item.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4a90e2;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Left Sidebar */
.left-sidebar {
    width: 80px;
    background: transparent !important;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 82px;
    left: 0;
    bottom: 0;
    z-index: 999;
    transition:
        width 0.3s ease,
        opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: visible;
    /* Membuat sidebar berhenti sebelum footer */
    max-height: calc(100vh - 82px);
}

/* Sidebar hover effect untuk desktop */
@media (min-width: 992px) {
    .left-sidebar:hover {
        width: 250px;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%
        ) !important;
        backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-left: none;
        border-radius: 0 15px 15px 0;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    }
}

.sidebar-nav-icons {
    flex: 1;
    padding: 20px 0;
    overflow: hidden;
}

.nav-icon-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 10px auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* Hover effect for nav items on desktop */
@media (min-width: 992px) {
    .left-sidebar:hover .nav-icon-item {
        width: calc(100% - 30px);
        margin: 10px 15px;
        justify-content: flex-start;
        padding: 0 15px;
    }

    .nav-icon-item .nav-text {
        opacity: 0;
        margin-left: 0;
        margin-top: 5px;
        transition: all 0.3s ease 0.1s;
        font-size: 12px;
        font-weight: 500;
        color: var(--white);
        pointer-events: none;
        white-space: nowrap;
        position: absolute;
        visibility: hidden;
    }

    .left-sidebar:hover .nav-icon-item .nav-text {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        margin-left: 15px;
        position: static;
    }

    /* Memastikan icon tidak terpotong */
    .nav-icon-item i {
        flex-shrink: 0;
        min-width: 24px;
    }
}

.nav-icon-item:hover,
.nav-icon-item.active {
    background: rgba(74, 144, 226, 0.2);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.nav-icon-item i {
    font-size: 24px;
    color: var(--white);
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    flex-direction: column;
}

.nav-icon-item button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    flex-direction: column;
}

/* Link styling saat sidebar hover */
@media (min-width: 992px) {
    .left-sidebar:hover .nav-icon-item a,
    .left-sidebar:hover .nav-icon-item button {
        justify-content: flex-start !important;
        flex-direction: row !important;
        padding: 0;
    }
}

.sidebar-logout-wrapper {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logout wrapper hover effect */
@media (min-width: 992px) {
    .left-sidebar:hover .sidebar-logout-wrapper {
        padding: 20px 15px;
    }

    .left-sidebar:hover .sidebar-logout-wrapper .logout-icon {
        width: 100%;
        margin: 0;
        justify-content: flex-start;
        padding: 0 15px;
    }
}

.logout-icon button {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.logout-icon:hover {
    background: rgba(255, 107, 107, 0.2) !important;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
}

/* Sidebar Close Button */
.sidebar-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: none;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

/* Phone Input Styling */
.iti {
    width: 100%;
    position: relative;
}

.iti__flag-container {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: 8px 0 0 8px;
    border-right: none;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.iti__selected-flag {
    padding: 12px 16px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    cursor: pointer;
}

.iti__flag {
    margin-right: 0;
}

.iti__arrow {
    border-top-color: rgba(255, 255, 255, 0.6);
    margin-left: 4px;
}

.iti--allow-dropdown input[type="tel"] {
    padding-left: 130px !important;
    border-radius: 8px !important;
    border: 1px solid var(--border-color) !important;
    width: 100% !important;
    position: relative;
    z-index: 0;
}

.iti--allow-dropdown input[type="tel"]:focus {
    border-color: #4a90e2 !important;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2) !important;
}

.iti--allow-dropdown .iti__flag-container:focus-within {
    border-color: #4a90e2 !important;
}

/* Country dropdown styling */
.iti__country-list {
    background: #1a1a2e !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    z-index: 9999 !important;
    position: absolute !important;
    top: 100% !important;
    max-height: 200px !important;
    width: 350px;
    margin-top: 4px !important;
}

.content-card:has(input[type="tel"]),
.glass-card:has(input[type="tel"]) {
    backdrop-filter: none !important;
    transform: none !important;
    overflow: visible !important;
}

.content-card:has(input[type="tel"]):hover,
.glass-card:has(input[type="tel"]):hover {
    transform: none !important;
    backdrop-filter: none !important;
}

.iti__country {
    color: var(--white) !important;
    background: transparent !important;
    padding: 8px 16px;
    border: none !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: rgba(74, 144, 226, 0.2) !important;
    color: var(--white) !important;
}

.iti__country-name {
    color: rgba(255, 255, 255, 0.9) !important;
}

.iti__dial-code {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Google OAuth Button Styling */
.auth-divider {
    position: relative;
    margin: 20px 0;
}

.auth-divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
}

.auth-divider-text {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary, #0f0f23);
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.btn-google {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
}

.btn-google:hover {
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-google:active {
    transform: translateY(0);
}

.swal2-popup {
    background: rgba(20, 25, 40, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding-bottom: 25px !important;
}

.swal2-title {
    color: #6aa8ff !important;
    font-weight: 700 !important;
}

.swal2-html-container,
.swal2-content {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px !important;
}

.swal2-icon.swal2-success {
    border-color: #7bc96f !important;
    color: #7bc96f !important;
}

.swal2-icon.swal2-error {
    border-color: #ff6b6b !important;
    color: #ff6b6b !important;
}

.swal2-confirm {
    background-color: #6aa8ff !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 8px 20px !important;
    border: none !important;
}

.swal2-cancel {
    border-radius: 8px !important;
    padding: 8px 20px !important;
    border: none !important;
}

.swal2-confirm:hover {
    background-color: #4f8ce0 !important;
}

.alert-warning {
    background: linear-gradient(
        180deg,
        rgba(255, 193, 7, 0.15) 0%,
        rgba(255, 193, 7, 0.1) 100%
    );
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    color: #856404;
}

.alert-info {
    background: linear-gradient(
        180deg,
        rgba(74, 144, 226, 0.12) 0%,
        rgba(74, 185, 255, 0.08) 100%
    );
    border: 1px solid rgba(74, 144, 226, 0.25);
    border-radius: 10px;
    color: #4a90e2;
}

/* Toast Notification Styling */
.toast-container {
    width: 100%;
}

.toast.text-bg-warning {
    background: linear-gradient(
        180deg,
        rgba(255, 193, 7, 0.15) 0%,
        rgba(255, 193, 7, 0.1) 100%
    ) !important;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    color: var(--white) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.toast.text-bg-warning .toast-body {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
}

.toast.text-bg-warning .btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.toast.text-bg-warning .btn-close-white:hover {
    opacity: 1;
}

.toast.text-bg-warning i {
    font-size: 16px;
    color: #ffc107;
}

.navbar-profile-img {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    vertical-align: middle;
    background: #eee;
}

.navbar-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    border: 3px solid #eee;
}

.navbar-profile-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4a90e2, #74b9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
    border: 3px solid #eee;
    overflow: hidden;
}

.testimonial-profile-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4a90e2, #74b9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 13px; */
    /* font-weight: 700; */
    color: white;
    /* border: 3px solid #eee; */
    overflow: hidden;
}

.newsletter-modal .modal-content {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.newsletter-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
}

.newsletter-modal .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.newsletter-modal .btn-close {
    filter: invert(1);
    opacity: 0.7;
}

.newsletter-modal .btn-close:hover {
    opacity: 1;
}

.newsletter-modal .modal-body {
    padding: 24px;
}

.newsletter-modal .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

.newsletter-modal .form-control {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    color: var(--white);
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-modal .form-control:focus {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
    color: var(--white);
}

.newsletter-modal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    gap: 12px;
}

.newsletter-modal .btn {
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.newsletter-modal .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-modal .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.newsletter-modal .btn-primary {
    background: linear-gradient(90deg, #003fff 0%, #4a90e2 100%);
    color: var(--white);
    flex: 1;
}

.newsletter-modal .btn-primary:hover {
    background: linear-gradient(90deg, #0056ff 0%, #5ba3ff 100%);
    transform: translateY(-1px);
    color: var(--white);
}
