:root {
    --bs-primary: #0067ac;
    --bs-secondary: #495057;
    --bs-success: #4bbf73;
    --bs-info: #1f9bcf;
    --bs-warning: #e5a54b;
    --bs-danger: #d9534f;
    --bs-light: #eff2f6;
    --bs-dark: #293042;
    --bs-primary-rgb: 63, 128, 234;
    --bs-secondary-rgb: 73, 80, 87;
    --bs-success-rgb: 75, 191, 115;
    --bs-info-rgb: 31, 155, 207;
    --bs-warning-rgb: 229, 165, 75;
    --bs-danger-rgb: 217, 83, 79;
    --bs-light-rgb: 239, 242, 246;
    --bs-dark-rgb: 41, 48, 66;
    --color-primary: #0067ac;
    --color-secondary: #495057;
}
body {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    background-color: #f7f9fc;
    background: linear-gradient(180deg, #f7f9fc, #ffffff);
}
* {
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-thumb {
    background: #999;
}
::-webkit-scrollbar-track {
    background: #eee;
}
a {
    color: var(--color-primary);
    text-decoration: none;
}
.bx {
    font-size: 1.05em;
    display: inline-block;
    vertical-align: middle;
}
.bx-lg {
    font-size: 1.5em;
}
.btn {
    border-radius: 8px;
}
.logo {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    color: #fff;
}
.logo > div {
    width: 55px;
    height: 55px;
    padding: 7px;
    padding-top: 8px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}
.logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.logo > span {
    display: inline-block;
    margin: 0px;
}
.navbar-menu ul:not(.sub-menu) {
    display: flex;
    flex-wrap: nowrap;
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.menu-item {
    margin-right: 35px;
    white-space: nowrap;
    position: relative;
}
.menu-item a {
    display: block;
    font-weight: 400;
    font-size: 15px;
    padding: 15px 0px;
    color: #fff;
    text-decoration: none;
}
.menu-item:hover > a {
    color: rgba(255, 255, 255, 0.7);
}
.menu-item a:focus {
    color: rgba(255, 255, 255, 0.7);
}
.menu-item.current-menu-parent > a,
.menu-item.current-menu-item > a {
    font-weight: bold;
    color: #fff;
}
.menu-item.has-submenu > a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border: 5px solid rgba(255, 255, 255, 0.5);
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    margin-top: 3px;
    margin-left: 7px;
}
.menu-item:last-child {
    margin-right: 0px;
}
.sub-menu {
    padding: 5px 0px 10px;
    margin: 0px;
    list-style: none;
    display: none;
    position: absolute;
    left: -15px;
    min-width: 150px;
    background-color: var(--color-secondary);
    box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132),
        0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
}
.menu-item.has-submenu:hover .sub-menu {
    display: block;
}
.sub-menu > .menu-item {
    margin: 0px;
}
.sub-menu > .menu-item.current-menu-item {
    border-bottom: 0px;
}
.sub-menu > .menu-item a {
    color: #fff;
    padding: 5px 15px;
}
.btn-menu {
    padding: 0px;
    color: #fff;
}
.btn-menu .bx-lg {
    font-size: 40px;
}
.offcanvas {
    background-color: var(--color-primary);
    color: #fff;
    max-width: 310px;
}
.offcanvas .offcanvas-header {
    padding: 30px 20px 10px 20px;
}
.offcanvas .offcanvas-body {
    padding: 20px 30px;
}
.offcanvas .icon-box {
    margin-left: 0px;
}
.offcanvas .navbar-menu ul:not(.sub-menu) {
    display: block;
    flex-wrap: unset;
}
.offcanvas .navbar-menu .menu-item {
    margin-right: 0px;
}
.offcanvas .navbar-menu .menu-item a {
    font-size: 17px;
    padding: 8px 0px;
    color: #fff;
}
.offcanvas .navbar-menu .sub-menu {
    display: block;
    position: relative;
    left: auto;
    padding: 0px;
    padding-bottom: 5px;
    box-shadow: none;
}
.offcanvas .navbar-menu .sub-menu > .menu-item a {
    padding: 5px 15px;
}
header {
    background-color: var(--color-primary);
    padding-top: 80px;
    color: #fff;
}
.navtop {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-primary);
    padding-top: 10px;
    padding-bottom: 10px;
}
.hero-section {
    color: #fff;
    position: relative;
    background-color: var(--color-primary);
}
.hero-section > div {
    padding-top: 50px;
    position: relative;
    z-index: 10;
}
.hero-section::after {
    content: "";
    display: block;
    width: 100%;
    height: 500px;
    background: url("../imgs/hero.svg") repeat-x bottom center;
    background-size: contain;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 0px;
}
.hero-section .btn-download {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 20px;
    text-align: center;
}
.hero-section .btn-download img {
    width: 150px;
    height: auto;
}
.hero-section .btn-download small {
    position: absolute;
    display: inline-block;
    top: -15px;
    right: 8px;
    padding: 1px 15px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-top: 5px;
    border-radius: 30px;
    background-color: #c00;
    border: 0.5px solid #fff;
}
.hero-title {
    font-size: 32px;
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-title b {
    font-weight: 800;
}
.hero-subtitle {
    font-size: 17px;
    line-height: 24px;
    letter-spacing: -0.3px;
    margin-bottom: 40px;
}
.hero-phones {
    width: 85%;
    margin: auto;
}
.hero-phones img {
    width: 100%;
    height: auto;
}
.promo-section {
    padding: 100px 0px 50px;
    position: relative;
    z-index: 10;
}
.promo-line {
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}
.promo-line::before,
.promo-line::after {
    content: "";
    display: block;
    width: 47%;
    height: 2px;
    background-color: transparent;
    border-bottom: 3px dashed #333;
    position: absolute;
    top: 32px;
    z-index: 1;
}
.promo-line::before {
    left: 10px;
    transform: rotate(165deg);
}
.promo-line::after {
    right: 10px;
    transform: rotate(15deg);
}
.promo-line div {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin: auto;
    position: relative;
    z-index: 10;
}
.promo-line div::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--color-primary);
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    opacity: 0.7;
}
.promo-line div svg {
    width: 15px;
    height: 15px;
    fill: var(--color-primary);
    display: inline-block;
    position: relative;
    z-index: 10px;
}
.promo-card {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.4);
}
.promo-card::before,
.promo-card::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 10px;
    z-index: 10;
}
.promo-card::before {
    left: 10px;
}
.promo-card::after {
    right: 10px;
}
.promo-card > a {
    display: block;
    position: relative;
    z-index: 1;
}
.promo-card img {
    width: 100%;
    height: auto;
}
.promo-default {
    background: var(--color-primary);
    color: white;
    padding: 50px 40px 40px;
    text-align: left;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.promo-default h5 {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.promo-default .promo-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    align-self: flex-end;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}
.promo-default .promo-link:hover {
    color: white;
    opacity: 0.8;
}
.promo-default .promo-link i {
    margin-left: 8px;
    font-size: 32px;
}
.section-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}
.section-title b {
    font-size: 34px;
    font-weight: bold;
}
.features-section {
    padding: 50px 0px 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    padding-left: 30px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}
.feature-item:hover {
    background-color: #f8f9fa;
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
}
.feature-icon.keren {
    background: linear-gradient(135deg, #ffa726, #ffb74d);
}
.feature-icon.dapur {
    background: linear-gradient(135deg, #66bb6a, #81c784);
}
.feature-icon.fashion {
    background: linear-gradient(135deg, #ef5350, #f48fb1);
}
.feature-icon.rumah {
    background: linear-gradient(135deg, var(--color-primary), #0479c7);
}
.feature-icon.dot div {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 10px solid #eeb851;
}
.feature-icon.dot svg {
    width: 40px;
    height: 40px;
    fill: #e69908;
    display: inline-block;
}
.feature-text {
    letter-spacing: -0.5px;
    color: var(--color-primary);
}
.feature-text h5 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 0px;
}
.feature-text p {
    font-size: 18px;
    margin-bottom: 0px;
}
.features-phone {
    position: relative;
    text-align: center;
    background: url("../imgs/line1.png") no-repeat center;
    background-size: contain;
}
.features-phone img {
    max-width: 400px;
    width: 100%;
    height: auto;
}
.post-section {
    min-height: 500px;
}
.post-body {
    font-size: 17px;
    line-height: 1.4;
}
.post-body a {
    color: var(--color-primary);
    text-decoration: underline;
}
.post-body p,
.post-body ul,
.post-body ol {
    margin-bottom: 25px;
}
.post-body h2 {
    font-size: 28px;
    font-weight: bold;
}
.post-body h3 {
    font-size: 24px;
    font-weight: bold;
}
.post-body h4 {
    font-size: 20px;
    font-weight: bold;
}
.post-body h5 {
    font-size: 18px;
    font-weight: bold;
}
.post-section,
.faq-section {
    padding: 50px 0;
}
.faq-background {
    background: url("../imgs/line2.png") no-repeat;
    background-position: 0px 190px;
    background-size: contain;
}
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    border-radius: 15px !important;
}
.accordion-button:not(.collapsed) {
    background: #e3f2fd;
    color: var(--color-primary);
    box-shadow: none;
}
.accordion-button .bx {
    font-size: 1.5em;
    margin-right: 25px;
}
.accordion-button .bx-minus-circle {
    color: var(--color-primary);
    display: none;
}
.accordion-button .bx-plus-circle {
    color: #e69908;
    display: none;
}
.accordion-button:not(.collapsed) .bx-minus-circle {
    display: inline-block;
}
.accordion-button.collapsed .bx-plus-circle {
    display: inline-block;
}
.accordion-button:focus {
    box-shadow: none;
    border: none;
}
.accordion-body {
    padding: 1.5rem;
    background: white;
    line-height: 1.6;
}
footer {
    /* background: #fff; */
    padding: 50px 0;
    border-top: 1px solid #ddd;
}
.footer-nav {
    list-style: none;
    display: flex;
    column-gap: 2rem;
    margin: 0;
    padding: 0px 15px;
    flex-wrap: wrap;
}
.footer-nav li a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-nav li a:hover,
.footer-nav li.active a {
    color: var(--color-primary);
}
@media (min-width: 1200px) {
    .hero-phones {
        width: 60%;
    }
}
@media (min-width: 992px) {
    .hero-section > div {
        padding-top: 100px;
    }
    .hero-section .btn-download img {
        width: 180px;
    }
    .hero-title {
        font-size: 38px;
        line-height: 40px;
    }
    .promo-section {
        padding: 150px 0px 100px;
    }
    .features-section {
        padding: 100px 0px 70px;
    }
    .post-section,
    .faq-section {
        padding: 100px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .section-title b {
        font-size: 38px;
    }
    .footer-nav {
        padding: 0px;
    }
}
