:root {
            --ma-green: #1f6f78;
            --ma-green-dark: #173e47;
            --ma-gold: #c69b5c;
            --ma-light: #eef7f7;
            --ma-cream: #f7f3eb;
            --ma-surface: #f8fbfc;
            --ma-text-soft: #64748b;
            --ma-border: rgba(31, 111, 120, 0.12);
        }
        
body {
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(198, 155, 92, 0.08), transparent 25%),
        linear-gradient(180deg, #f8fbfc 0%, #f2f7f8 100%);
    color: #1f2937;
}

/* Custom Area Wrapper */
.area-wrapper { position: relative; padding: 56px 0; width: 100%; }

.area-wrapper > .container,
.navbar .container {
    max-width: 1340px;
}

/* Navbar & Offcanvas Mobile */
.navbar {
    max-width: 1340px;
    margin: 14px auto 0;
    padding: 0.35rem 0;
    border-radius: 28px;
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 252, 0.92)) !important;
    border: 1px solid rgba(31, 111, 120, 0.12);
    box-shadow: 0 18px 44px rgba(23, 62, 71, 0.08);
}
.navbar .container {
    padding-inline: 1.35rem;
}
.navbar-brand {
    font-size: 1.2rem;
    color: #1d6771 !important;
    min-width: 250px;
}
.navbar .nav-link {
    color: #4c5f67 !important;
    font-weight: 700;
    padding: 0.9rem 0.85rem !important;
    position: relative;
    transition: color 0.28s ease;
}
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.45rem;
    height: 2px;
    background: linear-gradient(90deg, var(--ma-green), var(--ma-gold));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
    border-radius: 999px;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--ma-green) !important;
}
.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after {
    transform: scaleX(1);
}
.navbar .nav-link i,
.btn-back-pmb i,
.navbar .btn-outline-success i {
    color: var(--ma-green);
    opacity: 0.95;
}
.navbar .btn-outline-success {
    border-width: 1.5px;
    padding-inline: 1.7rem !important;
    box-shadow: 0 10px 26px rgba(31, 111, 120, 0.08);
}
.navbar .navbar-nav {
    align-items: center;
    gap: 0.28rem;
}
.navbar .btn-outline-success:hover {
    background: var(--ma-green);
    border-color: var(--ma-green);
    color: #fff;
}
@media (max-width: 991px) {
	.navbar {
        margin: 0;
        border-radius: 0 0 24px 24px;
        max-width: 100%;
        box-shadow: 0 12px 28px rgba(23, 62, 71, 0.08);
    }
    .navbar .container {
        padding-inline: 1rem;
    }
	.offcanvas { background-color: var(--ma-green); color: white; width: 280px !important; }
	.offcanvas .nav-link { color: rgba(255,255,255,0.8) !important; font-size: 1.1rem; padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
	.offcanvas .nav-link:hover { color: var(--ma-gold) !important; background: rgba(0,0,0,0.1); }
	.offcanvas .btn-close { filter: invert(1); opacity: 1; }
}

/* Hero Slider Customization */
.hero-shell {
    padding: 26px 0 0;
}
.hero-slider-wrap {
    position: relative;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 14px;
}
.hero-slider-frame {
    overflow: hidden;
    border-radius: 36px;
    box-shadow: 0 28px 70px rgba(23, 62, 71, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.carousel-item {
    height: 640px;
    min-height: 520px;
    background-color: var(--ma-green);
    position: relative;
}
.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.3;
    transform: scale(1.03);
}
.carousel-caption {
    inset: 0;
    bottom: auto;
    z-index: 2;
    text-align: left;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 4rem 4.1rem 4.8rem;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 22%, rgba(198, 155, 92, 0.22), transparent 18%),
        linear-gradient(110deg, rgba(14, 33, 41, 0.92) 0%, rgba(23, 62, 71, 0.84) 48%, rgba(31, 111, 120, 0.7) 100%);
}
.hero-content {
    max-width: 820px;
    margin-right: auto;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    margin-bottom: 1.35rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    color: #dce8d6;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.hero-content h1 {
    font-size: clamp(2.75rem, 5vw, 5rem);
    line-height: 1.04;
    margin-bottom: 1.25rem;
}
.hero-content .lead {
    max-width: 720px;
    font-size: 1.13rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.hero-primary-btn {
    background: linear-gradient(135deg, #ffd247 0%, #e3af19 100%);
    border: none;
    color: #1d1d12;
    box-shadow: 0 20px 40px rgba(227, 175, 25, 0.26);
}
.hero-primary-btn:hover {
    color: #1d1d12;
    transform: translateY(-2px);
}
.hero-secondary-link {
    color: #f4efe0;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.hero-secondary-link:hover {
    color: #fff5c9;
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 2.2rem;
}
.hero-metric {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
}
.hero-metric strong {
    display: block;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}
.hero-metric span {
    color: rgba(245, 249, 243, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.carousel-indicators {
    bottom: 24px;
    z-index: 4;
}
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background-color: rgba(255,255,255,0.4);
}
.carousel-indicators .active {
    background-color: #ffd247;
}
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    background-size: 42% 42%;
}

/* Jalur Card Modern (6 Jalur) */
.jalur-card {
	border: none;
	border-radius: 20px;
	background: #fff;
	padding: 30px;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	border-top: 5px solid var(--ma-gold);
	height: 100%;
}
.jalur-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(23,62,71,0.1); background-color: var(--ma-light); }
.jalur-icon { width: 60px; height: 60px; background: var(--ma-green); color: white; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }

/* Prosedur Box */
.step-box { background: #fff; border-left: 5px solid var(--ma-gold); border-radius: 10px; padding: 20px; height: 100%; box-shadow: 0 4px 10px rgba(0,0,0,0.03); transition: 0.3s; }
.step-box:hover { background: var(--ma-green); color: white; }
.step-box:hover .text-muted { color: rgba(255,255,255,0.7) !important; }

.text-gradient { background: linear-gradient(to right, #fff, var(--ma-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.floating-wa { position: fixed; bottom: 25px; right: 25px; z-index: 1050; transition: 0.3s; }
.floating-wa:hover { transform: scale(1.1) rotate(5deg); }

.icon-identitas {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.identity-strip {
    position: relative;
    z-index: 10;
    max-width: 1340px;
    margin: -54px auto 0;
    padding: 0 16px;
}
.identity-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(27, 94, 32, 0.1);
    border-radius: 30px;
    padding: 0.95rem 1rem;
    box-shadow: 0 22px 54px rgba(23, 62, 71, 0.08);
    backdrop-filter: blur(14px);
}
.identity-item {
    height: 100%;
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-right: 1px solid rgba(27, 94, 32, 0.08);
}
.identity-item:last-child {
    border-right: 0;
}
.identity-item small {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #859083;
    margin-bottom: 0.3rem;
}
.identity-item span {
    display: block;
    color: #1b2a1d;
    font-size: 1.16rem;
    font-weight: 800;
}
.browser-strip {
    max-width: 1340px;
    margin: 1.15rem auto 0;
    padding: 0 16px;
}
.browser-panel {
    border-radius: 28px;
    padding: 0.95rem 1rem;
    background:
        radial-gradient(circle at left center, rgba(198,160,40,0.18), transparent 14%),
        linear-gradient(135deg, #173e47 0%, #1f6f78 100%);
    box-shadow: 0 18px 44px rgba(23, 62, 71, 0.16);
}
.browser-item {
    height: 100%;
    min-height: 102px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.browser-item:last-child {
    border-right: 0;
}
.browser-item small {
    display: block;
    color: rgba(255,255,255,0.72) !important;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.3rem;
}
.browser-item span {
    display: block;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
}

/* Styling khusus background warna lembut */
.bg-success-subtle { background-color: #e8f6f7 !important; }
.bg-warning-subtle { background-color: #fff8e1 !important; }
.bg-primary-subtle { background-color: #e3f2fd !important; }
.bg-info-subtle { background-color: #e0f7fa !important; }

@media (max-width: 767px) {
	.border-end-mobile { border-right: 1px solid #dee2e6; }
	.identity-strip { margin-top: -34px; }
    .identity-panel,
    .browser-panel { border-radius: 22px; }
    .identity-item,
    .browser-item {
        min-height: 92px;
        padding: 0.95rem 0.9rem;
    }
    .identity-item small,
    .browser-item small {
        font-size: 0.66rem;
    }
    .identity-item span,
    .browser-item span {
        font-size: 1rem;
    }
}
	
/* Tambahan Style untuk Sambutan agar lebih manis */
.bg-success-subtle { background-color: #e8f6f7; }
.bg-warning-subtle { background-color: #fff8e1; }

@media (max-width: 991px) {
	#sambutan .ps-4 { padding-left: 0 !important; padding-right: 20px; }
	.area-wrapper { padding: 42px 0; }
	h2 { font-size: 1.8rem !important; }
    .hero-slider-wrap { padding: 0; }
    .hero-slider-frame { border-radius: 0 0 28px 28px; }
    .carousel-item {
        min-height: 620px;
        height: auto;
    }
    .carousel-caption {
        padding: 3.1rem 1.4rem 4.2rem;
        align-items: flex-end;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .carousel-caption {
        padding: 3rem 1.25rem 4rem;
    }
    .hero-content .lead {
        font-size: 1rem;
        line-height: 1.7;
        margin-inline: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .identity-item,
    .browser-item {
        border-right: 0;
    }
    .navbar .navbar-nav {
        align-items: stretch;
        gap: 0;
    }
}

.card-jalur:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
    }
    .fw-800 { font-weight: 800; }

 /* Styling Lingkaran Angka */
    .step-number-circle {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--ma-green) 0%, #2c8f99 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2rem;
        box-shadow: 0 8px 18px rgba(31, 111, 120, 0.18);
        border: 3px solid #e9ecef; /* Border luar tipis agar lebih elegan */
    }

/* Opsional: Memberi efek sedikit membesar pada card saat hover */
.card-custom {
	transition: transform 0.3s ease;
	border-radius: 24px; /* Biar sudutnya lebih halus */
    padding: 2rem 1.4rem !important;
    box-shadow: 0 16px 34px rgba(23, 62, 71, 0.08) !important;
}

.card-custom:hover {
	transform: translateY(-5px);
    box-shadow: 0 22px 42px rgba(23, 62, 71, 0.12) !important;
}

#prosedur .card-custom:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(23, 62, 71, 0.14) !important;
    border-color: rgba(31, 111, 120, 0.18) !important;
}

 .hover-opacity:hover {
	opacity: 1 !important;
	color: var(--ma-gold) !important;
	padding-left: 5px;
	transition: all 0.3s ease;
}

footer ul li a {
	transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
	background-color: var(--ma-gold);
	border-color: var(--ma-gold);
	color: #000;
}

.chat-popup {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 280px;
	z-index: 9999;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid rgba(31, 111, 120, 0.14);
    box-shadow: 0 22px 48px rgba(23, 62, 71, 0.16);
	animation: slideIn 0.3s ease-out;
}

/* Lingkaran Inisial CS */
.icon-circle {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 0.85rem;
	flex-shrink: 0;
}

/* Link Admin Item */
.admin-item {
	text-decoration: none;
	padding: 8px;
	border-radius: 10px;
	transition: background 0.2s;
}

.admin-item:hover {
	background-color: #f3f8f8;
}

.status-online {
	font-size: 11px;
	color: var(--ma-green);
}

.status-online::before {
	content: "●";
	margin-right: 4px;
}

@keyframes slideIn {
	from { transform: translateY(100px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

/* Menghilangkan scrollbar pada body saat aktif (opsional) */
.d-none { display: none !important; }
