/**========================================================================
 *                                ROOT
 *========================================================================**/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
    color: inherit;
}

body {
    font-size: 18px;
    font-family: 'ubuntu';
}

:root {
    --orange: #fb8530;
    --blue: #01a1ff;
    --darkBlue: #0139b5;
}

/**========================================================================
 *                                FONT FACE
 *========================================================================**/

@font-face {
    font-family: 'editorial-new';
    src: url('/assets/font/editorial-new/PPEditorialNew-Regular-BF644b214ff145f.otf');
    font-weight: normal;
}


@font-face {
    font-family: 'inter-tight';
    src: url('/assets/font/inter-tight/InterTight-Medium.ttf');
    font-weight: normal;
}


@font-face {
    font-family: 'ubuntu';
    src: url('/assets/font/ubuntu/Ubuntu-Medium.ttf');
    font-weight: normal;
}

/**========================================================================
 *                                SPACING
 *========================================================================**/


.section-my {
    margin-bottom: 120px !important;
    margin-top: 120px !important;
}

.section-mb {
    margin-bottom: 120px !important;
}

.section-mt {
    margin-top: 120px !important;
}

.section-py {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.section-pb {
    padding-bottom: 120px !important;
}

.section-pt {
    padding-top: 120px !important;
}

.section-padding {
    padding: 120px;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/**========================================================================
 *                                HEADER
 *========================================================================**/

/**========================================================================
 * NAVIGATION SYSTEM
 *========================================================================**/

.top-bar {
    background-color: var(--blue);
    padding: 10px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.top-bar .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.top-bar .info-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.top-bar .info-item a:hover {
    opacity: 0.85;
}

.top-bar .info-item i {
    font-size: 15px;
    color: #ffffff;
}

/**========================================================================
 * NAVBAR
 *========================================================================**/

.navbar {
    padding: 25px 60px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.navbar .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    max-width: 300px;
}

.navbar .nav-bismillah {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
}

.navbar img.nav-bismillah {
    max-height: 60px;
    display: block;
}

.navbar-nav {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.navbar .nav-actions-wrap .right-side-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 10px;
}

.navbar .right-side-actions .member-login-wrap svg {
    color: var(--darkBlue);
    margin-right: 4px;
}

.navbar .nav-actions-wrap .right-side-actions .member-btn {
    padding-right: 28px;
    margin-right: 28px;
    border-right: 2px solid #d3d3d3;
}

.navbar .nav-actions-wrap .right-side-actions img {
    max-width: 40px;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item .nav-link {
    display: block;
    color: #000000;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--orange);
}

.navbar-nav .nav-link i {
    font-size: 12px;
    margin-left: 4px;
}

.navbar .nav-item.active .nav-link {
    color: var(--orange);
}

.navbar .nav-item .dropdown {
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 99;
    background: white;
    width: 300px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    list-style: none;
    overflow: hidden;
    max-height: 0px;
    transition: all 0.5s ease;
    transition-delay: 0.1s;
}

.navbar .nav-item .dropdown .content {
    padding: 30px 20px;
}


.navbar .nav-item .dropdown li:not(:last-child) {
    margin-bottom: 20px;
}

.navbar .nav-item:hover .dropdown {
    max-height: 160px;
    pointer-events: all;
}


.navbar .nav-item .dropdown::after {
    position: absolute;
    bottom: 0;
    right: 50%;

    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--blue);
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 300ms ease;

}

.navbar .nav-item:hover .dropdown:after {
    opacity: 1;
}


.navbar .dropdown .dropdown-menu {
    border-top: 3px solid var(--orange);
    box-shadow: rgba(25, 39, 67, 0.12) 0px 12px 24px -4px;
    border-radius: 0 0 6px 6px;
    background: #fff;
    list-style: none;
    min-width: 220px;
}

.navbar .nav-item .dropdown .dropdown-item {
    display: block;
    color: var(--darkerBlue);
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar .nav-item .dropdown .dropdown-item:hover {
    background-color: #f8fafc;
    color: var(--orange);
}

.navbar .logo-mobile {
    display: none;
}

.sticky_nav {
    display: none;
}

.mobile-menu-trigger {
    display: none;
}

/**========================================================================
 *                                HOME PAGE
 *========================================================================**/

/* /////////////////////////// */
/* HERO SECTION */
/* /////////////////////////// */

.home-section {
    margin: 30px 50px 0;
    /* background-image: url(../img/home/hero-section.jpg); */
    background-repeat: no-repeat;
}

/**========================================================================
 *                                FOOTER
 *========================================================================**/

.footer {
    margin: 0 50px 40px;
    border-radius: 40px;
    color: white;
}

.footer-inner {
    background-image: url('../img/footer-bg.jpg');
    background-size: cover;
}

/* FOOTER TOP BAR */

.footer-cta-bar {
    background-color: var(--orange);
    padding: 30px 40px;
    border-radius: 30px 30px 0 0;
    width: 100%;
}

.footer-cta-bar .flex-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left,
.cta-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-circle {
    width: 60px;
    height: 60px;
    border: 2px dashed rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    animation: rotate 8s linear infinite;
}

.cta-icon-circle svg {
    width: 26px;
    height: 26px;
    animation: rotate-reverse 8s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.cta-text {
    font-size: 24px;
    margin: 0;
}


.cta-phone-btn {
    background-color: var(--darkBlue);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.cta-phone-btn:hover {
    background-color: #0b1a30;
}


@media (max-width: 768px) {
    .footer-cta-bar {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        border-radius: 20px;
    }

    .cta-left,
    .cta-right {
        flex-direction: column;
        gap: 12px;
    }
}

/* TOP */

.footer .footer-top {
    display: grid;
    grid-template-columns: 320px repeat(4, 1fr);
    gap: 80px;
    padding: 120px 0 100px;
}

.footer .footer-top .footer-about .footer-description {
    line-height: 1.4;
}

.footer-logo {
    height: 80px;
    border-radius: 12px;
    margin-top: 40px;
    padding: 12px;
    animation: logoFlipAnimation 3s ease-in-out infinite;
}


@keyframes logoFlipAnimation {
    0% {
        transform: perspective(400px) rotateY(-25deg);
    }

    50% {
        transform: perspective(400px) rotateY(25deg);
    }

    100% {
        transform: perspective(400px) rotateY(-25deg);
    }
}

.footer .footer-column .footer-heading {
    font-size: 24px;
    margin-bottom: 40px;
}

.footer .footer-column .footer-links {
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* MIDDLE */

.powered-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    width: 100%;
    gap: 25px;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 75px;
    width: auto;
}

.brand-logo.text {
    height: 40px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.company-subtext {
    color: #cccccc;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 2px 0 0 0;
}

.footer-divider-line {
    flex-grow: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
}

.social-icons-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.social-icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}


.social-icon-link:hover {
    background-color: #ffffff;
    color: #6a2b9a;
    border-color: #ffffff;
    transform: translateY(-2px);
}


@media (max-width: 900px) {
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .brand-container {
        flex-direction: column;
        gap: 10px;
    }

    .logo-wrapper {
        flex-direction: column;
        gap: 8px;
    }


    .footer-divider-line {
        display: none;
    }
}

/* BOTTOM */

.footer .footer-copyright {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #1c2030;
    padding: 30px 0;
}