:root {
    --primary: #DC321E;
    --primary-lightest: #E65847;
    --secondary: #FFAA00;
    --secondary-lightest: #FFBB33;
    --dark: #000000;
    --dark-lightest: #1A1A1A;
    --white: #fff;
    --white-darkest: #fff;
    --grey: #666666;
    --grey-lightest: #888888;
    --font-1: 'Poppins', sans-serif;
    --font-2: 'Poppins', sans-serif;

    --transition: all 0.2s ease;
    --shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --layer-color: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    --filter: invert(26%) sepia(56%) saturate(4938%) hue-rotate(353deg) brightness(90%) contrast(90%);
}

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

/* 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-custom {
    border-radius: var(--border-radius);
    background-color: var(--primary);
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: var(--white) !important;
    transition: var(--transition);
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
}

.btn-custom:hover {
    color: var(--white);
    box-shadow: var(--shadow);
}

.mb-32 {
    margin-bottom: 32px;
}
/* End Utilities */


/* Navbar */
.navbar {
    background-color: var(--white) !important;
    border-bottom: 1px solid transparent !important;
    padding-left: 0;
    padding-right: 0;
    transition: var(--transition);
}

.navbar-scrolled {
    border-color: #f1f1f1 !important;
}

.navbar-logo {
    width: 100%;
    height: 40px;
    object-fit: contain;
    object-position: left;
    margin: 20px 0;
}

.navbar-nav .nav-link {
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: var(--grey);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}
/* End Navbar */


/* Footer */
.footer {
    background-color: #111111 !important;
    padding: 45px 0 16px;
    margin-top: 56px;
}

.footer-logo {
    width: 100%;
    height: 40px;
    object-fit: contain;
    margin-bottom: 32px;
}

.footer-icon {
    color: var(--white);
    margin-right: 8px;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social > i {
    color: var(--white);
    font-size: 16px;
}

.footer-social > img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    object-position: center;
}

.footer-social.instagram {
    background: #C300C7;
}

.footer-social.facebook {
    background: #003ACE;
}

.footer-social.youtube {
    background: #FF0000;
}

.footer-social.linkedin {
    background: #1F3A99;
}
/* End Footer */


@media (max-width: 767.98px) {

    /* Utilites */
    .fab-wa {
        width: 48px;
        height: 48px;
        right: 8px;
        bottom: 8px;
    }
    /* End Utilities */

    /* Navbar */

    /* End Navbar */

}

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

    /* Navbar */
    .navbar {
        padding: 0 24px;
        border-bottom: 1px solid #f1f1f1 !important;
    }
    /* End Navbar */

    /* Footer */
    .footer-logo {
        object-position: left;
    }
    /* End Footer */
}

@media (min-width: 768px) and (max-width: 998px) {

    /* Utilities */
    .fab-wa {
        width: 48px;
        height: 48px;
    }
    /* End Utilities */

    /* Navbar */

    /* End Navbar */
}
