:root {
    --bantuin-green: #14a800;
    --bantuin-green-dark: #108a00;
    --bantuin-green-light: #e8f5e6;
    --bantuin-dark: #001e00;
    --bantuin-text: #001e00;
    --bantuin-muted: #5e6d55;
    --bantuin-border: #d5e0d5;
    --bantuin-bg: #f2f7f2;
    --bantuin-radius: 12px;
    --bantuin-radius-pill: 50px;
    --bantuin-shadow: 0 2px 8px rgba(0, 30, 0, 0.08);
    --bantuin-shadow-lg: 0 8px 24px rgba(0, 30, 0, 0.12);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--bantuin-text);
    background: #fff;
}

/* ── Navbar ── */
.site-navbar {
    background: #fff !important;
    border-bottom: 1px solid var(--bantuin-border);
    padding: 0.75rem 0;
}

.site-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--bantuin-dark) !important;
    letter-spacing: -0.02em;
}

.site-navbar .navbar-brand span {
    color: var(--bantuin-green);
}

.site-navbar .nav-link {
    color: var(--bantuin-text) !important;
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 0.85rem !important;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--bantuin-green) !important;
}

.site-navbar .nav-link-ai {
    color: var(--bantuin-green) !important;
    font-weight: 600;
}

.site-navbar .nav-link-ai i {
    margin-right: 0.25rem;
}

.btn-bantuin {
    background: var(--bantuin-green);
    border-color: var(--bantuin-green);
    color: #fff;
    font-weight: 600;
    border-radius: var(--bantuin-radius-pill);
    padding: 0.45rem 1.25rem;
}

.btn-bantuin:hover {
    background: var(--bantuin-green-dark);
    border-color: var(--bantuin-green-dark);
    color: #fff;
}

.btn-bantuin-outline {
    background: transparent;
    border: 1px solid var(--bantuin-text);
    color: var(--bantuin-text);
    font-weight: 600;
    border-radius: var(--bantuin-radius-pill);
    padding: 0.45rem 1.25rem;
}

.btn-bantuin-outline:hover {
    background: var(--bantuin-bg);
    border-color: var(--bantuin-text);
    color: var(--bantuin-text);
}

.btn-bantuin-ghost {
    background: transparent;
    border: none;
    color: var(--bantuin-text);
    font-weight: 600;
    padding: 0.45rem 1rem;
}

.btn-bantuin-ghost:hover {
    color: var(--bantuin-green);
}

/* ── Hero ── */
.hero-pro {
    position: relative;
    border-radius: var(--bantuin-radius);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    margin: 1.5rem 0 0;
}

.hero-pro-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-pro-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-pro-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pro-carousel .carousel-inner,
.hero-pro-carousel .carousel-item {
    height: 100%;
}

.hero-pro-carousel .carousel-item .hero-pro-bg {
    position: relative;
    height: 100%;
    min-height: 480px;
}

.hero-pro-indicators {
    margin-bottom: 1rem;
    z-index: 3;
}

.hero-pro-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.45);
}

.hero-pro-indicators .active {
    background-color: #fff;
}

.hero-pro-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 30, 0, 0.82) 0%, rgba(0, 30, 0, 0.65) 100%);
}

.hero-pro-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    max-width: 720px;
}

.hero-pro h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-pro .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-actions .btn {
    border-radius: var(--bantuin-radius-pill);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
}

.hero-actions .btn-hero-primary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    backdrop-filter: blur(4px);
}

.hero-actions .btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.hero-search-wrap {
    background: #fff;
    border-radius: var(--bantuin-radius-pill);
    padding: 0.35rem;
    box-shadow: var(--bantuin-shadow-lg);
    max-width: 600px;
    overflow: visible;
    position: relative;
    z-index: 10;
}

.hero-search-wrap .form-select {
    border: none;
    border-left: 1px solid var(--bantuin-border);
    border-radius: 0;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--bantuin-text);
    padding: 0.75rem 2rem 0.75rem 1rem;
    background-color: #fff;
    cursor: pointer;
    min-width: 160px;
}

.hero-search-wrap .form-select:focus {
    box-shadow: none;
    border-color: var(--bantuin-border);
}

.hero-search-wrap .form-control {
    border: none;
    box-shadow: none;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background: transparent;
}

.hero-search-wrap .form-control:focus {
    box-shadow: none;
}

.hero-search-wrap .btn-search {
    background: var(--bantuin-dark);
    color: #fff;
    border: none;
    border-radius: var(--bantuin-radius-pill);
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    white-space: nowrap;
}

.hero-search-wrap .btn-search:hover {
    background: #003300;
    color: #fff;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--bantuin-radius-pill);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ── Trust bar ── */
.trust-bar {
    padding: 2.5rem 0;
    text-align: center;
}

.trust-bar-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bantuin-muted);
    margin-bottom: 1.25rem;
}

.trust-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.trust-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bantuin-dark);
}

.trust-stat span {
    font-size: 0.85rem;
    color: var(--bantuin-muted);
}

/* ── Section headers ── */
.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

.section-header p {
    color: var(--bantuin-muted);
    margin-bottom: 0;
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-header .section-link {
    position: relative;
    z-index: 3;
}

.section-link {
    color: var(--bantuin-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.925rem;
}

.section-link:hover {
    color: var(--bantuin-green-dark);
    text-decoration: underline;
}

/* ── Category cards (Upwork style) ── */
.category-card-pro {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--bantuin-border);
    border-radius: var(--bantuin-radius);
    text-decoration: none;
    color: var(--bantuin-text);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    height: 100%;
}

.category-card-pro:hover {
    box-shadow: var(--bantuin-shadow);
    border-color: var(--bantuin-green);
    transform: translateY(-2px);
    color: var(--bantuin-text);
}

.category-card-pro .cat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bantuin-green);
    font-size: 1.5rem;
}

.category-card-pro .cat-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.category-card-pro .cat-count {
    font-size: 0.8rem;
    color: var(--bantuin-muted);
    margin: 0;
}

/* ── Service cards ── */
.service-card-pro {
    position: relative;
    background: #fff;
    border: 1px solid var(--bantuin-border);
    border-radius: var(--bantuin-radius);
    padding: 1.25rem;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card-pro:hover {
    box-shadow: var(--bantuin-shadow-lg);
    transform: translateY(-3px);
}

.service-card-pro .badge-cat {
    background: var(--bantuin-green-light);
    color: var(--bantuin-green-dark);
    font-weight: 500;
    font-size: 0.75rem;
    border-radius: var(--bantuin-radius-pill);
    padding: 0.3rem 0.75rem;
    text-decoration: none;
}

.service-card-pro .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.75rem 0 0.5rem;
}

.service-card-pro .card-title a {
    color: var(--bantuin-text);
    text-decoration: none;
}

.service-card-pro .card-title a:hover {
    color: var(--bantuin-green);
}

.service-card-pro .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bantuin-green-dark);
}

/* ── Provider cards ── */
.provider-card-pro {
    background: #fff;
    border: 1px solid var(--bantuin-border);
    border-radius: var(--bantuin-radius);
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.provider-card-pro:hover {
    box-shadow: var(--bantuin-shadow-lg);
    transform: translateY(-3px);
    color: inherit;
}

.provider-card-pro .avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
}

.provider-card-pro .avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bantuin-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--bantuin-muted);
    font-size: 1.75rem;
}

/* ── Provider profile page (full-width proportional photo) ── */
.provider-profile-photo-wrap {
    width: 100%;
    background: var(--bantuin-bg);
    line-height: 0;
}

.provider-profile-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.provider-profile-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--bantuin-bg);
}

/* ── Testimonials ── */
.testimonials-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 200px;
    background: var(--bantuin-green);
    opacity: 0.08;
    transform: rotate(-2deg) translateY(-50%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--bantuin-border);
    border-radius: var(--bantuin-radius);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--bantuin-shadow);
}

.testimonial-card blockquote {
    font-size: 0.925rem;
    line-height: 1.6;
    color: var(--bantuin-text);
    flex-grow: 1;
    margin-bottom: 1.25rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author .name {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.testimonial-author .role {
    font-size: 0.8rem;
    color: var(--bantuin-muted);
    margin: 0;
}

/* ── CTA banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--bantuin-green) 0%, #1bc011 50%, #a8e063 100%);
    border-radius: var(--bantuin-radius);
    padding: 3.5rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-banner .btn {
    background: #fff;
    color: var(--bantuin-dark);
    font-weight: 700;
    border-radius: var(--bantuin-radius-pill);
    padding: 0.75rem 2rem;
    border: none;
}

.cta-banner .btn:hover {
    background: #f0f0f0;
    color: var(--bantuin-dark);
}

/* ── Footer ── */
.site-footer {
    background: var(--bantuin-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.site-footer h6 {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    padding: 0.2rem 0;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2rem;
    padding-top: 1.25rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer-bottom a {
    display: inline;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer-bottom a:hover {
    color: #fff;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* ── Inner pages hero tweak ── */
.page-hero {
    background: var(--bantuin-bg);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--bantuin-border);
}

.page-hero h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ── Search form (inner pages) ── */
.service-search-form .form-control:focus,
.service-search-form .form-select:focus {
    border-color: var(--bantuin-green);
    box-shadow: 0 0 0 0.2rem rgba(20, 168, 0, 0.15);
}

.service-search-form .btn-primary {
    background: var(--bantuin-green);
    border-color: var(--bantuin-green);
}

.service-search-form .btn-primary:hover {
    background: var(--bantuin-green-dark);
    border-color: var(--bantuin-green-dark);
}

@media (max-width: 767.98px) {
    .hero-pro {
        min-height: auto;
        margin: 0.75rem 0 0;
    }

    .hero-pro-content {
        padding: 2rem 1.25rem;
    }

    .hero-search-wrap {
        border-radius: var(--bantuin-radius);
    }

    .hero-search-wrap .btn-search {
        width: 100%;
        margin-top: 0.5rem;
        border-radius: var(--bantuin-radius);
    }
}

/* ── Specialist provider card (Cari Jasa) ── */
.specialist-provider-card {
    background: #fff;
    border: 2px solid var(--bantuin-green);
    border-radius: var(--bantuin-radius);
    box-shadow: 0 4px 14px rgba(20, 168, 0, 0.12);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.specialist-provider-card:hover {
    box-shadow: 0 6px 20px rgba(20, 168, 0, 0.18);
}

.specialist-provider-card__body {
    padding: 1rem;
}

.specialist-provider-card__avatar img,
.specialist-provider-card__avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.specialist-provider-card__avatar-placeholder {
    background: var(--bantuin-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bantuin-green);
    font-size: 1.35rem;
    border: 2px solid rgba(20, 168, 0, 0.2);
}

.specialist-provider-card__avatar img {
    border: 2px solid rgba(20, 168, 0, 0.25);
}

.specialist-provider-card__rating {
    color: var(--bantuin-text);
    font-weight: 600;
}

.specialist-provider-card__rating .bi-star-fill {
    color: #f59e0b;
}

.specialist-provider-card__verified {
    background: var(--bantuin-green-light);
    color: var(--bantuin-green-dark);
    border: 1px solid rgba(20, 168, 0, 0.25);
    font-weight: 600;
    font-size: 0.7rem;
}

.specialist-provider-card__distance {
    background: #fff;
    color: var(--bantuin-green-dark);
    border: 1px solid rgba(20, 168, 0, 0.3);
    font-weight: 600;
    font-size: 0.7rem;
    white-space: nowrap;
}

.specialist-provider-card__price {
    color: var(--bantuin-green-dark);
}

.service-card-pro--clickable {
    color: var(--bantuin-text);
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.service-card-pro--clickable:hover {
    box-shadow: var(--bantuin-shadow-lg);
    transform: translateY(-3px);
    border-color: var(--bantuin-green);
    color: var(--bantuin-text);
}

.service-card-pro--clickable .card-title {
    color: var(--bantuin-text);
}

.service-card-pro--clickable .price {
    color: var(--bantuin-green-dark);
}

/* ── Auth pages (login / register) ── */
.auth-page {
    background: #fff;
    min-height: 100vh;
}

.auth-split {
    display: flex;
    min-height: 100vh;
}

.auth-panel-brand {
    flex: 0 0 50%;
    max-width: 50%;
    background: linear-gradient(145deg, var(--bantuin-green-dark) 0%, var(--bantuin-green) 55%, #1fc011 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.auth-panel-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.auth-panel-brand-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 3rem 3.5rem;
}

.auth-illustration {
    position: relative;
    flex: 1;
    min-height: 320px;
    margin-top: 1rem;
}

.auth-hero-figure {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.auth-hero-icon {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.auth-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--bantuin-text);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    box-shadow: 0 12px 32px rgba(0, 30, 0, 0.15);
    min-width: 190px;
}

.auth-float-card i {
    font-size: 1.35rem;
    color: var(--bantuin-green);
    flex-shrink: 0;
}

.auth-float-card strong {
    display: block;
    font-size: 0.85rem;
    line-height: 1.2;
}

.auth-float-card span {
    display: block;
    font-size: 0.72rem;
    color: var(--bantuin-muted);
}

.auth-float-card-1 {
    top: 8%;
    left: 4%;
    animation: authFloat 6s ease-in-out infinite;
}

.auth-float-card-2 {
    top: 18%;
    right: 2%;
    animation: authFloat 7s ease-in-out infinite 0.5s;
}

.auth-float-card-3 {
    bottom: 18%;
    left: 8%;
    animation: authFloat 5.5s ease-in-out infinite 1s;
}

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

.auth-panel-copy h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.auth-panel-copy p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.92;
    max-width: 420px;
}

.auth-panel-form {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: #fff;
}

.auth-form-wrap {
    width: 100%;
    max-width: 420px;
}

.auth-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bantuin-dark);
    letter-spacing: -0.02em;
}

.auth-logo-accent {
    color: var(--bantuin-green);
}

.auth-form-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--bantuin-dark);
    margin-bottom: 0.35rem;
}

.auth-form-subtitle {
    color: var(--bantuin-muted);
    font-size: 0.925rem;
    margin-bottom: 1.75rem;
}

.auth-form .auth-field {
    margin-bottom: 1.15rem;
}

.auth-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bantuin-text);
    margin-bottom: 0.4rem;
}

.auth-input {
    width: 100%;
    border: 1.5px solid var(--bantuin-border);
    border-radius: 10px;
    padding: 0.72rem 0.95rem;
    font-size: 0.925rem;
    color: var(--bantuin-text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-input:focus {
    outline: none;
    border-color: var(--bantuin-green);
    box-shadow: 0 0 0 3px rgba(20, 168, 0, 0.12);
}

.auth-input::placeholder {
    color: #9aa89a;
}

.auth-password-wrap {
    position: relative;
}

.auth-password-wrap .auth-input {
    padding-right: 2.75rem;
}

.auth-password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--bantuin-muted);
    padding: 0;
    line-height: 1;
    cursor: pointer;
}

.auth-password-toggle:hover {
    color: var(--bantuin-green);
}

.auth-check {
    border-color: var(--bantuin-border);
}

.auth-check:checked {
    background-color: var(--bantuin-green);
    border-color: var(--bantuin-green);
}

.auth-check-label {
    font-size: 0.875rem;
    color: var(--bantuin-muted);
}

.auth-role-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.auth-role-option {
    margin: 0;
    cursor: pointer;
}

.auth-role-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.auth-role-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    padding: 1rem 0.75rem;
    border: 1.5px solid var(--bantuin-border);
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.auth-role-card i {
    font-size: 1.35rem;
    color: var(--bantuin-green);
}

.auth-role-card strong {
    font-size: 0.875rem;
    color: var(--bantuin-text);
}

.auth-role-card small {
    font-size: 0.75rem;
    color: var(--bantuin-muted);
}

.auth-role-option input:checked + .auth-role-card {
    border-color: var(--bantuin-green);
    background: var(--bantuin-green-light);
    box-shadow: 0 0 0 3px rgba(20, 168, 0, 0.1);
}

.auth-btn-primary {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 0.82rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: var(--bantuin-green);
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.15s;
}

.auth-btn-primary:hover {
    background: var(--bantuin-green-dark);
}

.auth-btn-primary:active {
    transform: scale(0.99);
}

.auth-form-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-form-footer p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--bantuin-muted);
}

.auth-form-footer a {
    color: var(--bantuin-green);
    font-weight: 600;
    text-decoration: none;
}

.auth-form-footer a:hover {
    color: var(--bantuin-green-dark);
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .auth-split {
        flex-direction: column;
    }

    .auth-panel-brand,
    .auth-panel-form {
        flex: none;
        max-width: 100%;
    }

    .auth-panel-brand-inner {
        padding: 2rem 1.5rem;
    }

    .auth-illustration {
        min-height: 200px;
        margin-top: 0;
    }

    .auth-float-card {
        min-width: 160px;
        padding: 0.65rem 0.8rem;
    }

    .auth-float-card-1 { top: 0; left: 0; }
    .auth-float-card-2 { top: 0; right: 0; }
    .auth-float-card-3 { display: none; }

    .auth-hero-figure {
        width: 120px;
        height: 120px;
    }

    .auth-hero-icon {
        font-size: 3rem;
    }

    .auth-panel-copy h2 {
        font-size: 1.35rem;
    }

    .auth-panel-form {
        padding: 2rem 1.25rem 2.5rem;
    }
}

/* ── Homepage ad banner ── */
.homepage-ad-section {
    padding: 0 0 2.5rem;
    background: var(--bantuin-bg);
}

.homepage-ad-link {
    display: block;
    text-decoration: none;
}

.homepage-ad-banner,
.homepage-ad-banner-preview {
    display: block;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: var(--bantuin-radius);
    border: 1px solid var(--bantuin-border);
    box-shadow: var(--bantuin-shadow);
    transition: box-shadow 0.2s, transform 0.2s;
}

.homepage-ad-link:hover .homepage-ad-banner {
    box-shadow: var(--bantuin-shadow-lg);
    transform: translateY(-2px);
}

.homepage-ad-banner-preview {
    max-height: 140px;
}

/* ── Homepage promo section ── */
.homepage-promo-section {
    padding: 0 0 3rem;
    background: #fff;
}

.homepage-promo-card {
    background: linear-gradient(135deg, #f8fbf8 0%, #eef6ee 100%);
    border: 1px solid var(--bantuin-border);
    border-radius: calc(var(--bantuin-radius) + 4px);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--bantuin-shadow);
}

.homepage-promo-copy {
    height: 100%;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homepage-promo-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--bantuin-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.homepage-promo-lead {
    color: var(--bantuin-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.homepage-promo-point {
    margin-bottom: 0.45rem;
    font-weight: 500;
    color: var(--bantuin-text);
}

.homepage-promo-closing {
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--bantuin-text);
    font-weight: 600;
}

.homepage-promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.homepage-promo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f9f4 0%, #eaf3ea 100%);
}

.homepage-promo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
}

.homepage-promo-preview {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    border-radius: var(--bantuin-radius);
}

@media (min-width: 992px) {
    .homepage-promo-visual {
        aspect-ratio: 1200 / 1040;
        min-height: unset;
    }
}

@media (max-width: 991.98px) {
    .homepage-promo-copy {
        padding: 1.5rem 1.25rem;
    }

    .homepage-promo-visual {
        aspect-ratio: auto;
    }

    .homepage-promo-image {
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .homepage-ad-section {
        padding-bottom: 2rem;
    }

    .homepage-ad-banner {
        max-height: 160px;
    }
}

/* ── Infoku articles ── */
.infoku-card {
    background: #fff;
    border: 1px solid var(--bantuin-border);
    border-radius: calc(var(--bantuin-radius) + 2px);
    overflow: hidden;
    box-shadow: var(--bantuin-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.infoku-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bantuin-shadow-lg);
}

.infoku-card-image-wrap {
    display: block;
}

.infoku-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.infoku-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f9f4 0%, #eaf3ea 100%);
    color: var(--bantuin-muted);
    font-size: 2rem;
}

.infoku-card-body {
    padding: 1.25rem;
}

.infoku-card-meta {
    font-size: 0.85rem;
    color: var(--bantuin-muted);
    margin-bottom: 0.5rem;
}

.infoku-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.infoku-card-title a {
    color: var(--bantuin-dark);
    text-decoration: none;
}

.infoku-card-title a:hover {
    color: var(--bantuin-green);
}

.infoku-card-excerpt {
    color: var(--bantuin-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.infoku-card-link {
    color: var(--bantuin-green);
    font-weight: 600;
    text-decoration: none;
}

.infoku-article-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.infoku-article-meta,
.infoku-article-lead {
    color: var(--bantuin-muted);
}

.infoku-article-lead {
    font-size: 1.1rem;
}

.infoku-article-featured img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
    border-radius: var(--bantuin-radius);
}

.infoku-article-content {
    color: var(--bantuin-text);
    line-height: 1.8;
    font-size: 1.02rem;
}

.infoku-article-content h2,
.infoku-article-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.infoku-article-content p,
.infoku-article-content ul,
.infoku-article-content ol {
    margin-bottom: 1rem;
}

.infoku-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--bantuin-radius);
    margin: 1rem auto;
    display: block;
}

.infoku-article-content img[style*="float: left"],
.infoku-article-content img[style*="float:left"] {
    display: inline;
    margin: 0 1rem 1rem 0;
}

.infoku-article-content img[style*="float: right"],
.infoku-article-content img[style*="float:right"] {
    display: inline;
    margin: 0 0 1rem 1rem;
}

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

.infoku-article-content blockquote {
    border-left: 4px solid var(--bantuin-green);
    padding-left: 1rem;
    color: var(--bantuin-muted);
    margin: 1.5rem 0;
}

.infoku-recent-link {
    display: block;
    padding: 0.75rem;
    border: 1px solid var(--bantuin-border);
    border-radius: var(--bantuin-radius);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.infoku-recent-link:hover {
    border-color: var(--bantuin-green);
    color: var(--bantuin-green);
}

.ck-editor__editable {
    min-height: 320px;
}

.promoku-card {
    background: #fff;
    border: 1px solid var(--bantuin-border);
    border-radius: calc(var(--bantuin-radius) + 2px);
    overflow: hidden;
    box-shadow: var(--bantuin-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promoku-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bantuin-shadow-lg);
}

.promoku-card-banner-wrap {
    display: block;
    position: relative;
}

.promoku-card-banner {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.promoku-card-banner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff8e8 0%, #fff3d6 100%);
    color: #b8860b;
    font-size: 2rem;
}

.promoku-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--bantuin-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.promoku-card-body {
    padding: 1.25rem;
}

.promoku-card-meta {
    font-size: 0.85rem;
    color: var(--bantuin-muted);
    margin-bottom: 0.5rem;
}

.promoku-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.promoku-card-title a {
    color: var(--bantuin-dark);
    text-decoration: none;
}

.promoku-card-title a:hover {
    color: var(--bantuin-green);
}

.promoku-card-excerpt {
    color: var(--bantuin-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.promoku-card-link {
    color: var(--bantuin-green);
    font-weight: 600;
    text-decoration: none;
}

.promoku-detail-banner img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
    border-radius: var(--bantuin-radius);
}

.promoku-detail-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.promoku-detail-meta,
.promoku-detail-lead {
    color: var(--bantuin-muted);
}

.promoku-detail-lead {
    font-size: 1.1rem;
}

/* ── Testiku public pages ── */
.testiku-card-quote {
    font-size: 0.925rem;
    line-height: 1.6;
    color: var(--bantuin-text);
    flex-grow: 1;
    margin-bottom: 1.25rem;
    border: none;
    padding: 0;
}

.testiku-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bantuin-green-light, #e8f5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bantuin-green);
    flex-shrink: 0;
}

.testiku-avatar-placeholder-lg {
    width: 96px;
    height: 96px;
    font-size: 2rem;
}

.testiku-name-link {
    color: inherit;
    text-decoration: none;
}

.testiku-name-link:hover {
    color: var(--bantuin-green);
}

.testiku-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bantuin-green);
    text-decoration: none;
}

.testiku-card-link:hover {
    text-decoration: underline;
}

.testiku-detail-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testiku-detail-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testiku-detail-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testiku-detail-role {
    color: var(--bantuin-muted);
    margin-bottom: 0.35rem;
}

.testiku-detail-meta {
    font-size: 0.875rem;
    color: var(--bantuin-muted);
}

.testiku-detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--bantuin-text);
}

.testiku-detail-content blockquote {
    border-left: 4px solid var(--bantuin-green);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--bantuin-muted);
}

.testiku-recent-link {
    display: block;
    padding: 0.75rem;
    border: 1px solid var(--bantuin-border);
    border-radius: var(--bantuin-radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.testiku-recent-link:hover {
    border-color: var(--bantuin-green);
    box-shadow: var(--bantuin-shadow);
    color: inherit;
}

.cke_editable {
    min-height: 320px;
}

.cke_chrome {
    border-radius: var(--bantuin-radius) !important;
}

.cke_top {
    border-radius: var(--bantuin-radius) var(--bantuin-radius) 0 0;
}

.cke_bottom {
    border-radius: 0 0 var(--bantuin-radius) var(--bantuin-radius);
}

