:root {
    --primary: #FF0063;
    --primary-light: #FF3382;
    --secondary: #00FF9C;
    --secondary-light: #33FFB0;
    --dark: #000000;
    --dark-lightest: #1a1a1a;
    --white: #fff;
    --white-darkest: #f1f1f1;
    --grey: #666666;
    --light-grey: #888888;
    --font-1: "Poppins", sans-serif;

    --transition: all 0.2s ease;
    --shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
    --layer-color: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.9)
    );
}

* {
    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-custom {
    padding: 15px 30px;
    border: 1px solid transparent;
    background-color: var(--primary);
    color: var(--white);
    transition: var(--transition);
    font-weight: 600;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.btn-custom:hover {
    color: var(--white);
    filter: brightness(0.8);
}

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

/* Navbar */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid #2b2b2b;
}

.navbar-logo {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

.navbar-scrolled {
    background: rgba(43, 43, 43, 0.9) !important;
    backdrop-filter: blur(8px);
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500 !important;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    padding-top: 50px;
    margin-top: 56px;
    background: var(--dark);
}

.footer-logo {
    width: 202px;
    height: 40px;
    object-fit: contain;
}

.footer .btn-custom {
    margin-top: 28px;
}

.footer .col-md-6 .footer-icon {
    margin-right: 14px;
    font-size: 18px;
    color: var(--primary);
}

.footer-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 14px;
}

.footer .col-md-6 .media {
    margin-bottom: 8px;
}

.footer .col-lg-3 .footer-social-container {
    margin-right: 15px;
    padding: 8px 8px;
    border-radius: 50px;
    display: flex;
    place-items: center;
}

.footer-social-container img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-social-container.ig {
    background-color: #c300c7;
}

.footer-social-container.fb {
    background-color: #003ace;
}

.footer-social-container.yt {
    background-color: #ff0000;
}

.footer-social-container.link {
    background-color: #1f3a99;
}

.footer .footer-container {
    background-color: var(--dark);
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 58px;
}
/* End Footer */

@media (max-width: 767.98px) {
    /* Utilites */
    .fab-wa {
        width: 48px;
        height: 48px;
        right: 8px;
        bottom: 8px;
    }
    /* End Utilities */

    /* Navbar */
    .navbar {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-logo {
        margin: 0;
        width: 100%;
        height: 60px;
    }

    .nav-item:last-of-type {
        margin-bottom: 0;
    }
    /* End Navbar */
}

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

    /* Navbar */
    .navbar {
        background-color: rgba(43, 43, 43, 0.9) !important;
        backdrop-filter: blur(8px);
    }
}

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

    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    /* End Utilities */

    /* Navbar */
    .navbar {
        background-color: rgba(43, 43, 43, 0.9) !important;
        backdrop-filter: blur(8px);
        padding-left: 44px;
        padding-right: 44px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-logo {
        margin: 0;
        width: auto;
    }

    .nav-item {
        margin-bottom: 16px;
    }

    .nav-item:last-of-type {
        margin-bottom: 0;
    }
    /* End Navbar */
}
