/* =========================================================
   CUSTOM.CSS — Tema "Eco Fresh" untuk Bank Sampah
   File ini di-load SETELAH css/style.css untuk override
   ========================================================= */

/* =========================================
   1. ROOT VARIABLES & GLOBAL
   ========================================= */
:root {
    --primary: #0E8F6F;
    --primary-2: #14B8A6;
    --accent: #F2B705;
    --dark: #0C2B22;
    --light: #F3FBF8;
    --gray-soft: #6B8079;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #2C3E3A;
}

h1, h2, h3, h4, h5, h6, .navbar-brand h1 {
    font-family: 'Ubuntu', sans-serif;
}

::selection {
    background: var(--accent);
    color: var(--dark);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
    border-radius: 10px;
}

/* =========================================
   2. GLOBAL OVERRIDES (Bootstrap)
   ========================================= */
.bg-primary { background-color: var(--primary) !important; }
.text-primary { color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }
.bg-light { background-color: var(--light) !important; }

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-2)) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600;
    transition: transform .3s ease, box-shadow .3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14,143,111,.35);
    background: linear-gradient(90deg, #0b7358, var(--primary)) !important;
}

.btn-outline-primary {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    transition: all .3s ease;
}
.btn-outline-primary:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-3px);
}

.btn-light {
    background: linear-gradient(90deg, var(--accent), #ffce3d) !important;
    color: var(--dark) !important;
    border: none !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(242,183,5,.3);
    transition: all 0.3s ease;
}
.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242,183,5,.45);
}

.btn-square.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
    border: none !important;
}

/* =========================================
   3. NAVBAR GLASSMORPHISM
   ========================================= */
.navbar-glass {
    background: linear-gradient(120deg, rgba(12,43,34,0.92), rgba(14,143,111,0.88));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(12, 43, 34, 0.18);
    transition: all .35s ease;
    padding: 15px 0;
}

.navbar-glass.scrolled {
    padding: 10px 0;
    background: linear-gradient(120deg, rgba(12,43,34,0.98), rgba(14,143,111,0.95));
}

.navbar-glass .navbar-brand { text-decoration: none; }

.navbar-glass .navbar-brand h1 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .3px;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-glass .text-accent { color: var(--accent); }

.navbar-glass .brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ffd95e);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(242,183,5,.45);
    transition: all 0.3s ease;
}

.navbar-glass .brand-icon:hover {
    transform: rotate(360deg) scale(1.1);
}

.navbar-glass .nav-item.nav-link {
    position: relative;
    margin: 0 8px;
    padding: 10px 8px !important;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: rgba(255,255,255,.85) !important;
    transition: all .3s ease;
    text-transform: uppercase;
}

.navbar-glass .nav-item.nav-link i {
    font-size: .75rem;
    opacity: 0.8;
}

.navbar-glass .nav-item.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width .3s ease;
    border-radius: 2px;
}

.navbar-glass .nav-item.nav-link:hover,
.navbar-glass .nav-item.nav-link.active {
    color: #ffffff !important;
}

.navbar-glass .nav-item.nav-link:hover::after,
.navbar-glass .nav-item.nav-link.active::after {
    width: 100%;
}

.btn-search {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-search:hover {
    background: var(--accent);
    color: var(--dark) !important;
    transform: scale(1.1);
    border-color: var(--accent);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #0C2B22 0%, #0E8F6F 55%, #14B8A6 100%);
    isolation: isolate;
}

.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.10) 1.4px, transparent 1.4px);
    background-size: 22px 22px;
    z-index: 0;
    opacity: .5;
}

.hero-header::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -120px;
    top: -160px;
    background: radial-gradient(circle, rgba(242,183,5,.35), transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
}

.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    background: rgba(255,255,255,.12) !important;
    border: 1px solid rgba(255,255,255,.35) !important;
    backdrop-filter: blur(4px);
    font-size: .78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242,183,5,0.3);
    background: rgba(242,183,5,0.15) !important;
}

.accent-word {
    background: linear-gradient(135deg, var(--accent) 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero-header p.lead-text {
    color: rgba(255,255,255,.88);
    font-size: 1.02rem;
    max-width: 480px;
}

.hero-header .btn-outline-light {
    border: 1.5px solid rgba(255,255,255,.7);
    color: #fff;
    transition: all .3s ease;
}

.hero-header .btn-outline-light:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-float img {
    filter: drop-shadow(0 18px 22px rgba(0,0,0,.25));
    animation: heroFloat 5s ease-in-out infinite;
}

.hero-float img:nth-of-type(2) {
    animation-delay: .6s;
}

.hero-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.step-pill {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.step-pill:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.25) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step-pill i { color: var(--accent); }

.counter { display: inline-block; }

/* =========================================
   5. ABOUT SECTION
   ========================================= */
.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,143,111,.10);
    color: var(--primary);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.about-img {
    position: relative;
    overflow: visible;
    border-radius: 22px;
    transition: transform .4s ease;
}

.about-img img {
    border-radius: 22px;
    transition: transform .5s ease;
}

.about-img:hover img { transform: scale(1.03); }

.about-img::before {
    content: "";
    position: absolute;
    inset: -14px;
    border: 2px dashed rgba(14,143,111,.35);
    border-radius: 28px;
    z-index: -1;
}

.step-card {
    background: #ffffff;
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 18px rgba(12,43,34,.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(12,43,34,.12);
}

.step-card .step-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-card h6 {
    margin: 0;
    font-weight: 700;
    color: var(--dark);
}

.value-card {
    background: #ffffff;
    border: 1px solid rgba(14,143,111,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(14,143,111,0.15) !important;
    border-color: var(--primary);
}

.value-card .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(14,143,111,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.value-card:hover .icon-box { background: var(--primary); }
.value-card:hover .icon-box i { color: white !important; }

.alert-light {
    background: rgba(242,183,5,0.08);
    border-color: var(--accent) !important;
    border-radius: 12px;
    padding: 15px;
}

/* =========================================
   6. SERVICES / FEATURES SECTION
   ========================================= */
.container-service { background: var(--light); }

.service-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 6px 24px rgba(12,43,34,.05);
    border: 1px solid rgba(14,143,111,.08);
    transition: all .4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(12,43,34,.12);
    border-color: rgba(14,143,111,.2);
}

.service-item:hover::before { transform: scaleX(1); }

.service-item h5 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-item p {
    color: var(--gray-soft);
    font-size: .92rem;
    line-height: 1.6;
}

.service-item .icon-box,
.service-item i.fa-3x {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: rgba(14,143,111,.08);
    border-radius: 50%;
    color: var(--primary) !important;
    transition: all .4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-item:hover .icon-box,
.service-item:hover i.fa-3x {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff !important;
    transform: rotateY(180deg);
}

.service-item ul li { transition: all 0.3s ease; }
.service-item ul li:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Feature Section */
.feature {
    background: linear-gradient(125deg, #0C2B22 0%, #0E8F6F 55%, #14B8A6 100%) !important;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1.4px, transparent 1.4px);
    background-size: 22px 22px;
    z-index: 0;
}

.feature .container { position: relative; z-index: 1; }

.feature h1 { color: #fff !important; }
.feature p.text-light { color: rgba(255,255,255,.85) !important; }

.feature .stats-card,
.feature .d-flex.rounded.p-3 {
    background: rgba(255,255,255,.1) !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    backdrop-filter: blur(6px);
    border-radius: 12px !important;
    padding: 16px !important;
    transition: all .3s ease;
}

.feature .stats-card:hover {
    background: rgba(255,255,255,.18) !important;
    transform: translateY(-3px);
}

.feature h2.text-white {
    color: var(--accent) !important;
    font-weight: 800;
}

.feature p.text-white-50 {
    color: rgba(255,255,255,.8) !important;
    font-size: .88rem;
    margin: 0;
}

/* =========================================
   7. TEAM SECTION
   ========================================= */
.team-item {
    background: #ffffff !important;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(12,43,34,.05);
    border: 1px solid rgba(14,143,111,.08);
    transition: all .4s ease;
    overflow: hidden;
}

.team-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(12,43,34,.12);
}

.team-item h5 {
    color: var(--dark);
    font-weight: 700;
}

.team-item small {
    color: var(--primary) !important;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .75rem;
}

.team-item img { transition: transform .4s ease; }
.team-item:hover img { transform: scale(1.04); }

.team-item .btn-square {
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    background: var(--light) !important;
    color: var(--primary) !important;
    border: none !important;
    transition: all .3s ease;
}

.team-item .btn-square:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
    color: #fff !important;
    transform: translateY(-3px);
}

/* =========================================
   8. PRODUCT CARDS
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(12, 43, 34, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(14, 143, 111, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 143, 111, 0.2);
    border-color: var(--primary);
}

.product-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9f6, #e6f7f2);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.1); }

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.product-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(14, 143, 111, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-badge.new {
    background: linear-gradient(135deg, var(--accent), #ffd95e);
    color: var(--dark);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    z-index: 2;
}

.wishlist-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.wishlist-btn i {
    font-size: 18px;
    color: #71717A;
    transition: color 0.3s ease;
}

.wishlist-btn:hover i { color: #ef4444; }

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    padding: 4px 10px;
    background: rgba(14, 143, 111, 0.08);
    border-radius: 20px;
    width: fit-content;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 10px;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.3;
}

.product-desc {
    font-size: 13px;
    color: #6B8079;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.product-feature {
    font-size: 10px;
    background: #f8faf9;
    color: #52525B;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #e6f7f2;
}

.product-feature i {
    color: var(--primary);
    font-size: 9px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.product-rating i {
    color: #fbbf24;
    font-size: 12px;
}

.product-rating span {
    margin-left: 5px;
    font-size: 11px;
    color: #6B8079;
    font-weight: 600;
}

.product-stock {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-stock .dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.product-price { display: flex; flex-direction: column; }

.price-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.price-new {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    font-family: 'Ubuntu', sans-serif;
}

.price-unit {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

.btn-order {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 143, 111, 0.3);
    text-decoration: none;
    white-space: nowrap;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 143, 111, 0.4);
    color: #fff;
}

.btn-order i { transition: transform 0.3s ease; }
.btn-order:hover i { transform: rotate(-10deg) scale(1.1); }

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.filter-btn {
    background: #fff;
    border: 2px solid #e6f7f2;
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 143, 111, 0.3);
}

/* =========================================
   9. IMPACT CARDS
   ========================================= */
.impact-section {
    background: linear-gradient(135deg, #0C2B22 0%, #0E8F6F 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1.4px, transparent 1.4px);
    background-size: 22px 22px;
    opacity: .5;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 183, 5, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.impact-card:hover::before { opacity: 1; }

.impact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #ffd95e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--dark);
    font-size: 28px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.impact-card:hover .impact-card-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(242, 183, 5, 0.4);
}

.impact-card-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 1;
}

.impact-card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* =========================================
   10. MAP / LOCATION SECTION
   ========================================= */
.location-section {
    background: linear-gradient(135deg, #0C2B22 0%, #0E8F6F 100%);
    padding: 80px 0 60px;
    position: relative;
}

.location-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1.4px, transparent 1.4px);
    background-size: 22px 22px;
    opacity: .5;
}

.location-section .container { position: relative; z-index: 1; }

.section-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 15px;
}

.map-container {
    background: #fff;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

/* =========================================
   11. FOOTER
   ========================================= */
.footer-section { position: relative; overflow: hidden; }

.footer-main {
    background: linear-gradient(160deg, #0C2B22, #103A2D);
    padding: 60px 0 40px;
    position: relative;
}

.footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-brand { margin-bottom: 20px; }

.footer-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ffd95e);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.3rem;
    box-shadow: 0 4px 14px rgba(242,183,5,.35);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(242,183,5,0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: .9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: .75rem;
    opacity: 0.6;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: .9rem;
}

.footer-contact li i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: .85rem;
    margin: 0;
}

.footer-bottom .text-danger {
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* =========================================
   12. TESTIMONIAL CAROUSEL (LEGACY - untuk halaman lama)
   ========================================= */
.testimonial-carousel .testimonial-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin: 20px 10px;
    transition: all 0.3s ease;
}

.testimonial-carousel .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(14,143,111,0.15) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testimonial-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.testimonial-carousel .owl-dot.active span {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* =========================================
   13. BACK TO TOP
   ========================================= */
.back-to-top {
    background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
    border: none !important;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(14,143,111,.4);
    transition: transform .3s ease;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
}

/* =========================================
   14. WHATSAPP FLOATING BUTTON
   ========================================= */
.wa-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-tooltip {
    background: #ffffff;
    color: var(--dark);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.wa-tooltip-arrow {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #ffffff;
}

.wa-float-container:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.wa-float-btn {
    position: relative;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wa-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

.wa-float-btn:active { transform: scale(0.95); }

.wa-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: -1;
}

.wa-pulse-ring-2 { animation-delay: 1s; }

.wa-online-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.wa-online-dot {
    width: 10px;
    height: 10px;
    background: #4ADE80;
    border-radius: 50%;
    animation: wa-blink 2s ease-in-out infinite;
}

/* =========================================
   15. KEYFRAMES ANIMATIONS
   ========================================= */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes wa-pulse {
    0% {
        width: 65px;
        height: 65px;
        opacity: 1;
    }
    100% {
        width: 130px;
        height: 130px;
        opacity: 0;
    }
}

@keyframes wa-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.wow { visibility: visible; }

/* ========================================
   TESTIMONIAL V3 - SPLIT LAYOUT (FIXED)
   ======================================== */

/* Container Carousel */
.testimonial-carousel-v3 {
    position: relative;
    padding: 20px 0;
    width: 100%;
}

/* ✅ FIX UTAMA: Pastikan stage Owl Carousel bekerja dengan benar */
.testimonial-carousel-v3 .owl-stage-outer {
    overflow: hidden;
    width: 100%;
}

.testimonial-carousel-v3 .owl-stage {
    display: flex;
    align-items: stretch;
    transition: transform 0.6s ease;
}

/* ✅ FIX UTAMA: Setiap item harus full width */
.testimonial-carousel-v3 .owl-item {
    display: flex;
    width: 100% !important;
    opacity: 1 !important;
}

/* Base Card */
.testimonial-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    min-height: 400px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* LEFT SECTION */
.tc-left {
    width: 250px;
    flex-shrink: 0;
    position: relative;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    overflow: hidden;
}

.tc-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.tc-left > * {
    position: relative;
    z-index: 2;
}

/* Accent Colors */
.tc-green .tc-left {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tc-blue .tc-left {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.tc-orange .tc-left {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.tc-purple .tc-left {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

/* Number */
.tc-number {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.25;
    font-family: 'Ubuntu', sans-serif;
    letter-spacing: -3px;
}

/* Avatar */
.tc-avatar-wrap { position: relative; }

.tc-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 4px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover .tc-avatar {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Social */
.tc-social { text-align: center; }

.tc-social-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
    font-weight: 600;
}

.tc-social-icons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.tc-social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tc-social-icons a:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.tc-green .tc-social-icons a:hover { color: #10b981; }
.tc-blue .tc-social-icons a:hover { color: #3b82f6; }
.tc-orange .tc-social-icons a:hover { color: #f59e0b; }
.tc-purple .tc-social-icons a:hover { color: #8b5cf6; }

/* RIGHT SECTION */
.tc-right {
    flex: 1;
    padding: 40px 45px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

/* Quote Mark */
.tc-quote-mark {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 120px;
    line-height: 1;
    font-family: Georgia, serif;
    font-weight: 900;
    opacity: 0.08;
    color: #000;
    pointer-events: none;
}

.tc-green .tc-quote-mark { color: #10b981; opacity: 0.15; }
.tc-blue .tc-quote-mark { color: #3b82f6; opacity: 0.15; }
.tc-orange .tc-quote-mark { color: #f59e0b; opacity: 0.15; }
.tc-purple .tc-quote-mark { color: #8b5cf6; opacity: 0.15; }

/* Stars */
.tc-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.tc-stars i {
    font-size: 16px;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

/* Text */
.tc-text {
    font-size: 16px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Divider */
.tc-divider {
    width: 60px;
    height: 3px;
    border-radius: 3px;
    margin-bottom: 25px;
    transition: width 0.4s ease;
}

.testimonial-card:hover .tc-divider { width: 100px; }

.tc-green .tc-divider { background: #10b981; }
.tc-blue .tc-divider { background: #3b82f6; }
.tc-orange .tc-divider { background: #f59e0b; }
.tc-purple .tc-divider { background: #8b5cf6; }

/* Author */
.tc-author {
    position: relative;
    z-index: 2;
}

.tc-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.tc-role {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Dots Navigation */
.testimonial-carousel-v3 .owl-dots {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonial-carousel-v3 .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
    border: none;
    cursor: pointer;
}

.testimonial-carousel-v3 .owl-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.testimonial-carousel-v3 .owl-dot.active {
    background: #10b981;
    transform: scale(1.3);
}

.testimonial-carousel-v3 .owl-dot.active::before {
    border-color: #10b981;
}

.testimonial-carousel-v3 .owl-dot:focus {
    outline: none;
}

/* Hide default nav */
.testimonial-carousel-v3 .owl-nav { display: none; }

/* Animation */
@keyframes tcFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-carousel-v3 .owl-item.active .testimonial-card {
    animation: tcFadeIn 0.6s ease-out;
}

/* =========================================
   16. RESPONSIVE MEDIA QUERIES
   ========================================= */

/* Tablet & Below */
@media (max-width: 991px) {
    /* Navbar */
    .navbar-glass { padding: 12px 0; }
    
    .navbar-glass .navbar-brand h1 { font-size: 1rem; }
    
    .navbar-glass .brand-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .navbar-collapse {
        background: rgba(12,43,34,0.98);
        margin-top: 15px;
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .navbar-glass .nav-item.nav-link {
        padding: 12px 15px !important;
        margin: 5px 0;
        border-radius: 8px;
    }
    
    .navbar-glass .nav-item.nav-link:hover,
    .navbar-glass .nav-item.nav-link.active {
        background: rgba(255,255,255,0.1);
    }
    
    .navbar-glass .nav-item.nav-link::after { display: none; }
    
    .btn-search {
        margin-top: 15px;
        width: 100%;
        border-radius: 8px;
    }

    /* Hero */
    .hero-float {
        min-height: 350px !important;
        margin-top: 30px;
    }
    
    .hero-float img { max-height: 250px !important; }
    .step-pill span { display: none !important; }

    /* About */
    .about-img {
        min-height: 400px !important;
        margin-bottom: 30px;
    }
    
    .about-img img { max-height: 350px !important; }
    
    .position-absolute[style*="left: 0px"],
    .position-absolute[style*="right: 0px"] {
        display: none !important;
    }
    
    .position-absolute[style*="top-0 start-0"] {
        transform: translate(5px, 5px) !important;
        max-width: 160px !important;
    }
    
    .position-absolute[style*="bottom-0 end-0"] {
        transform: translate(-5px, -5px) !important;
        max-width: 180px !important;
    }

    /* ✅ Testimonial V3 Tablet */
    .testimonial-card {
        flex-direction: column;
        min-height: auto;
    }

    .tc-left {
        width: 100%;
        padding: 35px 25px 25px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .tc-number {
        font-size: 60px;
        order: 2;
    }

    .tc-avatar-wrap { order: 1; }

    .tc-avatar {
        width: 90px;
        height: 90px;
        font-size: 38px;
    }

    .tc-social { order: 3; }
    .tc-social-label { display: none; }

    .tc-right { padding: 30px 25px; }

    .tc-quote-mark {
        font-size: 80px;
        top: 15px;
        right: 25px;
    }

    .tc-text { font-size: 15px; }
    .tc-name { font-size: 18px; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hero */
    .hero-title { font-size: 2rem !important; }
    .hero-float { min-height: 300px !important; }
    
    .position-absolute[style*="left: -30px"],
    .position-absolute[style*="right: -20px"],
    .position-absolute[style*="right: -10px"] {
        display: none;
    }

    /* WhatsApp Float */
    .wa-float-container {
        bottom: 20px;
        right: 20px;
    }
    
    .wa-float-btn {
        width: 58px;
        height: 58px;
        font-size: 1.75rem;
    }
    
    .wa-tooltip { display: none; }
    
    @keyframes wa-pulse {
        0% {
            width: 58px;
            height: 58px;
            opacity: 1;
        }
        100% {
            width: 110px;
            height: 110px;
            opacity: 0;
        }
    }

    /* Footer */
    .location-section { padding: 60px 0 40px; }
    .map-container { padding: 8px; }
    .footer-main { padding: 40px 0 30px; }
    .footer-brand h3 { font-size: 1.2rem; }
    .footer-social { gap: 8px; }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: .9rem;
    }

    /* Testimonial Legacy */
    .testimonial-item { padding: 20px !important; }
    .testimonial-item h5 { font-size: 1rem; }

    /* Impact Card */
    .impact-card { padding: 25px 15px; }
    .impact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .impact-card-title { font-size: 16px; }
    .impact-card-desc { font-size: 13px; }

    /* Product Grid */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .btn-order { justify-content: center; }

    .category-filter { gap: 8px; }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* ✅ Testimonial V3 Mobile */
    .tc-left {
        padding: 25px 20px 20px;
    }

    .tc-number { font-size: 48px; }

    .tc-avatar {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .tc-right { padding: 25px 20px; }

    .tc-quote-mark {
        font-size: 70px;
        top: 10px;
        right: 20px;
    }

    .tc-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .tc-name { font-size: 16px; }
    .tc-role { font-size: 12px; }

    .tc-stars i { font-size: 14px; }
}

/* Small Mobile */
@media (max-width: 576px) {
    .value-card { padding: 12px !important; }
    .value-card h6 { font-size: 0.85rem !important; }
    .value-card small { font-size: 0.7rem !important; }

    /* ✅ Testimonial V3 Small Mobile */
    .tc-left {
        padding: 20px 15px 15px;
        gap: 10px;
    }

    .tc-number { font-size: 36px; }

    .tc-avatar {
        width: 55px;
        height: 55px;
        font-size: 22px;
        border-width: 2px;
    }

    .tc-social-icons a {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .tc-right { padding: 20px 15px; }

    .tc-quote-mark {
        font-size: 50px;
        top: 5px;
        right: 15px;
    }

    .tc-text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .tc-divider {
        width: 40px;
        margin-bottom: 15px;
    }

    .tc-name { font-size: 15px; }
    .tc-role { font-size: 11px; }
}

/* Desktop adjustment */
@media (min-width: 769px) {
    .back-to-top { bottom: 110px !important; }
}

/* Team Simple Clean */
.team-item {
    background: #ffffff !important;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(12,43,34,.05);
    border: 1px solid rgba(14,143,111,.08);
    transition: all .4s ease;
    overflow: hidden;
}

.team-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(12,43,34,.12);
    border-color: var(--primary);
}

.team-item img {
    transition: transform .4s ease;
    border: 3px solid var(--light);
}

.team-item:hover img {
    transform: scale(1.05);
    border-color: var(--primary);
}

.team-item h5 {
    color: var(--dark);
    font-weight: 700;
    margin-top: 10px;
}

.team-item small {
    color: var(--primary) !important;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .75rem;
}

/* ========================================
   VISION & MISSION - MODERN SPLIT
   ======================================== */

/* VISI Card */
.vm-card-visi {
    background: linear-gradient(135deg, #0C2B22 0%, #0E8F6F 60%, #14B8A6 100%);
    border-radius: 24px;
    padding: 45px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 43, 34, 0.25);
    transition: all 0.4s ease;
}

.vm-card-visi::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242,183,5,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

.vm-card-visi::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.vm-card-visi:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(12, 43, 34, 0.35);
}

.vm-visi-content {
    position: relative;
    z-index: 2;
}

.vm-visi-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ffd95e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(242,183,5,0.4);
    transition: all 0.4s ease;
}

.vm-card-visi:hover .vm-visi-icon {
    transform: rotate(360deg) scale(1.1);
}

.vm-visi-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-visi-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.vm-visi-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.vm-visi-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.vm-visi-decoration {
    display: flex;
    gap: 15px;
    opacity: 0.3;
}

.vm-visi-decoration i {
    font-size: 1.5rem;
    color: var(--accent);
}

/* MISI Card */
.vm-card-misi {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(12,43,34,.06);
    border: 1px solid rgba(14,143,111,.08);
    transition: all 0.4s ease;
}

.vm-card-misi:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14,143,111,.12);
    border-color: var(--primary);
}

.vm-misi-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(14,143,111,.08);
}

.vm-misi-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(14,143,111,.1), rgba(20,184,166,.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.vm-card-misi:hover .vm-misi-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    transform: rotate(-10deg) scale(1.1);
}

.vm-misi-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.vm-misi-title {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

/* Misi List */
.vm-misi-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vm-misi-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    background: var(--light);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.vm-misi-item:hover {
    background: rgba(14,143,111,.05);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(14,143,111,.1);
}

.vm-misi-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Ubuntu', sans-serif;
    line-height: 1;
    opacity: 0.3;
    flex-shrink: 0;
    min-width: 50px;
    transition: all 0.3s ease;
}

.vm-misi-item:hover .vm-misi-number {
    opacity: 1;
    transform: scale(1.1);
}

.vm-misi-content h5 {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Ubuntu', sans-serif;
}

.vm-misi-content p {
    color: #6B8079;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .vm-card-visi,
    .vm-card-misi {
        padding: 30px 25px;
    }

    .vm-visi-title {
        font-size: 1.5rem;
    }

    .vm-visi-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .vm-misi-item {
        padding: 15px;
        gap: 15px;
    }

    .vm-misi-number {
        font-size: 1.5rem;
        min-width: 40px;
    }
}

@media (max-width: 576px) {
    .vm-misi-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .vm-misi-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .vm-misi-number {
        font-size: 2rem;
    }
}