:root {
    --color-primary: #365CF5;
    --color-secondary: #7DFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* hero */
.hero-section {
    position: relative;
    padding: 100px 0;
    overflow: visible;
    min-height: 80vh;
    height: 100vh;
    /* Ensure minimum height for proper display */
}

.hero-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    left: 20px;
    /* transform: translateX(50%); */
    /* width: 100%; */
    height: 95%;
    background: url('/novaro/images/bg-01.jpg') no-repeat center;
    background-blend-mode: multiply;
    background-size: cover;
    border-radius: 30px;
    z-index: 0;
}

/* .hero-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    left: 20px;
    height: 95%;
    background: url('/assets/images/bg.jpg') no-repeat center;
    background-blend-mode: multiply;
    background-size: cover;
    border-radius: 30px;
    z-index: 0;
} */

.hero-content {
    position: relative;
    z-index: 2;
    padding: 30px 50px 0 0;
}

.hero-text-wrapper {
    max-width: 600px;
    color: white;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: left;
    margin-bottom: 20px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.hero-description {
    font-size: 0.9rem;
    margin-bottom: 60px;
    margin-top: 20px;
    color: white;
    font-weight: 400;
    text-align: left;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
}

.hero-cta .btn-primary {
    /* background-color: #ffcc00; */
    border: none;
    color: #070745;
    padding: 12px 28px;
    font-weight: 600;
    /* border-radius: 50px; */
    transition: all 0.3s ease;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: #ffdd33;
}

.hero-image {
    position: relative;
    /* Changed from absolute to relative */
    z-index: 900;
    height: 100%;
}

.hero-image .img-1 {
    position: absolute;
    z-index: 1000;
    display: block;
    right: 200px;
    width: 800px;
}

.hero-image .img-2 {
    position: absolute;
    z-index: 1000;
    display: block;
    width: 50%;
    margin-left: 565px;
    margin-top: 342px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 80px 0;
        min-height: 90vh;
    }

    .hero-section .row {
        padding: 0 50px !important;
    }

    .hero-bg {
        width: 100%;
        top: 100px;
        right: 10px;
    }

    .hero-image .img-1 {
        max-width: 100px;
    }

    .hero-image .img-2 {
        max-width: 100px;
        margin-right: 300px;
    }

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

/* Tablet Portrait (768px and down) */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
        height: 7p00px;
    }

    .hero-section .row {
        padding: 0 30px !important;
        min-height: auto !important;
        flex-direction: column;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 300px;
        top: 0;
        right: 0;
        margin-bottom: 30px;
        order: -1;
    }

    .col-lg-4 {
        order: 2;
        margin-bottom: 30px;
    }

    .col-lg-8 {
        order: 1;
    }

    .hero-content {
        text-align: center;
        padding: 20px 0;
    }

    .hero-text-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-text-wrapper img {
        max-width: 160px;
    }

    .hero-description {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
}

/* Mobile Landscape (576px and down) */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-section .row {
        padding: 0 20px !important;
    }

    .hero-bg {
        height: 250px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .hero-text-wrapper img {
        max-width: 140px;
        margin-top: 100px;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero-cta .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .hero-image .img-1 {
        max-width: 90%;
    }

    .hero-image .img-2 {
        visibility: hidden;
    }
}

/* batas hero */

a {
    color: var(--color-primary);
    transition: all 0.3s ease;
}

a:hover,
a:focus {
    color: var(--color-secondary);
    text-decoration: none;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

h3 {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

p {
    color: #2D3748;
    line-height: 1.7;
}

p.lead {
    color: #4A5568;
    font-size: 18px;
    margin-bottom: 2rem;
}

.text-primary {
    color: var(--color-primary) !important;
}

.light-font {
    font-weight: 300;
}

.btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-primary {
    /* background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); */
    background: var(--color-primary);
    border: none;
    color: white;
}

.btn-warning {
    background: #F59E0B;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-outline-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    color: white;
}

.bg-gradient {
    background: linear-gradient(135deg, rgba(12, 6, 247, 0.95) 0%, rgba(125, 255, 255, 0.85) 100%),
        url('/api/placeholder/1920/1080') no-repeat center center;
    background-size: cover;
}

.light-bg {
    background-color: #F7FAFC;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.shadow-card {
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border-radius: 8px;
    border: none;
    overflow: hidden;
}

.shadow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(50, 50, 93, 0.15), 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* NAVBAR */
#nav-menu {
    padding: 30px 0 15px 0;
    transition: all 0.3s ease;
    background: transparent;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

#nav-menu .container {
    background: white;
}

#nav-menu .nav-link {
    color: var(--color-primary);
}

#nav-menu.scrolled {
    padding: 15px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#nav-menu.scrolled .nav-link {
    color: var(--color-primary);
}

.navbar-nav .nav-link {
    position: relative;
    /* color: white; */
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 16px;
}

.navbar-nav .dropdown-menu {
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    border: none;
    padding: 10px;
}

.navbar-nav .dropdown-item {
    font-size: 14px;
    padding: 8px 15px;
    color: var(--color-primary);
    transition: all 0.2s ease;
    border-radius: 4px;
}

.navbar-nav .dropdown-item:hover {
    background-color: #EBF4FF;
    color: gray;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* HERO */
header {
    padding: 180px 0 80px;
    text-align: center;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tagline {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.img-holder {
    position: relative;
    height: auto;
    margin-top: 50px;
}

.img-holder .mobile-app {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* FEATURES */
.card.features {
    border: 0;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    padding: 20px;
}

.card.features:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card.features .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    font-size: 30px;
}

/* MOBILE APP SECTION */
.app-section {
    position: relative;
    overflow: hidden;
}

.app-section img {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.app-section:before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    /* background: rgba(125, 255, 255, 0.1); */
    top: -200px;
    left: -200px;
    z-index: 1;
}

.app-section .feature-list {
    margin-top: 20px;
}

.app-section .feature-list .item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.app-section .feature-list .item i {
    color: var(--color-primary);
    margin-right: 15px;
    font-size: 20px;
    margin-top: 3px;
}

.app-section .app-badges {
    margin-top: 30px;
}

.app-section .app-badges a {
    margin-right: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.app-section .app-badges a:hover {
    transform: translateY(-5px);
}

/* FAQ SECTION */
.ui-steps {
    margin-bottom: 0;
}

.ui-steps li {
    padding: 20px 0;
    position: relative;
}

.ui-steps li:not(:last-child) {
    border-bottom: 1px solid #EDF2F7;
}

.circle-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* STATS SECTION */
.stats-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stats-box .number {
    font-size: 42px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stats-box .label {
    font-size: 16px;
    font-weight: 500;
}

/* FOOTER */
footer {
    background-color: #F7FAFC;
    padding: 50px 0 20px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--color-primary);
    width: 20px;
    text-align: center;
}

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

.social-icons a {
    background: white;
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 50%;
    color: var(--color-primary);
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icons a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #EDF2F7;
    color: #718096;
    font-size: 14px;
}

.copyright a {
    color: var(--color-primary);
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .section {
        padding: 60px 0;
    }

    header {
        padding: 150px 0 50px;
    }

    .img-holder {
        margin-top: 30px;
    }

    .social-icons {
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .tagline {
        font-size: 16px;
    }

    .section {
        padding: 40px 0;
    }

    header {
        padding: 120px 0 40px;
    }

    .app-section:before {
        display: none;
    }
}

/* Navbar Responsive Adjustments */
@media (max-width: 991.98px) {
    #nav-menu .navbar-collapse {
        background: white;
        padding: 15px;
        color: white;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .hero-section .hero-bg {
        visibility: hidden;
    }

    #nav-menu .nav-logo {
        background-color: white;
        padding: 5px;
        border-radius: 10px;
    }

    #nav-menu {
        background: url('/assets/images/bg-4.png');
    }

    #nav-menu .nav-link {
        color: var(--color-primary);
    }

    #nav-menu .navbar-nav {
        padding: 10px 0;
    }

    #nav-menu .nav-item {
        margin: 5px 0;
        color: var(--color-primary);
    }

    #nav-menu .dropdown-menu {
        margin-left: 15px;
        border: none;
        box-shadow: none;
    }

    #nav-menu .btn-warning {
        display: inline-block;
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    #nav-menu .navbar-brand img {
        max-height: 40px !important;
    }

    #nav-menu .navbar-brand.mr-3 {
        margin-right: 0.5rem !important;
    }
}