/* warna utama dari logo */
:root {
    --green-main: #2e7d32;
    --green-soft: #e8f5e9;
    --green-soft2: #c8e6c9;
    --accent: #f9a825; /* kuning/orange logo */
}

/* card */
.banner-card {
    padding: 40px 30px;
    border-radius: 14px;
    height: 100%;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* hijau lembut */
.banner-card.green-soft {
    background: linear-gradient(135deg, var(--green-soft), var(--green-soft2));
}

/* putih */
.banner-card.white {
    background: #ffffff;
    border: 1px solid #eee;
}

/* highlight tengah (biar standout) */
.banner-card.highlight {
    border-top: 4px solid var(--accent);
}

/* hover */
.banner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* icon */
.banner-card .icon {
    font-size: 38px;
    color: var(--green-main);
    margin-bottom: 15px;
}

/* kategori */
.banner-card .category {
    font-size: 13px;
    color: var(--green-main);
    font-weight: 600;
}

/* title */
.banner-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0;
}

/* text */
.banner-card p {
    font-size: 14px;
    color: #555;
}

/* aksen bulat kanan bawah */
.banner-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(46,125,50,0.06);
    border-radius: 50%;
    bottom: 15px;
    right: 15px;
}

/* aksen garis kecil (kuning) */
.banner-card::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--accent);
    top: 20px;
    left: 20px;
    border-radius: 10px;
}

/* reward */
/* ================== HEADER ================== */

.reward-header .badge {
    background: var(--accent);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.reward-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 15px 0;
    color: #222;
}

.reward-header p {
    font-size: 15px;
    color: #666;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}


/* ================== BANNER ================== */

.reward-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* gambar lebih clean */
.reward-img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.6s;
}

/* overlay lebih halus & premium */
.reward-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.15),
        rgba(0,0,0,0)
    );
}

/* hover subtle (jangan lebay) */
.reward-banner:hover .reward-img {
    transform: scale(1.03);
}

/* highlight (dibikin lebih elegan) */
.reward-highlight {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    backdrop-filter: blur(4px);
    font-weight: 500;
}

/* tambahan kecil tapi impactful */
.reward-year {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    color: #222;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
/* endreward */

/* testimoni */
/* ================= TESTIMONIAL ================= */
.testimonial-area {
    background: #fafafa;
    padding-top: 80px !important;
}

.testimonial-area {
    background: #fafafa;
}

.testimonial-slider {
    padding-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    max-width: 600px;
    margin: auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* bintang */
.testimonial-card .stars {
    color: #f9a825;
    font-size: 16px;
    margin-bottom: 10px;
}

/* nama */
.testimonial-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 5px 0;
}

/* role */
.testimonial-card span {
    font-size: 13px;
    color: #888;
}

/* pagination */
.testimonial-slider .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.testimonial-slider .swiper-pagination-bullet-active {
    background: #2e7d32;
}
/* endtestimoni */

/* maps */
/* ================= BRANCH / MAP ================= */

.branch-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.branch-card:hover {
    transform: translateY(-6px);
}

/* map */
.branch-card iframe {
    width: 100%;
    height: 180px;
    border: 0;
}

/* info */
.branch-info {
    padding: 15px;
}

.branch-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-main);
    margin-bottom: 5px;
}

.branch-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.branch-info span {
    font-size: 13px;
    color: #333;
}
/* endmaps */
/* footer */
/* footer upgrade */
.footer-area {
    background: #111;
}

.footer-herading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-desc {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links ul {
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #bbb;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--green-main);
    padding-left: 5px;
}

/* contact */
.footer-links .mail,
.footer-links .address,
.footer-links .phone {
    color: #bbb;
    font-size: 14px;
}

/* social */
.footer-social a {
    color: #bbb;
    margin-left: 12px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--green-main);
}

/* bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 30px;
    padding-top: 20px;
}

.copy-text {
    color: #888;
    font-size: 13px;
}
/* endfooter */