:root {
    --main: #2aa1b3;
}

body {
    font-family: system-ui;
    background: #f6fbfc;
    padding-top: 100px;
}

.section {
    padding: 0px 0;
}

/*NAVBAR*/
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    z-index: 999;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    background: white;
    border-radius: 20px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #2aa1b3;
}

.nav-logo img {
    height: 34px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #2aa1b3;
}

.nav-btn {
    background: #2aa1b3;
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
}

.nav-btn:hover {
    background: #238fa0;
}

.nav-cart {
    position: relative;
    margin-left: 15px;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f4f7f8;
}

.cart-icon:hover {
    background: #e8f3f5;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4d4f;
    color: white;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 50px;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-wrapper {
        justify-content: stretch;
        padding: 15px;
    }

    .nav-container {
        width: 100%;
        max-width: 100%;
        border-radius: 15px;
    }

    .nav-left {
        width: 100%;
    }

    .nav-right {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .nav-wrapper {
        padding: 10px;
    }

    .nav-container {
        padding: 10px 15px;
        border-radius: 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-toggle {
        display: block;
    }

    .nav-right {
        width: 100%;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        gap: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 10px;
        border-radius: 8px;
    }

    .nav-cart {
        margin-left: 0;
    }

    .cart-icon {
        width: 36px;
        height: 50px;
    }
}

/*FOOTER*/
.footer {
    background: #3f4959;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    color: #c7d0db;
    line-height: 1.6;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-grid img {
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    height: 40px;
    object-fit: contain;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.footer-contact li {
    margin-bottom: 10px;
    color: #c7d0db;
}

.footer-link {
    color: #9fd9e2;
    text-decoration: none;
}

.btn-footer {
    background: #2aa1b3;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #c7d0db;
}

@media (max-width: 992px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col:nth-child(1) {
        grid-column: span 2;
    }

    .payment-grid {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-col p {
        font-size: 14px;
    }

    .footer-contact li {
        font-size: 14px;
    }

    .payment-grid {
        gap: 10px;
    }

    .payment-grid img {
        height: 36px;
        padding: 6px 10px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}

/*CONTACT*/
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-section {
    padding-bottom: 60px;
}

.contact-map iframe {
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: #2aa1b3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    color: #5f6b75;
}

.contact-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.contact-badge {
    display: inline-block;
    background: #e8f7fa;
    color: #2aa1b3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-sub {
    color: #6b7b85;
}

.btn-main {
    display: inline-block;
    margin-top: 20px;
    background: #2aa1b3;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: #2aa1b3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    color: #5f6b75;
}

.highlight {
    color: #2aa1b3;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map iframe {
        height: 350px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 32px;
    }
    .contact-section {
        padding-bottom: 60px;
    }

    .footer {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .contact-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .contact-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .contact-sub {
        font-size: 14px;
    }

    .contact-grid {
        gap: 25px;
    }

    .contact-map iframe {
        height: 260px;
        border-radius: 12px;
    }

    .contact-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .btn-main {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/*HERO*/
.hero {
    background-image: url("../images/hero.webp");
    background-size: cover;
    background-position: center;
    padding: 160px 0;
    color: white;
    position: relative;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
}

.hero-desc {
    max-width: 480px;
    margin-bottom: 30px;
}

.btn-main {
    background: #2aa1b3;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}

@media (max-width: 992px) {
    .hero {
        padding: 120px 0;
        background-position: center;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.3;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 80px;
        text-align: center;
    }

    .hero:before {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.3)
        );
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero-desc {
        font-size: 14px;
        margin: 0 auto 20px;
    }

    .hero .row {
        justify-content: center;
    }

    .hero .col-lg-6 {
        width: 100%;
    }

    .btn-main {
        width: 100%;
        max-width: 250px;
    }
}

/*PROBLEM*/
.problem-section {
    padding: 120px 0;
    background: #f8fbfc;
}

.problem-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.section-label {
    color: #2aa1b3;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-sub {
    color: #6b7b85;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.problem-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.problem-content {
    padding: 25px;
}

.problem-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.problem-content p {
    color: #6b7b85;
}

@media (max-width: 992px) {
    .problem-section {
        padding: 80px 0;
        overflow: hidden;
    }

    .problem-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .section-title {
        font-size: 30px;
    }

    .problem-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding: 10px 15px 30px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .problem-grid::-webkit-scrollbar {
        display: none;
    }

    .problem-card {
        flex: 0 0 calc(100% - 30px); /* FIX UTAMA */
        scroll-snap-align: start;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
    }

    .problem-img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .problem-content {
        padding: 20px;
    }

    .problem-content h4 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .problem-content p {
        font-size: 18px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .problem-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .problem-card {
        flex: 0 0 calc(100% - 30px); /* tetap aman */
    }

    .problem-img {
        height: 180px;
    }

    .section-title {
        font-size: 22px;
    }
    .problem-content h4 {
        font-size: 18px;
    }
    .problem-content p {
        font-size: 14px;
    }
}

/*SOLUTION*/
.solution-section {
    padding-bottom: 120px;
    background: #f7fbfc;
}

.section-badge {
    display: inline-block;
    background: #e8f7fa;
    color: #2aa1b3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.solution-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.solution-desc {
    color: #6b7b85;
    margin-bottom: 30px;
    max-width: 500px;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.solution-icon {
    width: 34px;
    height: 34px;
    background: #2aa1b3;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.solution-image {
    position: relative;
}

.solution-image img {
    width: 100%;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: white;
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.floating-card span {
    font-weight: 600;
    display: block;
}

.floating-card p {
    margin: 0;
    color: #6b7b85;
    font-size: 14px;
}

@media (max-width: 992px) {
    .solution-section {
        padding: 20px 0;
    }

    .solution-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .solution-desc {
        max-width: 100%;
        font-size: 18px;
    }

    .solution-image {
        margin-bottom: 30px;
    }

    .solution-image img {
        border-radius: 16px;
    }

    .solution-list {
        gap: 12px;
    }

    .solution-item p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .solution-section {
        padding: 20px 0;
    }

    .solution-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .solution-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .section-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .solution-image {
        margin-bottom: 25px;
    }

    .solution-image img {
        border-radius: 14px;
    }

    .solution-item {
        gap: 10px;
        align-items: flex-start;
    }

    .solution-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 8px;
    }

    .solution-item p {
        font-size: 13px;
    }
}

/*SERVICE*/
.service-section {
    padding: 40px 0;
}

.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.tab-btn {
    border: none;
    background: #f3f7f8;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
}

.tab-btn.active {
    background: #2aa1b3;
    color: white;
}

.service-panel {
    display: none;
    margin-top: 40px;
}

.service-panel.active {
    display: block;
}

.service-img {
    width: 80%;
    border-radius: 20px;
}

.service-list {
    margin: 20px 0;
}

.service-list li {
    margin-bottom: 10px;
}

.catalog-layout > div:first-child {
    height: fit-content;
}

.btn-main {
    background: #2aa1b3;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}

@media (max-width: 767px) {
    .service-panel .row {
        display: flex;
        flex-direction: column;
        align-items: center; /* ini kunci */
    }

    .service-panel .col-lg-6:last-child {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    .service-panel .col-lg-6:first-child {
        width: 75%;
        max-width: 380px;
        margin: 0 auto;
    }

    .service-img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        border-radius: 14px;
    }

    .service-panel h3,
    .service-panel p,
    .service-list {
        text-align: left;
        font-size: 14px;
    }

    .btn-main {
        width: 100%;
        max-width: 260px;
        display: block;
        margin: 12px auto 0;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .service-panel .row {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .service-panel .col-lg-6 {
        width: 50%;
        max-width: 50%;
    }

    .service-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
    }

    .btn-main {
        width: auto;
        margin: 10px 0 0;
    }
}

/* CATALOG */
.catalog-section {
    padding-bottom: 20px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.catalog-sidebar {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.catalog-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalog-menu li {
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 5px;
}

.catalog-menu li:hover {
    background: #f1f7f9;
}

.catalog-menu li.active {
    background: #2aa1b3;
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.25s;

    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-body h5 {
    margin-bottom: 10px;
    font-size: 18px;
}

.product-features {
    padding-left: 18px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-features li {
    font-size: 14px;
    margin-bottom: 5px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-stock {
    background: #e8f7ee;
    color: #1a8f4c;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
}

.btn-main {
    background: #2aa1b3;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.product-card {
    display: flex;
}

.product-card.hidden {
    display: none !important;
}
.catalog-date .form-control {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
}

.catalog-date .form-control:focus {
    border-color: #2aa1b3;
    box-shadow: 0 0 0 2px rgba(42, 161, 179, 0.1);
}
@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr; /* sidebar ke atas */
        gap: 20px;
    }

    .catalog-sidebar {
        display: flex;
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* jadi 2 kolom */
        gap: 20px;
    }

    .product-card img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .catalog-layout {
        flex-direction: column;
    }

    .catalog-sidebar {
        width: 100%;
        margin-bottom: 15px;
    }

    .catalog-menu {
        display: flex;
        flex-wrap: wrap; /* INI KUNCI */
        gap: 8px;
    }

    .catalog-menu li {
        padding: 8px 12px;
        border-radius: 20px;
        background: #f1f7f9;
        font-size: 13px;
        white-space: nowrap;
    }

    .catalog-menu li.active {
        background: #2aa1b3;
        color: white;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .product-card img {
        height: 140px;
    }

    .product-body {
        padding: 10px;
    }

    .product-body h5 {
        font-size: 14px;
        margin-bottom: 6px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-features {
        padding-left: 14px;
        margin-bottom: 8px;
    }

    .product-features li {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .product-stock {
        font-size: 11px;
        text-align: center;
        padding: 4px;
    }

    .btn-main {
        font-size: 12px;
        padding: 8px;
        text-align: center;
    }
}

/*PROCESS*/
.process-section {
    padding: 20px 0;
    background: #f7fbfc;
}

.process-header {
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: 0.25s;
}

.process-card:hover {
    transform: translateY(-8px);
}

.process-image {
    position: relative;
    margin-bottom: 20px;
}

.process-image img {
    width: 100%;
    max-width: 220px;
    margin: auto;
    display: block;
    border-radius: 12px;
}

.process-step {
    position: absolute;
    top: -10px;
    right: 30px;
    background: #2aa1b3;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.process-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.process-card p {
    color: #6b7b85;
    font-size: 15px;
}

@media (max-width: 576px) {
    .process-section {
        padding: 70px 0;
        overflow: hidden;
    }

    .process-header {
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .process-header h2 {
        font-size: 28px;
    }

    .process-header p {
        font-size: 14px;
    }

    .process-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding: 10px 15px 25px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .process-grid::-webkit-scrollbar {
        display: none;
    }

    .process-card {
        flex: 0 0 calc(100% - 30px);
        scroll-snap-align: start;
        border-radius: 16px;
        padding: 25px;
        text-align: center;
    }

    .process-image {
        margin-bottom: 15px;
    }

    .process-image img {
        max-width: 180px;
    }

    .process-step {
        right: 20px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .process-card h4 {
        font-size: 16px;
    }

    .process-card p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 60px 0;
    }

    .process-header h2 {
        font-size: 22px;
    }

    .process-card {
        flex: 0 0 calc(100% - 30px);
        padding: 20px;
    }

    .process-image img {
        max-width: 150px;
    }

    .process-step {
        right: 15px;
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .process-card h4 {
        font-size: 15px;
    }

    .process-card p {
        font-size: 13px;
    }
}

/*TRUST*/
.trust-section {
    padding: 120px 0;
    background: #f7fbfc;
}

.trust-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.trust-badge {
    display: inline-block;
    background: #e8f7fa;
    color: #2aa1b3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.trust-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-sub {
    color: #6b7b85;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.trust-card {
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.25s;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-text {
    max-width: 80%;
}

.trust-text h4 {
    margin-bottom: 6px;
    font-weight: 600;
}

.trust-text p {
    color: #6b7b85;
    font-size: 14px;
    margin: 0;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: #2aa1b3;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.trust-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.btn-main {
    background: #2aa1b3;
    color: white;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 576px) {
    .trust-section {
        padding: 60px 0;
    }

    .trust-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .trust-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .trust-sub {
        font-size: 14px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .trust-card {
        padding: 18px 20px;
        border-radius: 14px;
    }

    .trust-text {
        max-width: 75%;
    }

    .trust-text h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .trust-text p {
        font-size: 13px;
        line-height: 1.4;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }

    /* CTA */
    .trust-cta h3 {
        font-size: 18px;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .btn-main {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 12px;
    }
}

/* MICRO */

* {
    transition: all 0.25s ease;
}

a,
button {
    transition: all 0.2s ease;
}
.btn-main {
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 161, 179, 0.25);
}

.btn-main:active {
    transform: scale(0.96);
}

/* ripple effect */
.btn-main::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: -100%;
    transition: 0.4s;
}

.btn-main:hover::after {
    left: 0;
}
.problem-card,
.product-card,
.process-card,
.trust-card {
    position: relative;
}

.problem-card:hover,
.product-card:hover,
.process-card:hover,
.trust-card:hover {
    transform: translateY(-10px) scale(1.01);
}

/* glow effect */
.product-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.product-card img,
.problem-card img,
.service-img {
    transition: transform 0.4s ease;
}

.product-card:hover img,
.problem-card:hover img {
    transform: scale(1.05);
}
.tab-btn {
    position: relative;
}

.tab-btn::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #2aa1b3;
    transition: 0.3s;
    transform: translateX(-50%);
}

.tab-btn:hover::after,
.tab-btn.active::after {
    width: 60%;
}
.product-card {
    opacity: 1;
    transform: scale(1);
}

.product-card.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}
.hidden-init {
    opacity: 0;
    transform: translateY(40px);
}

.show {
    opacity: 1;
    transform: translateY(0);
    transition: 0.6s ease;
}
.hero-title {
    animation: fadeUp 0.8s ease;
}

.hero-desc {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-card {
    cursor: pointer;
}
.skeleton {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
    border-radius: 10px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    z-index: 99999;
    overflow: hidden;
}

/* icon */
.wa-icon {
    display: flex;
}

/* hover */
.wa-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5);
}

/* klik */
.wa-float:active {
    transform: scale(0.95);
}

/* pulse */
@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-float {
    animation: waPulse 2.5s infinite;
}

/* online badge */
.wa-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    background: #00ff6a;
    border-radius: 50%;
    border: 2px solid white;
}

/* shine */
.wa-float::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
}

.wa-float:hover::after {
    left: 100%;
    transition: 0.6s;
}
@media (max-width: 768px) {
    .wa-float {
        position: fixed;
        bottom: 16px;
        right: 16px;
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;

        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;

        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }

    .wa-text {
        display: none;
    }

    .wa-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wa-icon svg {
        width: 26px;
        height: 26px;
    }

    /* biar tidak ketutup gesture bar HP */
    @supports (bottom: env(safe-area-inset-bottom)) {
        .wa-float {
            bottom: calc(16px + env(safe-area-inset-bottom));
        }
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .wa-float {
        position: fixed;
        bottom: 18px;
        right: 18px;
        z-index: 99999;

        display: flex;
        align-items: center;
        gap: 8px;

        padding: 10px 14px;
        border-radius: 40px;

        font-size: 13px;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    }

    .wa-icon svg {
        width: 22px;
        height: 22px;
    }

    .wa-text {
        display: inline;
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(42, 161, 179, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(42, 161, 179, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(42, 161, 179, 0);
    }
}

.btn-main {
    animation: pulse 2s infinite;
}
/* END MICRO */
/* CHECKOUT */
.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.checkout-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.checkout-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    color: #555;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    font-size: 14px;
    color: #333;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: 0.25s;
}

.select-wrapper select:hover,
.select-wrapper select:focus {
    border-color: #2aa1b3;
    background: #fff;
}

.select-wrapper select:focus {
    box-shadow: 0 0 0 2px rgba(42, 161, 179, 0.15);
}

.select-wrapper::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #9ca3af;
    pointer-events: none;
}

/* CART */
.cart-item {
    gap: 15px;
    margin-bottom: 15px;
}

.cart-item img {
    width: 120px;
    border-radius: 8px;
    flex-shrink: 0;
}

.cart-item > div {
    min-width: 0;
}

.cart-item div[style*="text-align:right"] {
    text-align: right;
    flex-shrink: 0;
}

.cart-content {
    flex: 1;
}

.cart-right {
    text-align: right;
    min-width: 120px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total {
    font-weight: 600;
    font-size: 18px;
}

.btn-checkout {
    width: 100%;
    background: #2aa1b3;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
}

.btn-hapus {
    margin-top: 5px;
    background: #ffecec;
    color: #e74c3c;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.btn-hapus:hover {
    background: #ffd6d6;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef7f9;
    color: #2aa1b3;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: 0.2s;
}

.qty-btn:hover {
    background: #2aa1b3;
    color: #fff;
}

.qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.qty-btn:active {
    transform: scale(0.9);
}

@media (max-width: 576px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-direction: column;
        gap: 10px;
    }

    .cart-item img {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

    .cart-item div[style*="text-align:right"] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .qty-btn {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .qty-value {
        font-size: 13px;
    }
}

.modal-content {
    border-radius: 16px;
}

/* ICON BULAT */
.warning-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff4e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warning-icon i {
    font-size: 30px;
    color: #ff9800;
}

/* TEXT */
.modal-body h5 {
    font-size: 18px;
}

.modal-body p {
    line-height: 1.5;
}

/* BUTTON */
.btn-main {
    background: #2aa1b3;
    border-radius: 10px;
    padding: 12px;
    font-weight: 500;
}

.btn-main:hover {
    background: #238a9a;
}

.modal.fade .modal-dialog {
    transform: translateY(20px);
    transition: 0.3s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

/* HERO WRAPPER */
.check-order-hero {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f7a8c, #2aa1b3);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 255, 0.2),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 255, 255, 0.15),
            transparent 50%
        );
    filter: blur(40px);
}

.hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-inner h2 {
    font-size: 28px;
}

.hero-subtitle {
    opacity: 0.9;
    font-size: 14px;
}

.search-box {
    display: flex;
    align-items: center;
    max-width: 540px;
    margin: 0 auto;
    border-radius: 60px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.search-box:hover {
    transform: translateY(-2px);
}

.search-box:focus-within {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.search-icon {
    padding: 0 14px;
    color: #e2e8f0;
    font-size: 16px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    padding: 14px 10px;
    font-size: 14px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box button {
    background: #fff;
    color: #2aa1b3;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.search-box button:hover {
    background: #f1f5f9;
}

.search-box button:active {
    transform: scale(0.95);
}

@media (max-width: 576px) {
    #hasilPesananModal .modal-dialog {
        margin: 10px;
    }

    #hasilPesananModal .modal-content {
        border-radius: 16px;
    }

    #hasilPesananModal .modal-body {
        padding-bottom: 20px;
    }

    #hasilPesananModal .btn-main {
        width: 100%;
        height: 48px;
        font-size: 15px;
        border-radius: 10px;
    }
}
