/* ====================================================
   Custom CSS for Sistem Informasi UMKM Desa Sebong Lagoi
   Redesigned to match Figma Design
   ==================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
    --navy: #0D1B2A;
    --navy-dark: #07111a;
    --navy-mid: #1a2e42;
    --sea-blue: #0b4777;
    --sea-blue-dark: #072e52;
    --sea-blue-light: #EBF3FA;
    --mangrove-green: #1B6B3A;
    --mangrove-green-dark: #124d2a;
    --accent-gold: #D4A017;
    --accent-gold-light: #F0C040;
    --neutral-light: #F8FAFC;
    --neutral-dark: #1E293B;
    --text-muted: #64748B;
    --border-light: #E2E8F0;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

/* --- Utility Classes --- */
.text-primary-custom {
    color: var(--sea-blue) !important;
}

.text-secondary-custom {
    color: var(--mangrove-green) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.text-navy {
    color: var(--navy) !important;
}

.bg-primary-custom {
    background-color: var(--sea-blue) !important;
}

.bg-secondary-custom {
    background-color: var(--mangrove-green) !important;
}

.bg-accent-custom {
    background-color: var(--accent-gold) !important;
}

.bg-navy {
    background-color: var(--navy) !important;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* ====================================================
   NAVBAR / NAVIGATION
   ==================================================== */
.navbar-custom {
    background: transparent;
    padding: 18px 0;
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-custom.scrolled {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

/* Navbar selalu solid saat tidak di hero */
.navbar-custom.navbar-solid {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-brand-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--sea-blue), var(--mangrove-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.navbar-brand-text .brand-name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    line-height: 1.2;
}

.navbar-brand-text .brand-sub {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
}

.navbar-custom .dropdown-menu {
    background: rgba(7, 17, 26, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    backdrop-filter: blur(20px);
}

.navbar-custom .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.navbar-custom .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-admin-nav {
    background: var(--navy-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-admin-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(7, 17, 26, 0.80) 0%,
            rgba(13, 27, 42, 0.70) 40%,
            rgba(13, 27, 42, 0.40) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-row {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid rgba(212, 160, 23, 0.5);
    color: var(--accent-gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .text-gold-highlight {
    color: var(--accent-gold-light);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sea-blue);
    border: none;
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--sea-blue-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.4);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ====================================================
   STATS SECTION
   ==================================================== */
.stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 28px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 16px 20px;
    border-right: 1px solid var(--border-light);
    transition: all 0.3s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--sea-blue-light);
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ====================================================
   SECTION HEADERS
   ==================================================== */
.section-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mangrove-green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-tagline::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--mangrove-green);
    display: inline-block;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 520px;
    line-height: 1.7;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn-primary-custom {
    background: var(--sea-blue);
    border: 2px solid var(--sea-blue);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary-custom:hover {
    background: var(--sea-blue-dark);
    border-color: var(--sea-blue-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 76, 129, 0.3);
}

.btn-secondary-custom {
    background: var(--mangrove-green);
    border: 2px solid var(--mangrove-green);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary-custom:hover {
    background: var(--mangrove-green-dark);
    border-color: var(--mangrove-green-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-primary-custom {
    background: transparent;
    border: 2px solid var(--sea-blue);
    color: var(--sea-blue);
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline-primary-custom:hover {
    background: var(--sea-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    color: var(--navy);
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-gold:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 160, 23, 0.4);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sea-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    background: transparent;
    padding: 0;
    transition: all 0.3s;
}

.btn-view-all:hover {
    color: var(--sea-blue-dark);
    gap: 10px;
}

/* ====================================================
   PRODUCT CARDS
   ==================================================== */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.product-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.product-card .card-body {
    padding: 18px 20px 12px;
}

.product-seller {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-seller i {
    color: var(--accent-gold);
}

.product-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.product-rating .stars {
    color: #F59E0B;
    font-size: 0.8rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sea-blue);
}

.product-card .card-footer {
    background: white;
    border-top: 1px solid var(--border-light);
    padding: 12px 20px;
}

.btn-wa {
    background: #25D366;
    border: none;
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: center;
}

.btn-wa:hover {
    background: #1ebe5d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ====================================================
   UMKM CARDS
   ==================================================== */
.umkm-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
}

.umkm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.umkm-card .card-img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.umkm-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.umkm-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.umkm-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sea-blue);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.umkm-rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #F59E0B;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.umkm-card .card-body {
    padding: 18px 20px;
}

.umkm-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.umkm-description {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.umkm-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.umkm-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-umkm-detail {
    background: var(--sea-blue-light);
    border: none;
    color: var(--sea-blue);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-umkm-detail:hover {
    background: var(--sea-blue);
    color: white;
}

/* ====================================================
   POTENSI DESA SECTION
   ==================================================== */
.potensi-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.potensi-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.potensi-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 107, 58, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.potensi-section .section-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.potensi-section .section-tagline::before {
    background: rgba(255, 255, 255, 0.5);
}

.potensi-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.potensi-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.potensi-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.potensi-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.potensi-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* ====================================================
   WISATA SECTION
   ==================================================== */
.wisata-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
}

.wisata-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.35s;
}

.wisata-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.wisata-card-tall {
    grid-row: span 2;
    min-height: 480px;
}

.wisata-card-medium {
    min-height: 225px;
}

.wisata-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wisata-card:hover img {
    transform: scale(1.06);
}

.wisata-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
}

.wisata-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.wisata-cat-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.wisata-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    line-height: 1.3;
}

.wisata-card-content .wisata-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wisata-location {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ====================================================
   ARTIKEL / BERITA CARDS
   ==================================================== */
.artikel-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
}

.artikel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.artikel-card .card-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.artikel-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artikel-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.artikel-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.artikel-card .card-body {
    padding: 20px;
}

.artikel-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.artikel-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 10px;
}

.artikel-excerpt {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    color: var(--sea-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.btn-read-more:hover {
    color: var(--sea-blue-dark);
    gap: 8px;
}

/* ====================================================
   TESTIMONIAL SECTION
   ==================================================== */
.testimoni-section {
    background: var(--neutral-light);
}

.testimoni-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.35s;
    height: 100%;
    position: relative;
}

.testimoni-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--sea-blue-light);
}

.testimoni-quote-icon {
    font-size: 2.5rem;
    color: var(--sea-blue-light);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.testimoni-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.testimoni-text {
    font-size: 0.9rem;
    color: var(--neutral-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimoni-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimoni-avatar-placeholder {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sea-blue), var(--mangrove-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimoni-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.testimoni-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ====================================================
   CTA BANNER SECTION
   ==================================================== */
.cta-section {
    background: var(--mangrove-green);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.btn-cta-white {
    background: white;
    border: none;
    color: var(--mangrove-green);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-white:hover {
    background: #f0fdf4;
    color: var(--mangrove-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer-custom {
    background: #07111a;
    color: rgba(255, 255, 255, 0.65);
    padding: 70px 0 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sea-blue), var(--mangrove-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.footer-brand-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-description {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--sea-blue);
    border-color: var(--sea-blue);
    color: white;
    transform: translateY(-3px);
}

.footer-custom h5 {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent-gold-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item i {
    color: var(--accent-gold-light);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ====================================================
   DASHBOARD LAYOUT (Keep existing)
   ==================================================== */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background-color: var(--mangrove-green);
    color: white;
    min-height: 100vh;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.sidebar .brand-area {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar .brand-area i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-gold);
}

.mobile-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.mobile-sidebar .nav-link:hover,
.mobile-sidebar .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-gold);
}

.main-content {
    flex: 1;
    min-width: 0;
    background-color: #f1f5f9;
    overflow-x: hidden;
}

.top-bar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 12px 15px;
    }
    .table-responsive table {
        min-width: 800px;
    }
}

/* ====================================================
   CARD CUSTOM (keep for backward compat)
   ==================================================== */
.card-custom {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-custom .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 0.8s ease 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease 0.6s both;
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(7, 17, 26, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 15px;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-custom .nav-link {
        padding: 10px 14px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .btn-admin-nav {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .stats-card {
        grid-template-columns: repeat(3, 1fr);
        padding: 20px;
    }

    .stat-item {
        border-bottom: none !important;
    }

    .wisata-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wisata-card-tall {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-badge {
        margin-bottom: 16px;
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .stats-card {
        grid-template-columns: 1fr;
        margin: 0 15px;
    }
    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border-light);
    }
    .stat-item:last-child {
        border-bottom: none;
    }

    .wisata-grid {
        grid-template-columns: 1fr;
    }

    .wisata-card-tall {
        grid-column: span 1;
        min-height: 280px;
    }

    .wisata-card-medium {
        min-height: 220px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .stats-section {
        margin-top: -30px;
    }

    .stats-card {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .btn-hero-primary,
    .btn-hero-outline,
    .btn-cta-white,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
}