/*
    BANA SENTRA
    "Not Leather but Better"
    Copyright 2026
*/

:root {
    /* Primary Brand Colors */
    --gold: #FFB22C;
    --deep-green: #854836;

    /* Neutral & Background Colors */
    --cream-light: #F7F7F7;
    --sand: #2A2A2A;
    --dark-charcoal: #000000;

    /* Semantic Colors */
    --success: #4A5D4E;
    --warning: #FFB22C;
    --error: #B1564A;

    /* Typography */
    --text-primary: var(--dark-charcoal);
    --text-secondary: #F7F7F7;
    --text-muted: #AAAAAA;

    /* Spacing & Borders */
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 40px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 25px 40px rgba(0, 0, 0, 0.6);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--dark-charcoal);
    /* Background utama hitam */
    color: var(--text-secondary);
    /* Teks utama putih keabuan */
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
.brand-heading {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Background Utilities */
.bg-gold {
    background-color: var(--gold);
}

.bg-deep-green {
    background-color: var(--deep-green);
}

.bg-cream {
    background-color: var(--cream-light);
}

.bg-sand {
    background-color: var(--sand);
}

.bg-white-soft {
    background-color: #1A1A1A;
    /* Soft black, bukan putih lagi */
}

/* Text Utilities */
.text-gold {
    color: var(--gold);
}

.text-deep-green {
    color: var(--deep-green);
}

.text-cream {
    color: var(--cream-light);
}

.text-sand {
    color: var(--sand);
}

/* Border Utilities */
.border-gold {
    border-color: var(--gold);
}

.border-deep-green {
    border-color: var(--deep-green);
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    border: none;
    color: var(--dark-charcoal);
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border-radius: 40px;
}

.btn-gold:hover {
    background-color: #E5A022;
    /* Emas sedikit lebih gelap */
    color: var(--dark-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 178, 44, 0.4);
}

.btn-outline-gold {
    border: 1.5px solid var(--gold);
    background: transparent;
    color: var(--gold);
    border-radius: 40px;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--dark-charcoal);
    transform: translateY(-2px);
}

/* Section Styling */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--cream-light);
    /* Judul section jadi terang */
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 4px;
}

/* Cards */
.card-banasentra {
    transition: all 0.3s ease;
    border: none;
    background: #1A1A1A;
    /* Kartu gelap, bukan putih */
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    color: var(--cream-light);
}

.card-banasentra:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Icons & Elements */
.icon-circle {
    width: 64px;
    height: 64px;
    background: var(--sand);
    /* Lingkaran abu gelap */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

/* Badges */
.badge-personality {
    background: var(--sand);
    color: var(--cream-light);
    /* Teks terang di badge gelap */
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
}

/* Navbar */
.navbar-banasentra {
    background-color: rgba(0, 0, 0, 0.95);
    /* Navbar hitam transparan */
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title {
        text-align: center;
        display: block;
        font-size: 1.5rem;
    }

    .exclusive-gifts p {
        font-size: 1rem !important;
    }
}

/*
    TELAH DIPERCAYA OLEH - CLIENT LOGO STYLES
*/

.client-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.9);
    /* Sedikit redup untuk logo di background gelap */
}

.client-logo:hover {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Responsive untuk logo client */
@media (max-width: 768px) {
    .client-logo {
        max-width: 150px;
    }
}

/*
    MEMBERI DENGAN ARTI - CARD STYLES
*/

.arti-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.arti-card img {
    width: 100%;
    margin-bottom: -75px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.arti-card:hover img {
    transform: scale(1.05);
}

/* Gradient overlay - coklat pelepah pisang */
.arti-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to top,
            #854836 0%,
            rgba(133, 72, 54, 0.9) 30%,
            rgba(133, 72, 54, 0.6) 60%,
            transparent 100%);
    padding: 30px 15px 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Title styling */
.arti-card .overlay h5 {
    color: white;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hover effect - gradient ke tengah */
.arti-card:hover .overlay {
    background: linear-gradient(to top,
            #854836 0%,
            rgba(133, 72, 54, 0.95) 40%,
            rgba(133, 72, 54, 0.8) 70%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arti-card:hover .overlay h5 {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .arti-card img {
        height: 100%;
        margin-bottom: -60px;
    }

    .arti-card .overlay {
        padding: 20px 10px 15px 10px;
        font-weight: 700;
    }

    .arti-card .overlay h5 {
        font-size: 0.9rem;
    }

    .arti-card:hover .overlay h5 {
        font-size: 1rem;
    }
}

/*
    NAVIGATION
*/

/* Custom Dropdown Menu */
.dropdown-menu-custom {
    min-width: 250px;
    padding: 0.75rem 0;
    border-radius: 16px;
    background-color: #1A1A1A;
    /* Dropdown gelap */
    border: 1px solid #333;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu-custom .dropdown-header {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--cream-light);
}

.dropdown-menu-custom .dropdown-item {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    color: var(--cream-light);
}

.dropdown-menu-custom .dropdown-item:hover {
    background-color: #2A2A2A;
    color: var(--gold);
    padding-left: 1.5rem;
}

.dropdown-menu-custom .dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid #333;
}

/* Navbar Link Hover Effect */
.navbar-nav .nav-link {
    transition: color 0.2s ease;
    position: relative;
    color: var(--cream-light) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

/* User Icon */
.bi-person-circle {
    color: var(--cream-light);
    transition: color 0.2s ease;
}

.bi-person-circle:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
    .dropdown-menu-custom {
        border: none;
        background-color: transparent;
        padding-left: 1rem;
    }

    .dropdown-menu-custom .dropdown-item {
        padding: 0.5rem 0;
    }

    .dropdown-menu-custom .dropdown-item:hover {
        padding-left: 0.5rem;
    }
}

/* Pagination Styles */
.pagination {
    justify-content: center;
    gap: 5px;
}

.pagination .page-item .page-link {
    color: var(--cream-light);
    background-color: transparent;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.pagination .page-item.active .page-link {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark-charcoal);
}

.pagination .page-item .page-link:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark-charcoal);
}

/*
    DAMPAK
*/

/* Icon Circle - Responsive */
.dampak-card .icon-circle {
    width: 64px;
    height: 64px;
    transition: all 0.3s ease;
}

.dampak-card .icon-circle i {
    font-size: 2rem;
    color: var(--gold);
    /* Ikon emas di lingkaran gelap */
}

/* Card Dampak */
.dampak-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    background: #1A1A1A;
    /* Kartu dampak gelap */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    color: var(--cream-light);
}

.dampak-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* Mobile Specific */
@media (max-width: 576px) {
    .dampak-card .icon-circle {
        width: 50px;
        height: 50px;
    }

    .dampak-card .icon-circle i {
        font-size: 1.5rem;
    }

    .dampak-card {
        padding: 1rem 0.75rem !important;
    }

    .dampak-card h4 {
        font-size: 0.85rem !important;
        margin-top: 0.5rem !important;
    }

    .dampak-card p {
        font-size: 0.7rem !important;
        margin-top: 0.25rem !important;
        line-height: 1.4;
    }
}

@media (max-width: 400px) {
    .dampak-card .icon-circle {
        width: 40px;
        height: 40px;
    }

    .dampak-card .icon-circle i {
        font-size: 1.2rem;
    }

    .dampak-card {
        padding: 0.75rem 0.5rem !important;
    }

    .dampak-card h4 {
        font-size: 0.75rem !important;
    }

    .dampak-card p {
        font-size: 0.6rem !important;
    }
}

/* ========================================
   EXCLUSIVE CAROUSEL STYLES
   ======================================== */

/* Desktop Carousel */
#carouselExclusiveDesktop .carousel-control-prev,
#carouselExclusiveDesktop .carousel-control-next {
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 178, 44, 0.4);
}

#carouselExclusiveDesktop .carousel-control-prev {
    left: -20px;
}

#carouselExclusiveDesktop .carousel-control-next {
    right: -20px;
}

#carouselExclusiveDesktop .carousel-control-prev:hover,
#carouselExclusiveDesktop .carousel-control-next:hover {
    opacity: 1;
}

#carouselExclusiveDesktop .carousel-control-prev-icon,
#carouselExclusiveDesktop .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}

/* Mobile Carousel */
#carouselExclusiveMobile .carousel-control-prev,
#carouselExclusiveMobile .carousel-control-next {
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 178, 44, 0.4);
}

#carouselExclusiveMobile .carousel-control-prev {
    left: 5px;
}

#carouselExclusiveMobile .carousel-control-next {
    right: 5px;
}

#carouselExclusiveMobile .carousel-control-prev:hover,
#carouselExclusiveMobile .carousel-control-next:hover {
    opacity: 1;
}

#carouselExclusiveMobile .carousel-control-prev-icon,
#carouselExclusiveMobile .carousel-control-next-icon {
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
}

/* Indicators */
.carousel-indicators {
    position: relative !important;
    margin-top: 2rem !important;
    gap: 8px;
    bottom: auto !important;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background-color: transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 4px;
    padding: 0;
    text-indent: -9999px;
    cursor: pointer;
}

.carousel-indicators button.active {
    background-color: var(--gold);
    opacity: 1;
    transform: scale(1.2);
}

.carousel-indicators button:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Responsive - Desktop */
@media (min-width: 769px) {
    #carouselExclusiveDesktop .carousel-control-prev {
        left: -25px;
    }

    #carouselExclusiveDesktop .carousel-control-next {
        right: -25px;
    }

    #carouselExclusiveDesktop .carousel-control-prev,
    #carouselExclusiveDesktop .carousel-control-next {
        width: 50px;
        height: 50px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    #carouselExclusiveMobile .carousel-control-prev {
        left: 2px;
    }

    #carouselExclusiveMobile .carousel-control-next {
        right: 2px;
    }

    #carouselExclusiveMobile .carousel-control-prev,
    #carouselExclusiveMobile .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    #carouselExclusiveMobile .carousel-control-prev {
        left: 0px;
    }

    #carouselExclusiveMobile .carousel-control-next {
        right: 0px;
    }

    #carouselExclusiveMobile .carousel-control-prev,
    #carouselExclusiveMobile .carousel-control-next {
        width: 28px;
        height: 28px;
    }

    .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
}

/* Footer Link Styles */
.footer-link {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

/* Social Media Icons */
.social-icon {
    color: #CCCCCC;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--gold);
    transform: translateY(-2px);
    display: inline-block;
}

/* Copyright Box */
.copyright-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

.copyright-link {
    color: #AAAAAA;
    transition: color 0.3s ease;
}

.copyright-link:hover {
    color: var(--gold);
}

/* Breadcrumb */
.breadcrumb-link {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--gold);
}

/* Stat Box */
.stat-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* CTA Box */
.cta-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

/* Social Share Links */
.social-share-link {
    color: #CCCCCC;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-share-link:hover {
    color: var(--gold);
}

/* Donation Box */
.donation-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

/* Bank Box */
.bank-box {
    background-color: #111111;
    border: 1px solid #333;
}

/* Impact Counter Box */
.impact-counter-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

/* FAQ Accordion */
.faq-item {
    background-color: #1A1A1A !important;
}

.faq-button {
    background-color: #1A1A1A !important;
    color: var(--cream-light) !important;
    box-shadow: none !important;
}

.faq-button:not(.collapsed) {
    background-color: #222222 !important;
    color: var(--gold) !important;
}

.faq-button::after {
    filter: brightness(0) invert(1);
}

.faq-button:focus {
    border-color: transparent !important;
}

/* Contact Link */
.contact-link {
    color: var(--gold);
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #E5A022;
}

/* Contact Boxes */
.contact-info-box,
.contact-form-box,
.address-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

/* Form Input Dark */
.form-input-dark {
    background-color: #111111 !important;
    border: 1px solid #444 !important;
    border-radius: 12px !important;
    color: var(--cream-light) !important;
    transition: all 0.3s ease;
}

.form-input-dark::placeholder {
    color: #888888;
}

.form-input-dark:focus {
    background-color: #1A1A1A !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 178, 44, 0.15) !important;
    color: var(--cream-light) !important;
}

/* Map Placeholder */
.map-placeholder {
    background-color: #111111;
    border: 1px solid #333;
}

/* Timeline Circle */
.timeline-circle {
    background-color: var(--gold);
}

/* Badge Dark */
.badge-dark-banasentra {
    background-color: #2A2A2A;
    color: #CCCCCC;
}

/* Values Box */
.values-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

/* FAQ Sidebar */
.faq-sidebar {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

/* FAQ Category Link */
.faq-category-link {
    color: #CCCCCC;
    transition: color 0.2s ease;
}

.faq-category-link:hover {
    color: var(--gold);
}

/* Badge Count */
.badge-count {
    background-color: var(--gold);
    color: var(--dark-charcoal);
}

.badge-count-active {
    background-color: var(--dark-charcoal);
    color: var(--gold);
}

/* Blog Detail Box */
.blog-detail-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

/* Sidebar Box */
.sidebar-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

/* Sidebar Article Link */
.sidebar-article-link {
    color: var(--cream-light);
    transition: color 0.2s ease;
}

.sidebar-article-link:hover {
    color: var(--gold);
}

/* Newsletter Box */
.newsletter-box {
    background-color: #111111;
    border: 1px solid #333;
}

/* CTA Sidebar Box */
.cta-sidebar-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

/* Blog Content Styling */
.blog-content h2,
.blog-content h3 {
    color: var(--cream-light);
}

.blog-content a {
    color: var(--gold);
    text-decoration: underline;
}

.blog-content blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin: 1rem 0;
    color: #CCCCCC;
    font-style: italic;
}

/* Policy Sidebar */
.policy-sidebar {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

.policy-sidebar-link {
    color: #CCCCCC;
    transition: color 0.2s ease;
}

.policy-sidebar-link:hover {
    color: var(--gold);
}

/* Policy Content Box */
.policy-content-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
}

/* Policy Contact Box */
.policy-contact-box {
    background-color: #111111;
    border: 1px solid #333;
}

.policy-contact-link {
    color: var(--cream-light);
    transition: color 0.2s ease;
}

.policy-contact-link:hover {
    color: var(--gold);
}
