/* Beranda */
:root {
    --primary: #4f3cc9;
}

body {
    font-family: "Poppins", sans-serif;
}

section {
    padding: 90px 0;
}

.bg-primary-custom {
    background: var(--primary);
    color: #fff;
}

/* NAV */
.navbar {
    background: var(--primary);
}

.nav-link {
    position: relative;
    color: #fff !important;
    font-weight: 500;
    margin-left: 18px;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

/* =========================
   LOGIN BUTTON PROFESSIONAL
========================= */
.btn-login-pro {
    padding: 8px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;

    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);

    transition: all 0.3s ease;
}

/* Hover */
.btn-login-pro:hover {
    background: #fff;
    border-color: transparent;
    color: var(--primary);
    box-shadow: 0 8px 22px rgba(34, 197, 94, 0.35);
}

/* Active */
.btn-login-pro:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(152, 153, 152, 0.25);
}

/* HERO */
.hero {
    position: relative;
    padding-top: 140px;
    height: 700px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
}

/* HERO FLOATING */
#hero-img,
#slider-img {
    max-width: 95%;
    animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

/* WHY */
.why-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    text-align: justify;
}

.why-icon {
    min-width: 42px;
    min-height: 42px;
    border-radius: 100%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#why-img {
    max-width: 90%;
}

.why-item:hover .why-icon {
    animation: bounceIcon 0.6s ease;
}

@keyframes bounceIcon {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(2px);
    }
    100% {
        transform: translateY(0);
    }
}

/* FEATURE CARD */
.feature-box {
    height: 280px;
    background: linear-gradient(180deg, #ffffff, #f7f6ff);
    border-radius: 20px;
    padding: 30px;
    color: #4f3cc9;
    box-shadow: 0 18px 45px rgba(79, 60, 201, 0.12);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* SOFT GLOW BORDER */
.feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    opacity: 0;
    transition: 0.35s;
}

/* HOVER */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(79, 60, 201, 0.22);
}

.feature-box:hover::before {
    opacity: 1;
}

/* HEADER */
.feature-box .d-flex {
    align-items: center;
}

/* ICON BADGE */
.feature-box i {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #6f5cff, #3b2bb3);
    color: #fff;
    font-size: 20px;
    transition: 0.35s;
}

/* ICON HOVER */
.feature-box:hover i {
    transform: scale(1.1) rotate(-5deg);
}

/* TITLE */
.feature-box h6 {
    font-size: 17px;
    margin-left: 14px;
}

/* LIST */
.feature-box ul {
    margin-top: 18px;
    padding-left: 0;
}

.feature-box ul li {
    font-size: 14px;
    color: #555;
    padding-left: 22px;
    position: relative;
    margin-bottom: 6px;
}

/* CUSTOM CHECK ICON */
.feature-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    color: #6f5cff;
}

/* DESCRIPTION WIDTH */
#feature-desc {
    max-width: 760px;
    margin: auto;
}

/* SLIDER */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-item {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: flex;
    justify-content: center;
}

/* TESTIMONI SECTION */
/* SECTION */
.testimoni-section {
    background: #4f3cc9;
    padding: 100px 0;
}

/* TITLE */
.testi-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.testi-subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 760px;
    margin: 0 auto 60px;
    font-size: 15px;
}

/* CARD */
.testi-card {
    background: #ffffff;
    border-radius: 32px;
    max-width: 950px;
    margin: auto;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    animation: testiFade 0.8s ease;
}

#testimoni-foto {
    width: 300px;
    height: 300px;
}

@keyframes testiFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PHOTO */
.testi-photo-wrapper {
    transform: rotate(-5deg);
    background: #3da9ff;
    padding: 8px;
    border-radius: 26px;
    flex-shrink: 0;
    animation: sway 5s ease-in-out infinite;
}

@keyframes sway {
    0%,
    100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(-2deg);
    }
}

.testi-photo-wrapper img {
    width: 260px;
    border-radius: 22px;
    display: block;
}

/* BODY */
.testi-body {
    max-width: 480px;
}

.testi-brand {
    font-family: "Pacifico", cursive;
    color: #4f3cc9;
    font-size: 36px;
    margin-bottom: 12px;
}

.testi-body p {
    color: #555;
    line-height: 1.8;
}

/* INDICATOR */
.testi-indicator {
    position: relative;
    margin-top: 30px;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.4;
}

.carousel-indicators .active {
    opacity: 1;
}

#slider-img {
    max-width: 90%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testi-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .testi-body {
        text-align: center;
    }
}

/* FOOTER */
.footer-ipendapos {
    color: #4f3cc9;
    padding: 90px 0 30px;
}

/* BRAND */
.footer-brand {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-desc {
    color: #000000;
    margin-top: 15px;
    width: 100%;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f3cc9;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #4f3cc9;
    color: #fff;
    transform: translateY(-4px);
}

/* TITLES */
.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
}

/* OFFICE */
.footer-office {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-office i {
    font-size: 22px;
    color: #000000;
}

.footer-office p {
    margin: 0;
    color: #000000;
}

/* CONTACT */
.footer-contact div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: #000000;
}

.footer-contact i {
    font-size: 20px;
    color: #000000;
}

/* STORE */
.footer-store {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-store img {
    max-width: 150px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-store img:hover {
    transform: scale(1.05);
}

/* DIVIDER */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-link a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-link a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
        gap: 10px;
        justify-content: center;
    }
}

footer {
    background: #4f3cc9;
    color: #ffffff;
    padding: 20px 0;
}

/* =====================================================
        RESPONSIVE MASTER STYLE – iPendaPos
        Author: iPendaPos UI
        ===================================================== */

/* ======================
        GLOBAL RESPONSIVE
        ====================== */
html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 90px 0;
}

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

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

/* ======================
        HERO SECTION
        ====================== */
@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.25;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero h5 {
        font-size: 16px;
    }

    .hero p {
        font-size: 14px;
    }
}

/* ======================
        WHY IPENDAPOS
        ====================== */
@media (max-width: 992px) {
    .why-item {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .why-item {
        gap: 12px;
    }

    .why-icon {
        min-width: 36px;
        min-height: 36px;
        font-size: 14px;
    }

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

/* ======================
        FEATURE SECTION
        ====================== */
@media (max-width: 768px) {
    .feature-box {
        height: auto;
        padding: 28px;
    }
}

@media (max-width: 576px) {
    .feature-box h6 {
        font-size: 15px;
    }

    .feature-box ul {
        font-size: 13px;
    }
}

/* ======================
        MOCKUP / SLIDER
        ====================== */
@media (max-width: 992px) {
    #mockupCarousel img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* ======================
        TESTIMONI SECTION
        ====================== */
@media (max-width: 992px) {
    .testi-card {
        gap: 32px;
        padding: 44px;
    }

    .testi-photo-wrapper img {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .testi-card {
        flex-direction: column;
        text-align: center;
    }

    .testi-body {
        max-width: 100%;
        text-align: center;
    }

    .testi-brand {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .testi-photo-wrapper {
        transform: rotate(0deg);
    }

    .testi-photo-wrapper img {
        width: 180px;
    }

    .testi-body p {
        font-size: 14px;
    }
}

/* ======================
        FOOTER SECTION
        ====================== */
@media (max-width: 992px) {
    .footer-social {
        justify-content: center;
    }

    .footer-store {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-ipendapos h5 {
        font-size: 16px;
    }

    .footer-ipendapos p,
    .footer-ipendapos li {
        font-size: 14px;
    }

    .footer-title,
    .footer-brand,
    .footer-desc {
        text-align: center;
    }
}

/* ======================
        BUTTON & INTERACTION
        ====================== */
@media (max-width: 576px) {
    .btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* Harga */
/* =========================
        Hero
        ========================= */
#hero-title {
    margin-top: 150px;
}

/* =========================
        PRICE LIST
         ========================= */
.price-section {
    position: relative;
    margin-top: -300px;
    padding-bottom: 80px;
    z-index: 10;
}

.price-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-12px);
}

.price-card.popular {
    border: 3px solid #4f3cc9;
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: #4f3cc9;
    color: #fff;
    padding: 6px 40px;
    font-size: 12px;
    transform: rotate(45deg);
    font-weight: 600;
}

.price-title {
    font-weight: 800;
    font-size: 20px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #4f3cc9;
}

.price-amount span {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.price-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 14px;
}

.price-list li:last-child {
    border-bottom: none;
}

/* =========================
               FEATURE LIST ADVANCED
            ========================= */
.feature-list-advanced {
    background: linear-gradient(180deg, #4f3cc9 0%, #36289b 100%);
    padding: 110px 0;
}

/* =========================
               TABLE WRAPPER
            ========================= */
.feature-compare-table {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
    min-width: 780px;
}

/* =========================
               HEADER
            ========================= */
.feature-compare-table thead th {
    background: #f5f4ff;
    padding: 22px 16px;
    font-weight: 800;
    color: #4f3cc9;
    text-align: center;
    border: none;
    position: relative;
}

.feature-compare-table thead .feature-col {
    text-align: left;
}

/* =========================
               BODY
            ========================= */
.feature-compare-table tbody td {
    padding: 18px 16px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #ecebff;
    transition: all 0.25s ease;
}

.feature-compare-table tbody td.feature-col {
    text-align: left;
    font-weight: 600;
    color: #333;
}

/* =========================
               HIGHLIGHT PLAN
            ========================= */
.plan-highlight {
    background: linear-gradient(
        180deg,
        rgba(79, 60, 201, 0.08),
        rgba(79, 60, 201, 0.03)
    );
    font-weight: 700;
}

.badge-best {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f3cc9;
    color: #fff;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* =========================
               ROW INTERACTION
            ========================= */
.feature-compare-table tbody tr:hover td {
    background: rgba(79, 60, 201, 0.05);
}

/* =========================
               CTA ROW
            ========================= */
.cta-row td {
    padding: 26px 16px;
    background: #fafaff;
}

/* =========================
               BUTTONS
            ========================= */
.feature-compare-table .btn-outline-light {
    border-color: #4f3cc9;
    color: #4f3cc9;
}

.feature-compare-table .btn-outline-light:hover {
    background: #4f3cc9;
    color: #fff;
}

/* =========================
               RESPONSIVE
            ========================= */
@media (max-width: 768px) {
    .feature-list-advanced {
        padding: 80px 0;
    }

    .feature-compare-table {
        min-width: 650px;
    }
}

/* =========================
        RESPONSIVE
        ========================= */
@media (max-width: 768px) {
    #hero-title {
        margin-top: 100px;
    }

    .price-section {
        margin-top: -300px;
    }

    .price-card.popular {
        transform: scale(1);
    }
}

/* Hubungi Kami */
/* =========================
   CONTACT SECTION
========================= */
.kontak-section {
    padding: 100px 0;
    background: #f9f9ff;
}

/* INFO */
.contact-info i {
    background: rgba(79, 60, 201, 0.1);
    padding: 10px;
    border-radius: 12px;
}

/* FORM CARD */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* FORM */
.form-label {
    font-weight: 600;
    font-size: 14px;
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
}

.form-control:focus,
.form-select:focus {
    border-color: #4f3cc9;
    box-shadow: 0 0 0 0.2rem rgba(79, 60, 201, 0.15);
}

/* BUTTON */
.btn-primary {
    background: #4f3cc9;
    border: none;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #3b2ca3;
}

.kutipan {
    background-color: #4f3cc9;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .kontak-section {
        padding: 70px 0;
    }

    .contact-card {
        padding: 30px;
    }
}

/* ===============================
   Floating WhatsApp Button
================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #fff;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-whatsapp i {
    font-size: 1.6rem;
}

.floating-whatsapp .floating-text {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
    color: #fff;
}

/* Mobile: hanya icon */
@media (max-width: 576px) {
    .floating-whatsapp {
        padding: 14px;
        border-radius: 50%;
    }

    .floating-whatsapp .floating-text {
        display: none;
    }
}
