/* ================================
   BRAND COLOR SYSTEM
================================= */

:root {

    /* === PRIMARY (Brand) === */
    --color-primary: #71c55d;
    --color-primary-dark: #5fb34c;
    --color-primary-light: #e8f6e4;

    --color-primary-hover: #63b84f;

    --color-text-main: #1e293b;
    --color-text-light: #64748b;

    --color-bg-sidebar: #fdfdfd;
    --color-bg-hover: var(--color-primary);
    --color-bg-active: var(--color-primary);

    --color-border-soft: rgba(0, 0, 0, 0.05);

    /* === SUCCESS === */
    --color-success: #22c55e;
    --color-success-light: #dcfce7;

    /* === WARNING === */
    --color-warning: #f59e0b;
    --color-warning-light: #fef3c7;

    /* === DANGER === */
    --color-danger: #ef4444;
    --color-danger-light: #fee2e2;

    /* === INFO === */
    --color-info: #3b82f6;
    --color-info-light: #dbeafe;

}






/* ========================================
   MALIYA CARD PRODUCT
======================================== */

.maliya-card-product {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border-soft);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.maliya-card-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

/* ================= IMAGE ================= */

.maliya-card-product .product-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

/* 🔥 FIX UTAMA: anti override */
.maliya-card-product .product-image-wrapper img,
.maliya-card-product .product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover zoom */
.maliya-card-product:hover .product-image {
    transform: scale(1.05);
}

/* Placeholder */
.maliya-card-product .product-image-placeholder {
    height: 100%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 14px;
}

/* ================= BADGES ================= */

.badge-type {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    background: var(--color-primary);
    color: #fff;
}

.badge-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-warning);
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 50px;
}

/* ================= BODY ================= */

.product-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 10px;
    color: var(--color-text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.product-description {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
    flex-grow: 1;
}

/* ================= META ================= */

.product-meta {
    margin-top: 8px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge-akad,
.badge-shipping,
.badge-digital {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 6px;
    /* bukan pill lagi */
    font-weight: 500;
    opacity: 0.85;
}

.badge-akad-bay {
    background: var(--color-success-light);
    color: var(--color-success);
}

.badge-akad-ijarah {
    background: var(--color-info-light);
    color: var(--color-info);
}

.badge-shipping {
    background: var(--color-warning-light);
    color: var(--color-warning);
}

.badge-digital {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

/* ================= FOOTER ================= */

.product-footer {
    margin-top: 15px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

/* ================= ACTIONS ================= */

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-product-edit {
    flex: 1;
    text-align: center;
    background: var(--color-warning-light);
    color: var(--color-warning);
    padding: 6px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-product-edit:hover {
    background: var(--color-warning);
    color: #fff;
}

.btn-product-delete {
    flex: 1;
    background: var(--color-danger-light);
    color: var(--color-danger);
    border: none;
    padding: 6px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-product-delete:hover {
    background: var(--color-danger);
    color: #fff;
}


.bundle-course-card:hover {
    background: #fafafa;
    transition: 0.2s;
}

.product-title-link {
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
}

.product-title-link:hover {
    color: var(--color-primary);
}

.admin-actions {
    border-top: 1px dashed var(--color-border-soft);
    padding-top: 10px;
}


/* ================================
   MALIYA COURSE CARD
================================= */
.maliya-course-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.25s ease;
}

.maliya-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.maliya-course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.maliya-course-card .maliya-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maliya-course-image img {
    position: absolute;
    inset: 0;
    /* shorthand top left right bottom */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.course-title-link {
    text-decoration: none;
    color: inherit;
    transition: color .2s ease;
}

.course-title-link:hover {
    color: var(--color-primary);
}

.maliya-course-placeholder {
    background: var(--color-primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 40px;
    color: var(--color-primary);
}

.badge-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: white;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 50px;
}


.maliya-course-body {
    padding: 16px;
    flex-grow: 1;
    /* ini penting */
}

.maliya-course-title {
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.maliya-meta {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.maliya-short-desc {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 10px;
}

.maliya-course-footer {
    padding: 18px;
    border-top: 1px solid var(--color-border-soft);
}

.maliya-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-primary-dark);
}

/* BUTTONS */

.btn-outline-maliya {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 10px;
}

.btn-outline-maliya:hover {
    background: var(--color-primary);
    color: white;
}

.btn-success-maliya {
    background: var(--color-primary);
    color: white;
    border-radius: 10px;
}

.btn-success-maliya:hover {
    background: var(--color-primary-dark);
}

.btn-warning-soft {
    background: var(--color-warning-light);
    color: var(--color-warning);
    border-radius: 8px;
}

.btn-danger-soft {
    background: var(--color-danger-light);
    color: var(--color-danger);
    border-radius: 8px;
}

/* BADGES */

.badge-soft-success {
    background: var(--color-success-light);
    color: var(--color-success);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
}

.badge-soft-warning {
    background: var(--color-warning-light);
    color: var(--color-warning);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
}

.badge-soft-info {
    background: var(--color-info-light);
    color: var(--color-info);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
}

.badge-soft-primary {
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
}

.badge-soft-secondary {
    background: #f1f5f9;
    color: #64748b;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
}


.carousel-item {
    padding: 10px 0;
    /* optional biar ada nafas */
}

.carousel-inner {
    overflow: visible;
    /* penting kalau ada shadow */
}



/* ========================================
   COURSE STAMP
======================================== */

.maliya-course-image {
    position: relative;
    overflow: hidden;
}

.course-stamp {
    position: absolute;
    top: 16px;
    left: -40px;
    transform: rotate(-45deg);
    width: 160px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 0;
    letter-spacing: 1px;
    z-index: 10;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* DRAFT */
.stamp-draft {
    background: #f59e0b;
    /* amber */
}

/* COMING SOON */
.stamp-coming {
    background: #6b7280;
    /* gray */
}

/* Optional: efek glow halus */
.course-stamp::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
}





/* ========================================
   CUSTOM CAROUSEL CONTROL (GRAMEDIA STYLE)
======================================== */

.custom-carousel-control {
    width: auto;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 5;
}

/* Hilangkan default icon bootstrap */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* Posisi kiri & kanan */
.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

/* Icon bulat */
.custom-carousel-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff !important;
    color: #333 !important;
    font-size: 24px !important;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    transition: all 0.25s ease;
    cursor: pointer;
}

/* Hover effect ala Gramedia */
.custom-carousel-icon:hover {
    background: #0d6efd;
    /* atau warna brand kamu */
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Supaya tidak ganggu card */
.custom-carousel-control {
    pointer-events: none;
}

.custom-carousel-icon {
    pointer-events: auto;
}

/* ================================
   FLOATING LABELS POSITIONING
================================= */

/* .maliya-course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
} */

/* CATEGORY - LEFT TOP */
.floating-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: var(--color-primary-dark);
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* LEVEL - RIGHT TOP */
.floating-level {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-primary);
    color: white;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
}

/* BEGINNER */
.level-beginner {
    background: var(--color-success-light);
    color: var(--color-success);
}

/* INTERMEDIATE */
.level-intermediate {
    background: var(--color-warning-light);
    color: var(--color-warning);
}

/* ADVANCED */
.level-advanced {
    background: var(--color-danger-light);
    color: var(--color-danger);
}

/* DEFAULT */
.level-default {
    background: var(--color-primary-light);
    color: var(--color-primary);
}


/* ORDER THUMB */
.order-thumb {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.order-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ini yang bikin auto-crop rapi */
}





/* ================================
   PREMIUM BOOK CARD - MALiYA STYLE
================================= */

.book-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.book-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.book-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.book-card:hover img {
    transform: scale(1.05);
}

.book-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.book-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-main);
    margin-bottom: 6px;
}

.book-author {
    color: var(--color-text-light);
    font-size: 12px;
    margin-bottom: 14px;
}

.book-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-price {
    font-weight: 700;
    color: var(--color-primary);
}


/* ================================
   BOOK DETAIL PAGE
================================= */

.book-detail-image {
    position: relative;
}

.badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.product-price-box {
    background: var(--color-primary-light);
    padding: 18px 22px;
    border-radius: 16px;
    display: inline-block;
}

.product-price-box .price {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.product-specs {
    border-top: 1px solid var(--color-border-soft);
    padding-top: 25px;
}

.product-description {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


/* ================================
   CAROUSEL INDICATOR - MALiYA STYLE
================================ */

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    width: 24px;
    border-radius: 10px;
    background-color: var(--color-primary);
}

.carousel-item img {
    height: 420px;
    object-fit: cover;
}


/* COURSE */

.course-preview img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.course-description {
    line-height: 1.8;
    color: #334155;
}

.course-curriculum .accordion-button {
    font-weight: 600;
}

/* VIDEO PREVIEW */

.preview-list {
    border-top: 1px solid #eee;
}

.preview-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.preview-item:hover {
    background: #f8fafc;
}


/* LITERASI PAGE */

.hero-literasi {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

/* CARD POST */
.card-post {
    position: relative;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.card-post:hover .card-img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

/* MINI CARD */
.card-mini {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.2s;
}

.card-mini:hover {
    transform: translateY(-4px);
}

.card-mini-img {
    height: 140px;
    background-size: cover;
    background-position: center;
}

.card-mini-body {
    padding: 12px;
}

/* POST SHOW */

.post-hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

/* CONTENT */
.post-content {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.post-content h1,
.post-content h2,
.post-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 18px;
}

.post-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

/* BLOCKQUOTE */
.post-content blockquote {
    border-left: 4px solid #ddd;
    padding-left: 16px;
    color: #666;
    font-style: italic;
}





/* =========================
   Contact Section - Minimal
========================= */
/* =========================
   Contact Dark Section
========================= */
.contact-dark {
    background: #0b1f1a;
    /* dark greenish */
    padding: 60px 0;
    color: #fff;
}

/* Item layout */
.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* Icon */
.contact-item i {
    font-size: 22px;
    color: #22c55e;
    /* accent hijau */
    margin-top: 5px;
}

/* Title */
.contact-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Text */
.contact-item p {
    font-size: 14px;
    margin: 0;
    color: #cbd5e1;
}

/* Social */
.social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a i {
    font-size: 16px;
}

/* Hover */
.social-links a:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
    transform: translateY(-3px);
}

/* Divider (opsional seperti gambar) */
.contact-dark .container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}





/* ========================================
   MALIYA SERVICE CARD
======================================== */

.maliya-service-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--color-border-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.maliya-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.maliya-service-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.maliya-service-card h5 {
    font-weight: 600;
    margin-top: 10px;
}

.maliya-service-card p {
    color: #6c757d;
    font-size: 14px;
    flex-grow: 1;
}

/* BUTTON */

.btn-maliya {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.btn-maliya:hover {
    background: #333;
}




/* QUOT */
.maliya-quote-section {
    width: 100%;
    /* background: linear-gradient(135deg, #0f172a, #1e293b); */
    /* dark elegan */
    color: #fff;
}

.maliya-quote-title {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.maliya-quote-text {
    max-width: 800px;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
}




/* =========================SERVICES=========== */

/* hero */

.services-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services-hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
}

.services-hero p {
    font-size: 1.05rem;
}

.hero-img {
    max-height: 380px;
    object-fit: contain;
}

/* decorative shape */
.hero-bg-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 193, 7, 0.1);
    /* warning color soft */
    border-radius: 50%;
    z-index: 0;
}

/* list */

.maliya-service-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;

    transition: all 0.35s ease;
    border: 1px solid #f1f1f1;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    overflow: hidden;
}

/* ICON */
.service-icon i {
    font-size: 28px;
    color: #ffc107;
    transition: all 0.3s ease;
}

/* CTA */
.service-link {
    text-decoration: none;
    font-weight: 500;
    color: #212529;
    transition: all 0.3s ease;
}

/* HOVER OVERLAY (gradient soft) */
.service-hover {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* HOVER EFFECT */
.maliya-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* ICON ANIMATION */
.maliya-service-card:hover .service-icon i {
    transform: scale(1.2) rotate(-5deg);
}

/* CTA ANIMATION */
.maliya-service-card:hover .service-link {
    color: #ffc107;
    transform: translateX(5px);
}

/* BACKGROUND GLOW */
.maliya-service-card:hover .service-hover {
    opacity: 1;
}

.service-wa {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25D366;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;

    transition: all 0.3s ease;
}

.service-wa:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* quote */
.services-quote {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

.quote-brand {
    font-size: 0.9rem;
    opacity: 0.7;
}



/* why */

.why-card {
    padding: 30px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f1f1f1;

    transition: all 0.3s ease;
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;

    font-size: 22px;
    color: #ffc107;

    transition: all 0.3s ease;
}

/* HOVER */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(-5deg);
    background: #ffc107;
    color: #fff;
}


/* process */
.services-process {
    background: #ffc107;
    position: relative;
}

.process-card {
    position: relative;
    padding: 30px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f1f1f1;

    transition: all 0.3s ease;
}

/* NUMBER CIRCLE */
.process-number {
    width: 50px;
    height: 50px;
    margin: auto;

    border-radius: 50%;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    font-size: 18px;

    transition: all 0.3s ease;
}

/* HOVER */
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.process-card:hover .process-number {
    background: #ffc107;
    color: #fff;
    transform: scale(1.1);
}

@media (min-width: 992px) {
    .services-process .col-lg-3 {
        position: relative;
    }

    .services-process .col-lg-3:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 40px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: #eee;
        z-index: 0;
    }
}

/* wave */

/* .services-wave {
    line-height: 0;
    margin-top: -1px;
}

.services-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    filter: drop-shadow(0 -3px 6px rgba(0, 0, 0, 0.06));
} */


/* WAVE */
.services-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    line-height: 0;
    margin-top: -1px;
}

.services-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.services-wave path {
    fill: #ffffff;
    /* warna background atas */
}

/* featured */

.services-featured {
    background: #fff;
}

/* IMAGE CARD */
.featured-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* FLOATING BADGE */
.featured-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;

    background: #ffc107;
    color: #000;

    padding: 8px 14px;
    border-radius: 50px;

    font-size: 12px;
    font-weight: 600;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* HOVER */
.featured-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}





/* cta */

.services-cta {
    background: #ffffff;
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 20px;
    padding: 60px 30px;
}

/* TEXT */
.cta-box p {
    max-width: 600px;
    margin: auto;
    opacity: 0.9;
}

/* BUTTON */
.cta-box .btn-warning {
    font-weight: 600;
}

.cta-box .btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* SOFT GLOW */
.cta-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, 0.2);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}