:root {
    /* colors */
    --primary: #fd6a02;
    --secondary: #19ABFC;
    --text-color: #666666;
    --border-color: #EBEBEB;
    --dark: #454545;
    --white: #FFFFFF;

    --radius-circle: 50px;
    --radius-md: 10px;

    --transition: all 200ms ease;

    --font-1: "Inter", sans-serif;

    --shadow: 0 10px 30px rgba(0, 0, 0, 5%);
}

* {
    font-family: var(--font-1);
}

/* Utilities (kebutuhan yang berdiri sendiri tanpa section) */
.fab-wa {
    width: 64px;
    height: 64px;
    object-fit: contain;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    line-height: normal !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

.btn {
    padding: 8px 16px;
    text-transform: capitalize !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: normal !important;
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none !important;
}

.custom-primary {
    background-color: var(--primary);
    color: var(--white);
}
.custom-primary:hover {
    filter: brightness(.8);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 10%);
}

.custom-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}
.custom-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.mb-32 {
    margin-bottom: 32px;
}

/* navbar */
.navbar {
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    box-shadow: var(--shadow);
    transition: all 300ms ease;
    background-color: var(--secondary);
}

.navbar .navbar-nav {
    margin-right: 16px;
}

.navbar .nav-item.active .nav-link {
    color: var(--primary);
}

.navbar .nav-item .nav-link {
    font-weight: 500;
    color: var(--white);
    transition: all 0.2s ease;
}
.navbar .nav-item .nav-link:hover {
    color: var(--primary) !important;
}

.navbar .navbar-cta-wrapper {
    display: flex;
    column-gap: 16px;
}

.navbar .navbar-cta-wrapper .btn-sign-in {
    background-color: var(--white);
    color: var(--text);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 24px;
    transition: all 0.2s ease;
}
.navbar .navbar-cta-wrapper .btn-sign-in:hover {
    box-shadow: var(--shadow);
}

.navbar .navbar-cta-wrapper .btn-sign-up {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 12px 24px;
    transition: all 0.2s ease;
}
.navbar .navbar-cta-wrapper .btn-sign-up:hover {
    box-shadow: var(--shadow);
}
.navbar .navbar-cta-wrapper .btn-sign-up:focus {
    background-color: var(--primary);
}

.navbar .navbar-toggler {
    padding: 0;
    border: none;
    outline: none;
}

.navbar .navbar-toggler .feather {
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.2s ease;
}
.navbar .navbar-toggler:hover .feather {
    color: var(--primary);
}

.navbar.navbar-scrolled .nav-item.active .nav-link {
    color: var(--primary) !important;
}
/* navbar - end */

/* footer */
.main-footer {
    background-color: #22273c !important;
    border-top: 1px solid var(--border-color);
    padding-top: 42px;
    padding-bottom: 42px;
}

.main-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-footer .footer-top .footer-menu ul {
    display: flex;
    align-items: center;
    column-gap: 24px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.main-footer .footer-top .footer-menu ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
}
.main-footer .footer-top .footer-menu ul li a:hover {
    color: var(--primary);
}

.main-footer .footer-top .footer-social-media {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.main-footer .footer-top .footer-social-media a {
    color: var(--white);
    transition: all 0.2s ease;
}
.main-footer .footer-top .footer-social-media a .feather {
    width: 1.2rem;
    height: 1.2rem;
}
.main-footer .footer-top .footer-social-media a:hover {
    color: var(--primary);
}

.main-footer .footer-bottom {
    margin-top: 42px;
    border-top: 1px solid var(--border-color);
    padding-top: 42px;
    text-align: center;
}
/* footer - end */

/* pagination */
.bs-pagination { margin-top: 42px; }

.bs-pagination .pagination {
    justify-content: center;
    column-gap: 16px;
}

.bs-pagination .pagination .page-item .page-link {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.2s ease;
}
.bs-pagination .pagination .page-item .page-link:hover {
    background-color: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}
.bs-pagination .pagination .page-item.active .page-link {
    background-color: var(--primary);
    color: var(--white);
    border-color: transparent;
}
/* pagination - end */

@media (max-width: 767.98px) {
    .fab-wa {
        width: 50px;
        height: 50px;
    }

    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* navbar */
    .navbar {
        background: var(--secondary) !important;
    }

    .navbar .navbar-logo {
        display: inline-block;
    }

    .navbar .navbar-logo-white {
        display: none;
    }

    .navbar .nav-item .nav-link {
        color: var(--white);
    }

    .navbar .navbar-nav {
        margin-top: 24px !important;
        margin-bottom: 24px !important;
    }

    .navbar .navbar-cta-wrapper {
        flex-direction: column;
        row-gap: 16px;
    }
    /* navbar - end */

    /* footer */
    .main-footer .footer-top {
        flex-direction: column;
        row-gap: 32px;
    }

    .main-footer .footer-top .footer-menu ul {
        flex-direction: column;
        row-gap: 16px;
    }
    /* footer - end */
}

@media (max-width: 997.98px) {
    /* Utilities */
    #layoutDefault,
    #layoutDefault_footer {
        overflow-x: hidden;
    }
    /* End Utilities */
}

@media (min-width: 768px) and (max-width: 998px) {
    /* Utilities */
    .fab-wa {
        width: 48px;
        height: 48px;
    }

    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* navbar */
    .navbar {
        background: var(--secondary) !important;
    }

    .navbar .navbar-logo {
        display: inline-block;
    }

    .navbar .navbar-logo-white {
        display: none;
    }

    .navbar .nav-item .nav-link {
        color: var(--white);
    }

    .navbar .navbar-nav {
        margin-top: 24px !important;
        margin-bottom: 24px !important;
    }

    .navbar .navbar-cta-wrapper {
        justify-content: center;
    }

    .navbar .navbar-cta-wrapper .btn {
        width: 100%;
    }
    /* navbar - end */

    /* footer */
    .main-footer .footer-top {
        flex-direction: column;
        row-gap: 32px;
    }

    .main-footer .footer-top .footer-menu ul {
        flex-direction: column;
        row-gap: 16px;
    }
    /* footer - end */
}
