:root {
    --primary-color: #FBC02D;
    --primary-dark: #f9a825;
    --primary-light: #fff263;
    --secondary-color: #111111;
    --accent-color: #ff5722;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #fdfdfd;
    --bg-dark: #0f0f0f;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 15px 45px rgba(251, 192, 45, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    background-color: var(--bg-light);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand {
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

/* --- Navbar Styles --- */
.navbar {
    background: rgba(17, 17, 17, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-color);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(17, 17, 17, 0.98) !important;
}

.navbar-brand {
    font-size: 2.2rem !important;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
    height: 50px !important;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(251, 192, 45, 0.3));
}

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff !important;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

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

.cart-badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    padding: 5px 15px;
    font-weight: 800;
    border: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}
.cart-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.cart-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.45);
}
.cart-badge:hover::before {
    opacity: 1;
}
.cart-badge i {
    transition: transform 0.4s;
}
.cart-badge:hover i {
    transform: scale(1.15) rotate(-5deg);
}
.cart-badge:active {
    transform: scale(0.95);
}

/* --- Theme Toggle Button --- */
.theme-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.theme-toggle-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(251,192,45,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}
.theme-toggle-btn:hover {
    transform: rotate(15deg) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(251,192,45,0.25);
}
.theme-toggle-btn:hover::before {
    opacity: 1;
}
.theme-toggle-btn:active {
    transform: rotate(30deg) scale(0.95);
}
.theme-toggle-btn i {
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}
.theme-toggle-btn .sun-icon {
    color: #ffd93d;
    text-shadow: 0 0 8px rgba(255,217,61,0.4);
}
.theme-toggle-btn .moon-icon {
    color: #a8d8ea;
    text-shadow: 0 0 8px rgba(168,216,234,0.4);
}
[data-theme="light"] .theme-toggle-btn .moon-icon { display: none; }
[data-theme="dark"] .theme-toggle-btn .sun-icon { display: none; }
[data-theme="dark"] .theme-toggle-btn {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}
[data-theme="dark"] .theme-toggle-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(251,192,45,0.3);
}



/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero-content {
    z-index: 5;
}

.hero h1 {
    font-size: 5.5rem;
    color: var(--primary-color);
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
    letter-spacing: 0.5px;
    line-height: 1.7;
    position: relative;
    padding: 20px 30px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-subtitle::before {
    content: '\F4AF';
    font-family: 'bootstrap-icons';
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(251, 192, 45, 0.3);
}
.hero-subtitle-line {
    display: block;
    font-weight: 500;
}
.hero-subtitle-line + .hero-subtitle-line {
    margin-top: 4px;
}
.hero-subtitle-line .text-warning {
    position: relative;
    display: inline-block;
}
.hero-subtitle-line .text-warning::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0.4;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.btn-premium {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 18px 45px;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(251, 192, 45, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(251, 192, 45, 0.5);
    color: var(--secondary-color);
}

/* --- Catalog Hero Banner --- */
.catalog-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(17, 17, 17, 0.75) 50%, rgba(0, 0, 0, 0.9) 100%),
                url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.catalog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.12) 0%, transparent 55%);
    animation: catalog-glow-drift 12s infinite alternate ease-in-out;
    pointer-events: none;
}

.catalog-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, transparent 55%);
    animation: catalog-glow-drift 10s infinite alternate-reverse ease-in-out;
    pointer-events: none;
}

@keyframes catalog-glow-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -20px) scale(1.15); }
}

/* Floating Lightning Icons */
.catalog-float-icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.12;
    animation: catalog-float 7s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
    filter: blur(0.5px);
}

@keyframes catalog-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
    50% { transform: translateY(-25px) rotate(12deg); opacity: 0.18; }
}

/* Diagonal Stripe */
.catalog-stripe {
    position: absolute;
    top: -40%;
    right: -5%;
    width: 200px;
    height: 180%;
    background: linear-gradient(180deg, transparent, rgba(251, 192, 45, 0.03), transparent);
    transform: rotate(25deg);
    pointer-events: none;
    z-index: 1;
}

/* Breadcrumb */
.catalog-breadcrumb {
    text-align: center;
    position: relative;
    z-index: 5;
}

.catalog-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.catalog-breadcrumb a:hover {
    color: var(--primary-color);
}

.catalog-breadcrumb .active {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Hero Title */
.catalog-hero-title {
    font-family: 'Bangers', cursive;
    font-size: 4.5rem;
    color: white;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.catalog-hero-title .title-accent {
    color: var(--primary-color);
    position: relative;
}

.catalog-hero-title .title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.2;
    border-radius: 4px;
}

.catalog-title-bolt {
    color: var(--primary-color);
    font-size: 2.8rem;
    vertical-align: middle;
    animation: bolt-flash 2.5s infinite ease-in-out;
    filter: drop-shadow(0 0 8px rgba(251, 192, 45, 0.5));
    margin-left: 5px;
}

@keyframes bolt-flash {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 8px rgba(251, 192, 45, 0.5)); }
    50% { opacity: 0.5; filter: drop-shadow(0 0 15px rgba(251, 192, 45, 0.9)); }
}

/* Subtitle */
.catalog-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.6;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Animated Line */
.catalog-hero-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.catalog-hero-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: line-shimmer 3s infinite ease-in-out;
}

@keyframes line-shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Stats Row */
.catalog-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    padding: 14px 35px;
    margin-top: 10px;
}

.catalog-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0 18px;
}

.catalog-stat-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.catalog-stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
}

/* --- Search & Filter Section --- */
.search-filter-section {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    margin-bottom: 50px;
}

.search-card {
    background: white;
    border-radius: 24px;
    padding: 35px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.search-input-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e8e8e8;
    transition: var(--transition);
    background: #fafafa;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(251, 192, 45, 0.12);
    background: white;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1.2rem;
    transition: color 0.3s;
    z-index: 2;
}

.search-input-wrapper:focus-within .search-icon {
    color: var(--primary-color);
}

.search-input-wrapper input {
    border: none;
    background: transparent;
    padding: 16px 20px 16px 52px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    outline: none;
    color: var(--text-dark);
}

.search-input-wrapper input::placeholder {
    color: #bbb;
    font-weight: 500;
}

.search-input-wrapper .btn-search {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 28px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    z-index: 2;
}

.search-input-wrapper .btn-search:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(251, 192, 45, 0.35);
    transform: translateY(-50%) scale(1.03);
}

/* --- Category Filter Pills --- */
.filter-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    color: var(--text-dark);
    background: white;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.filter-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), #f57f17);
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 0;
}

.filter-pill span,
.filter-pill i {
    position: relative;
    z-index: 1;
}

.filter-pill:hover {
    border-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.2);
}

.filter-pill.active {
    border-color: transparent;
    color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(251, 192, 45, 0.35);
    transform: translateY(-2px);
}

.filter-pill.active::before {
    opacity: 1;
}

/* --- Product Cards Section --- */
#produk {
    padding: 0 0 80px;
    background: linear-gradient(180deg, #fdfdfd 0%, #f5f3ef 100%);
    position: relative;
}

#produk::before {
    content: '';
    position: absolute;
    top: 200px;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 6px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 50px;
}

/* --- Product Card --- */
.product-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 5;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(251, 192, 45, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(251, 192, 45, 0.15);
}

.product-card:hover::before {
    opacity: 1;
    animation: gradient-slide 2s linear infinite;
}

@keyframes gradient-slide {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-overlay .btn {
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    backdrop-filter: blur(8px);
}

.product-overlay .btn:first-child {
    transition-delay: 0.05s;
}

.product-overlay .btn:last-child {
    transition-delay: 0.12s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
    opacity: 1;
}

.product-overlay .btn-light {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.product-overlay .btn-light:hover {
    background: white;
    transform: scale(1.1) !important;
}

.product-overlay .btn-warning {
    background: rgba(251, 192, 45, 0.95);
    border: none;
    box-shadow: 0 4px 15px rgba(251, 192, 45, 0.3);
}

.product-overlay .btn-warning:hover {
    background: var(--primary-color);
    transform: scale(1.1) !important;
}

/* Product Category Badge */
.product-card .badge {
    font-size: 0.78rem;
    backdrop-filter: blur(6px);
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-body {
    padding: 28px 28px 24px;
    text-align: left;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
    transition: color 0.3s;
    line-height: 1.3;
}

.product-card:hover .product-title {
    color: var(--primary-dark);
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 0;
    display: block;
    letter-spacing: -0.5px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 0;
}

.btn-detail-produk {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    font-weight: 700;
    padding: 11px 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-detail-produk:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--secondary-color), #222);
    color: var(--primary-color);
    width: 100%;
    padding: 11px;
    border-radius: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.3);
}

/* --- Product Count Badge --- */
.product-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 192, 45, 0.08);
    border: 1px solid rgba(251, 192, 45, 0.2);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* --- Empty State --- */
.empty-state {
    padding: 80px 20px;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.1), rgba(255, 87, 34, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--primary-color);
}

/* --- Floating Elements --- */
.petir-float {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.4;
    filter: blur(1px);
    animation: floating 6s infinite ease-in-out;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(15deg);
    }
}

/* --- Premium Container & Table --- */
.premium-container {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin-top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-premium {
    border-collapse: separate;
    border-spacing: 0 15px;
}

.table-premium thead th {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.table-premium thead th:first-child {
    border-radius: 15px 0 0 15px;
}

.table-premium thead th:last-child {
    border-radius: 0 15px 15px 0;
}

.table-premium tbody tr {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.table-premium tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.table-premium tbody td {
    background: white;
    padding: 20px;
    border: none;
    vertical-align: middle;
}

.table-premium tbody td:first-child {
    border-radius: 15px 0 0 15px;
}

.table-premium tbody td:last-child {
    border-radius: 0 15px 15px 0;
}

.qty-input {
    width: 80px;
    text-align: center;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 8px;
    font-weight: 700;
    transition: var(--transition);
}

.qty-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 192, 45, 0.2);
}

.total-box {
    background: var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    text-align: right;
    box-shadow: 0 10px 25px rgba(251, 192, 45, 0.2);
}

.btn-modern-danger {
    background: #fff0f0;
    color: #ff4444;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-modern-danger:hover {
    background: #ff4444;
    color: white;
}

/* --- Review Cards --- */
.premium-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-right: 15px;
}

.review-star {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-right: 2px;
}

.form-premium-control {
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 12px 20px;
    transition: var(--transition);
}

.form-premium-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(251, 192, 45, 0.1);
    outline: none;
}

/* --- Premium Footer --- */
.footer-premium {
    background: linear-gradient(180deg, #111111 0%, #080808 100%);
    color: #e0e0e0;
    padding: 80px 0 40px;
    border-top: 5px solid var(--primary-color);
    border-radius: 50px 50px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.footer-brand {
    font-family: 'Bangers', cursive;
    font-size: 2.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    display: inline-block;
    text-shadow: 0 0 15px rgba(251, 192, 45, 0.3);
}

.footer-brand .brand-bolt {
    display: inline-block;
    animation: flash 2s infinite alternate;
}

@keyframes flash {
    0% { filter: brightness(1) drop-shadow(0 0 2px var(--primary-color)); }
    100% { filter: brightness(1.5) drop-shadow(0 0 10px var(--primary-color)); }
}

.footer-desc {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links-wrapper {
    display: flex;
    gap: 12px;
}

.social-link-item {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link-item:hover {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    border-color: var(--primary-color);
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(251, 192, 45, 0.3);
}

.footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.75rem;
    margin-right: 8px;
    transition: transform 0.3s;
}

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

.footer-links a:hover i {
    transform: translateX(2px);
}

.footer-links span {
    color: #a0a0a0;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #a0a0a0;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-contact-item a {
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 30px;
}

.admin-link-hover {
    transition: var(--transition);
    color: inherit;
    font-weight: 700;
    opacity: 0.6;
}

.admin-link-hover:hover {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

.btn-wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.btn-wa-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}

/* --- Page Transition Overlay (Loading Style - Blurred) --- */
#lightning-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.4);
    /* Transparansi agar background terlihat */
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(0px);
    /* Awal blur 0 */
}

#lightning-transition.active {
    opacity: 1;
    pointer-events: all;
    backdrop-filter: blur(12px) brightness(0.7);
    /* Efek blur saat aktif */
}

.loading-logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightning-bolt-main {
    position: absolute;
    width: 70px;
    height: 105px;
    background: var(--primary-color);
    clip-path: polygon(45% 0%, 100% 0%, 65% 35%, 95% 35%, 45% 70%, 75% 70%, 15% 100%, 45% 55%, 15% 55%);
    filter: drop-shadow(0 0 30px var(--primary-color));
    z-index: 10;
}

#lightning-transition.active .lightning-bolt-main {
    animation: logo-pulse 1.2s infinite ease-in-out;
}

.loading-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 4px solid rgba(251, 192, 45, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
}

#lightning-transition.active .loading-ring {
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 25px;
    color: var(--primary-color);
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#lightning-transition.active .loading-text {
    animation: text-pulse 1.2s infinite ease-in-out;
}

@keyframes logo-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1) drop-shadow(0 0 20px var(--primary-color));
    }

    50% {
        transform: scale(1.15);
        filter: brightness(1.5) drop-shadow(0 0 40px var(--primary-color));
    }
}

@keyframes text-pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: 5.5rem;
    color: var(--primary-color);
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.petir-float {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.3;
    animation: floating 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(15deg);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .section-title h2 { font-size: 2.5rem; }
    .navbar-brand { font-size: 1.8rem !important; }
    .premium-container { padding: 20px; }
}

/* --- Gallery Page Styles --- */

/* Gallery Section Badges & Titles */
.galeri-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.1), rgba(255, 87, 34, 0.05));
    border: 1px solid rgba(251, 192, 45, 0.2);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.galeri-section-title {
    font-family: 'Bangers', cursive;
    font-size: 3.2rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.galeri-section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Process Timeline Section --- */
.galeri-process-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #f9f7f3 0%, #fdfdfd 100%);
    position: relative;
    overflow: hidden;
}

.galeri-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(251, 192, 45, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 87, 34, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.galeri-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.galeri-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), rgba(251, 192, 45, 0.2));
    transform: translateX(-50%);
    border-radius: 10px;
}

.galeri-timeline-item {
    position: relative;
    width: 50%;
    padding-right: 60px;
    padding-bottom: 50px;
    text-align: right;
}

.galeri-timeline-item.right {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 60px;
    text-align: left;
}

.galeri-timeline-dot {
    position: absolute;
    right: -18px;
    top: 0;
    width: 36px;
    height: 36px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(251, 192, 45, 0.25);
}

.galeri-timeline-item.right .galeri-timeline-dot {
    left: -18px;
    right: auto;
}

.galeri-timeline-dot i {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.galeri-timeline-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.galeri-timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.galeri-timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 192, 45, 0.12);
    border-color: rgba(251, 192, 45, 0.15);
}

.galeri-timeline-card:hover::before {
    opacity: 1;
}

.galeri-timeline-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.12), rgba(255, 87, 34, 0.06));
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.galeri-timeline-card h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.galeri-timeline-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Stats Counter Section --- */
.galeri-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.galeri-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.08) 0%, transparent 55%);
    animation: catalog-glow-drift 12s infinite alternate ease-in-out;
    pointer-events: none;
}

.galeri-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.galeri-stats-card {
    text-align: center;
    padding: 35px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeri-stats-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(251, 192, 45, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.galeri-stats-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #f9a825);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(251, 192, 45, 0.3);
}

.galeri-stats-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.galeri-stats-label {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Gallery Section --- */
.galeri-section {
    padding: 100px 0;
    background: radial-gradient(circle at top left, rgba(251, 192, 45, 0.05), transparent 40%);
}

.galeri-filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.galeri-filter-btn {
    background: white;
    border: 2px solid #eef0f2;
    color: var(--secondary-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    cursor: pointer;
}

.galeri-filter-btn:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.galeri-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #f9a825);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.3);
}

.galeri-grid {
    column-count: 3;
    column-gap: 30px;
}

.galeri-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.galeri-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Image Wrapper with Loading Skeleton */
.galeri-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.galeri-img-wrapper.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite ease-in-out;
    z-index: 1;
}

.galeri-img-wrapper.loading::after {
    content: '\F3DC';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #ccc;
    z-index: 2;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.galeri-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.galeri-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    border-color: rgba(251, 192, 45, 0.3);
}

.galeri-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.3) 55%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.galeri-card:hover .galeri-overlay {
    opacity: 1;
}

.galeri-overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    width: 100%;
    position: relative;
}

.galeri-card:hover .galeri-overlay-content {
    transform: translateY(0);
}

.galeri-overlay-content h5 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
}

.galeri-overlay-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.galeri-zoom-btn {
    position: absolute;
    top: -10px;
    right: 0;
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(251, 192, 45, 0.3);
    opacity: 0;
    transform: scale(0.5);
}

.galeri-card:hover .galeri-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

.galeri-zoom-btn:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(251, 192, 45, 0.5);
}

.galeri-tag {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(251, 192, 45, 0.3);
}

/* --- CTA Section --- */
.galeri-cta-section {
    padding: 40px 0 100px;
}

.galeri-cta-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    border-radius: 30px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(251, 192, 45, 0.1);
}

.galeri-cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 192, 45, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 87, 34, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.galeri-cta-bolt {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.08;
    animation: catalog-float 7s infinite ease-in-out;
    pointer-events: none;
}

.galeri-cta-content {
    position: relative;
    z-index: 2;
}

.galeri-cta-content h3 {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.galeri-cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.galeri-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.galeri-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.galeri-cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), #f9a825);
    color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.3);
}

.galeri-cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(251, 192, 45, 0.5);
}

.galeri-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.galeri-cta-btn.secondary:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

/* --- Lightbox Enhanced --- */
.galeri-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 40px;
}

.galeri-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    max-height: 80vh;
}

.galeri-lightbox img {
    max-width: 85%;
    max-height: 75vh;
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
}

.galeri-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(90deg);
}

/* Lightbox Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.6rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.3);
}

/* Lightbox Info (caption + counter) */
.lightbox-info {
    text-align: center;
    padding-top: 20px;
}

.lightbox-caption {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
}

/* --- Animations --- */
@keyframes galeriReveal {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes galeriHide {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
}

/* --- Responsive Gallery --- */
@media (max-width: 1200px) {
    .galeri-section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .galeri-grid {
        column-count: 2;
    }
    
    .galeri-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Timeline goes single column */
    .galeri-timeline-line {
        left: 18px;
    }
    
    .galeri-timeline-item,
    .galeri-timeline-item.right {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
        margin-left: 0;
    }
    
    .galeri-timeline-dot,
    .galeri-timeline-item.right .galeri-timeline-dot {
        left: 0;
        right: auto;
    }
    
    .galeri-cta-content h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .galeri-section-title {
        font-size: 2.4rem;
    }
    
    .galeri-filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .galeri-cta-card {
        padding: 50px 30px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    
    .galeri-lightbox img {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .galeri-grid {
        column-count: 1;
    }
    
    .galeri-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .galeri-stats-number {
        font-size: 2.2rem;
    }
    
    .galeri-cta-content h3 {
        font-size: 1.8rem;
    }
    
    .galeri-cta-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

/* --- Tentang Kami Page (Interactive) --- */
.about-page {
    overflow-x: hidden;
}

#aboutScrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), #f9a825, var(--primary-color));
    z-index: 9999;
    box-shadow: 0 0 12px rgba(251, 192, 45, 0.6);
    transition: width 0.1s linear;
}

.about-hero-extra {
    will-change: transform;
}

.about-sparks-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.about-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: about-spark-float 3s infinite ease-in-out;
    box-shadow: 0 0 8px var(--primary-color);
}

@keyframes about-spark-float {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 0.9; transform: translateY(-30px) scale(1.2); }
}

.about-typing-wrap {
    min-height: 2rem;
    margin-top: 0.5rem;
}

.about-typing {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 1px;
    border-right: 3px solid var(--primary-color);
    padding-right: 4px;
    animation: about-cursor-blink 0.8s step-end infinite;
    display: inline-block;
}

@keyframes about-cursor-blink {
    50% { border-color: transparent; }
}

.about-stats-row {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

.about-stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
    height: 100%;
}

.about-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(251, 192, 45, 0.2);
    border-color: rgba(251, 192, 45, 0.4);
}

[data-theme="dark"] .about-stat-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.08);
}

.about-stat-number {
    font-family: 'Bangers', cursive;
    font-size: 2.8rem;
    color: #111;
    line-height: 1;
    margin-bottom: 4px;
}

[data-theme="dark"] .about-stat-number {
    color: var(--primary-color);
}

.about-stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin: 0;
}

.about-dock {
    position: sticky;
    top: 72px;
    z-index: 100;
    padding: 12px 0;
    background: rgba(253, 253, 253, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}

[data-theme="dark"] .about-dock {
    background: rgba(17, 17, 17, 0.9);
    border-color: rgba(255, 255, 255, 0.06);
}

.about-dock-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
}

.about-dock-inner::-webkit-scrollbar {
    display: none;
}

.about-dock-link {
    flex-shrink: 0;
    border: none;
    background: #fff;
    color: #555;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

[data-theme="dark"] .about-dock-link {
    background: #222;
    color: #aaa;
}

.about-dock-link i {
    font-size: 1rem;
    color: var(--primary-color);
}

.about-dock-link:hover,
.about-dock-link.active {
    background: linear-gradient(135deg, #111, #222);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-dock-link.active i {
    color: var(--primary-color);
}

.about-section {
    position: relative;
    scroll-margin-top: 130px;
}

.about-section-alt {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

[data-theme="dark"] .about-section-alt {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: #111;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(251, 192, 45, 0.35);
}

.about-section-title {
    font-family: 'Bangers', cursive;
    font-size: 2.8rem;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary, #111);
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text-primary, #222);
}

.about-story-visual {
    position: relative;
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
}

.about-img-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.25) 0%, transparent 70%);
    z-index: -1;
    animation: about-glow-pulse 4s infinite ease-in-out;
}

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

.about-brand-img {
    border: 6px solid #fff;
    border-radius: 24px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-float-badge {
    position: absolute;
    background: #111;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    animation: about-badge-float 3s infinite ease-in-out;
    z-index: 5;
    white-space: nowrap;
}

.about-float-badge.b1 { top: 10%; right: -5%; animation-delay: 0s; }
.about-float-badge.b2 { bottom: 15%; left: -8%; animation-delay: 1s; }
.about-float-badge.b3 { top: 45%; right: -12%; animation-delay: 0.5s; }

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

.about-story-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.about-story-tab {
    border: 2px solid #eee;
    background: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.about-story-tab.active {
    background: #111;
    border-color: #111;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.about-story-panel {
    display: none;
    animation: about-panel-in 0.45s ease forwards;
}

.about-story-panel.active {
    display: block;
}

@keyframes about-panel-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-marquee-wrap {
    overflow: hidden;
    padding: 1.25rem 0;
    background: #111;
    border-block: 3px solid var(--primary-color);
}

.about-marquee-track {
    display: flex;
    width: max-content;
    animation: about-marquee 28s linear infinite;
}

.about-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes about-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.about-marquee-item {
    flex-shrink: 0;
    padding: 0 2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.about-marquee-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-vm-switch {
    display: inline-flex;
    background: #111;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-vm-tab {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s;
}

.about-vm-tab.active {
    background: var(--primary-color);
    color: #111;
    box-shadow: 0 4px 15px rgba(251, 192, 45, 0.4);
}

.about-vm-panel-wrap {
    position: relative;
    min-height: 280px;
}

.about-vm-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-vm-panel.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.about-vm-showcase {
    background: linear-gradient(145deg, #111 0%, #1f1f1f 100%);
    color: #fff;
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(251, 192, 45, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    height: 100%;
}

.about-vm-showcase .about-vm-icon-lg {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    animation: about-icon-spin 8s linear infinite;
}

@keyframes about-icon-spin {
    0% { box-shadow: 0 0 0 0 rgba(251, 192, 45, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(251, 192, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 192, 45, 0); }
}

.about-misi-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.about-misi-item.revealed {
    opacity: 1;
    transform: translateX(0);
}

.about-misi-check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 2rem;
}

.about-pillar {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 20px;
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-pillar.active {
    background: #111;
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-pillar.active i {
    color: var(--primary-color);
    transform: scale(1.2);
}

.about-pillar i {
    font-size: 1.8rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    transition: transform 0.3s;
}

.about-pillar span {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-history-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: start;
}

.about-year-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-year-btn {
    border: 2px solid #eee;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.35s;
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-year-btn:hover {
    border-color: var(--primary-color);
    transform: translateX(8px);
}

.about-year-btn.active {
    background: linear-gradient(135deg, #111, #222);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateX(12px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.about-year-btn .year-num {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1;
    min-width: 56px;
}

.about-year-btn.active .year-num {
    color: var(--primary-color);
}

.about-year-btn .year-label {
    font-weight: 700;
    font-size: 0.9rem;
}

.about-history-progress {
    height: 4px;
    background: #eee;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.about-history-progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--primary-color), #f9a825);
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-detail-card {
    background: #fff;
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    min-height: 280px;
    transition: opacity 0.2s, transform 0.2s;
}

.history-detail-card.is-changing {
    opacity: 0;
    transform: scale(0.98);
}

[data-theme="dark"] .history-detail-card {
    background: #1a1a1a;
}

.history-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--primary-color);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.history-detail-tag {
    display: inline-block;
    background: rgba(251, 192, 45, 0.15);
    color: #b8860b;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.history-detail-year {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-process-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 1rem 0 1.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.about-process-scroll::-webkit-scrollbar {
    height: 6px;
}

.about-process-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.about-process-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 22px;
    padding: 1.5rem;
    border: 1px solid #eee;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.about-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.about-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 192, 45, 0.15);
    border-color: var(--primary-color);
}

.about-process-card:hover::before {
    transform: scaleX(1);
}

.about-process-step {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    color: rgba(251, 192, 45, 0.3);
    line-height: 1;
}

.about-flip-card {
    perspective: 1000px;
    height: 320px;
    cursor: pointer;
}

.about-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.about-flip-card.is-flipped .about-flip-inner {
    transform: rotateY(180deg);
}

.about-flip-front,
.about-flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-flip-front {
    background: linear-gradient(160deg, #fff 0%, #f8f8f8 100%);
    border: 2px solid #eee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.about-flip-back {
    background: linear-gradient(160deg, #111 0%, #222 100%);
    color: #fff;
    transform: rotateY(180deg);
    border: 2px solid var(--primary-color);
}

[data-theme="dark"] .about-flip-front {
    background: linear-gradient(160deg, #222 0%, #1a1a1a 100%);
    border-color: #333;
}

.about-team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: var(--primary-color);
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    margin-bottom: 1rem;
    box-shadow: 0 0 0 8px rgba(251, 192, 45, 0.15);
    overflow: hidden;
}
.about-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-flip-hint {
    font-size: 0.7rem;
    color: #999;
    margin-top: auto;
    font-weight: 600;
}

.about-flip-back .about-flip-hint {
    color: rgba(255, 255, 255, 0.4);
}

.about-location-card {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 2rem;
    color: #fff;
    border: 1px solid rgba(251, 192, 45, 0.25);
    position: relative;
    overflow: hidden;
}

.about-location-pin {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    animation: about-pin-bounce 2s infinite ease-in-out;
}

.about-location-pin i {
    transform: rotate(45deg);
    color: #111;
    font-size: 1.4rem;
}

@keyframes about-pin-bounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-8px); }
}

.about-location-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.12) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.about-cta-box {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: #fff;
    border: 1px solid rgba(251, 192, 45, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.about-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(251, 192, 45, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 87, 34, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-cta-pulse {
    animation: about-cta-pulse 2.5s infinite;
}

@keyframes about-cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 192, 45, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(251, 192, 45, 0); }
}

@media (max-width: 992px) {
    .about-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-history-wrap {
        grid-template-columns: 1fr;
    }

    .about-year-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .about-year-btn {
        flex: 1 1 calc(50% - 8px);
    }

    .about-year-btn:hover,
    .about-year-btn.active {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .about-section-title {
        font-size: 2.2rem;
    }

    .catalog-hero-title {
        font-size: 3rem;
    }

    .about-stat-number {
        font-size: 2.2rem;
    }

    .about-float-badge {
        display: none;
    }

    .about-flip-card {
        height: 300px;
    }
}

/* ============================================
   DARK MODE — General & All Pages
   ============================================ */
[data-theme="dark"] body {
    background: #121212 !important;
    color: #e0e0e0;
}

[data-theme="dark"] .premium-card,
[data-theme="dark"] .premium-container {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #e0e0e0;
}

[data-theme="dark"] .text-muted {
    color: #aaa !important;
}

[data-theme="dark"] .bg-light {
    background: #1a1a1a !important;
}

[data-theme="dark"] .border {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .shadow-sm,
[data-theme="dark"] .shadow-lg,
[data-theme="dark"] .shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .breadcrumb {
    background: #1a1a1a !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .breadcrumb-item.active {
    color: #e0e0e0 !important;
}
[data-theme="dark"] .breadcrumb-item a {
    color: #aaa !important;
}

[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3,
[data-theme="dark"] h4, [data-theme="dark"] h5, [data-theme="dark"] h6,
[data-theme="dark"] .fw-bold {
    color: #f0f0f0;
}

[data-theme="dark"] p:not(.text-muted):not(.text-white-50) {
    color: #ccc;
}

[data-theme="dark"] .premium-card .text-dark,
[data-theme="dark"] .premium-container .text-dark {
    color: #f0f0f0 !important;
}

[data-theme="dark"] .btn-outline-dark {
    border-color: #555 !important;
    color: #e0e0e0 !important;
}
[data-theme="dark"] .btn-outline-dark:hover {
    background: #333 !important;
    border-color: #666 !important;
}

[data-theme="dark"] .form-premium-control,
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background: #2a2a2a !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: #e0e0e0 !important;
}
[data-theme="dark"] .form-premium-control:focus,
[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background: #333 !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(251, 192, 45, 0.15) !important;
    color: #fff !important;
}
[data-theme="dark"] .form-control::placeholder {
    color: #888 !important;
}

[data-theme="dark"] .product-card {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .product-card .product-title {
    color: #f0f0f0 !important;
}
[data-theme="dark"] .product-card .product-desc {
    color: #aaa !important;
}
[data-theme="dark"] .product-card .product-price {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .accordion-item {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .accordion-button {
    background: #1e1e1e !important;
    color: #e0e0e0 !important;
}
[data-theme="dark"] .accordion-button:not(.collapsed) {
    background: var(--primary-color) !important;
    color: #111 !important;
}
[data-theme="dark"] .accordion-button::after {
    filter: invert(0.8);
}
[data-theme="dark"] .accordion-body {
    background: #1a1a1a;
    color: #ccc !important;
}

[data-theme="dark"] .footer-premium {
    background: #0a0a0a !important;
    border-top-color: rgba(255, 255, 255, 0.06) !important;
}
[data-theme="dark"] .footer-title {
    color: #e0e0e0 !important;
}
[data-theme="dark"] .footer-links a {
    color: #aaa !important;
}
[data-theme="dark"] .footer-links a:hover {
    color: var(--primary-color) !important;
}
[data-theme="dark"] .footer-contact-item span,
[data-theme="dark"] .footer-desc {
    color: #aaa !important;
}

[data-theme="dark"] .btn-outline-light {
    border-color: #555 !important;
    color: #e0e0e0 !important;
}

[data-theme="dark"] .product-details-box .text-muted {
    color: #aaa !important;
}

[data-theme="dark"] .countdown-box {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .toast.premium-toast {
    background: rgba(30, 30, 30, 0.98) !important;
}

[data-theme="dark"] section[style*="background: #f8f9fa"],
[data-theme="dark"] section[style*="background:#f8f9fa"] {
    background: #161616 !important;
}

[data-theme="dark"] .about-dock {
    background: rgba(20, 20, 20, 0.9) !important;
}

[data-theme="dark"] .about-story-tab {
    background: #2a2a2a !important;
    color: #ccc !important;
}
[data-theme="dark"] .about-story-tab.active {
    background: var(--primary-color) !important;
    color: #111 !important;
    border-color: var(--primary-color) !important;
}

[data-theme="dark"] .about-pillar {
    background: #2a2a2a !important;
    color: #ccc !important;
}
[data-theme="dark"] .about-pillar.active {
    background: var(--primary-color) !important;
    color: #111 !important;
}

[data-theme="dark"] .about-vm-showcase {
    background: #1a1a1a !important;
}

[data-theme="dark"] .about-vm-tab {
    background: #2a2a2a !important;
    color: #aaa !important;
}
[data-theme="dark"] .about-vm-tab.active {
    background: var(--primary-color) !important;
    color: #111 !important;
}

[data-theme="dark"] .about-misi-item {
    color: #ccc !important;
}

[data-theme="dark"] .about-year-btn {
    background: #2a2a2a !important;
    color: #aaa !important;
}
[data-theme="dark"] .about-year-btn:hover,
[data-theme="dark"] .about-year-btn.active {
    background: var(--primary-color) !important;
    color: #111 !important;
}

[data-theme="dark"] .about-process-card {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .about-process-card h5 {
    color: #f0f0f0 !important;
}
[data-theme="dark"] .about-process-card p {
    color: #aaa !important;
}

[data-theme="dark"] .about-flip-front {
    background: #1e1e1e !important;
}
[data-theme="dark"] .about-flip-back {
    background: #1e1e1e !important;
}
[data-theme="dark"] .about-flip-back p {
    color: #ccc !important;
}

[data-theme="dark"] .about-flip-hint {
    color: #888 !important;
}

[data-theme="dark"] .galeri-card {
    background: #1e1e1e !important;
}
[data-theme="dark"] .galeri-card h6 {
    color: #e0e0e0 !important;
}

[data-theme="dark"] .galeri-process-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%) !important;
}
[data-theme="dark"] .galeri-process-section::before {
    background: radial-gradient(circle at 80% 20%, rgba(251, 192, 45, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 87, 34, 0.06) 0%, transparent 50%) !important;
}
[data-theme="dark"] .galeri-timeline-card {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}
[data-theme="dark"] .galeri-timeline-card h5 {
    color: #f0f0f0 !important;
}
[data-theme="dark"] .galeri-timeline-card p {
    color: #aaa !important;
}
[data-theme="dark"] .galeri-timeline-dot {
    background: #1e1e1e !important;
    border-color: var(--primary-color) !important;
}
[data-theme="dark"] .galeri-section {
    background: radial-gradient(circle at top left, rgba(251, 192, 45, 0.08), transparent 40%) !important;
}
[data-theme="dark"] .galeri-img-wrapper {
    background: #1e1e1e !important;
}
[data-theme="dark"] .galeri-img-wrapper.loading::before {
    background: linear-gradient(90deg, #2a2a2a 25%, #333 50%, #2a2a2a 75%) !important;
    background-size: 200% 100% !important;
}
[data-theme="dark"] .galeri-img-wrapper.loading::after {
    color: #555 !important;
}

[data-theme="dark"] .search-card {
    background: #1e1e1e !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .search-input-wrapper input {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
}
[data-theme="dark"] .search-input-wrapper input::placeholder {
    color: #888 !important;
}

[data-theme="dark"] .filter-pill {
    background: #2a2a2a !important;
    color: #aaa !important;
}
[data-theme="dark"] .filter-pill.active {
    background: var(--primary-color) !important;
    color: #111 !important;
}

[data-theme="dark"] .product-count-badge {
    background: #2a2a2a !important;
    color: #ccc !important;
}

[data-theme="dark"] .empty-state h3 {
    color: #e0e0e0 !important;
}
[data-theme="dark"] .empty-state-icon {
    color: #555 !important;
}

[data-theme="dark"] .review-avatar {
    background: #333 !important;
    color: var(--primary-color) !important;
}

[data-theme="dark"] .brand-story {
    background: #121212 !important;
}

[data-theme="dark"] .about-stat-card {
    background: #1a1a1a !important;
}

[data-theme="dark"] section .text-dark:not(.btn):not(.badge) {
    color: #e0e0e0 !important;
}

[data-theme="dark"] .card.border-0.shadow-sm {
    background: #1e1e1e !important;
}
[data-theme="dark"] .card.border-0.shadow-sm h5 {
    color: #e0e0e0 !important;
}
[data-theme="dark"] .card.border-0.shadow-sm p {
    color: #aaa !important;
}

[data-theme="dark"] .alert-success {
    background: #1a3a1a !important;
    color: #8bc34a !important;
    border-color: #2e5a2e !important;
}

[data-theme="dark"] .empty-state .text-muted {
    color: #888 !important;
}

[data-theme="dark"] .review-star {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .premium-toast .text-muted {
    color: #888 !important;
}

[data-theme="dark"] .about-marquee-wrap {
    background: #1a1a1a !important;
}
[data-theme="dark"] .about-marquee-item {
    color: #ccc !important;
}

[data-theme="dark"] #aboutScrollProgress {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark)) !important;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: #1a1a1a !important;
}
[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #444 !important;
}
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: #666 !important;
}

[data-theme="dark"] .galeri-stats-section {
    background: #161616 !important;
}

[data-theme="dark"] .galeri-filter-btn {
    background: #2a2a2a !important;
    color: #aaa !important;
}
[data-theme="dark"] .galeri-filter-btn.active,
[data-theme="dark"] .galeri-filter-btn:hover {
    background: var(--primary-color) !important;
    color: #111 !important;
}

[data-theme="dark"] .catalog-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%), url('../img/hero-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

[data-theme="dark"] .catalog-breadcrumb a {
    color: #ccc !important;
}
[data-theme="dark"] .catalog-breadcrumb span {
    color: #888 !important;
}

[data-theme="dark"] .catalog-hero-subtitle {
    color: #ccc !important;
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%), url('../img/hero-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}
[data-theme="dark"] .hero-subtitle {
    color: #ccc !important;
}

[data-theme="dark"] section[style*="background: #ffffff"],
[data-theme="dark"] section[style*="background:#ffffff"] {
    background: #121212 !important;
}

[data-theme="dark"] .about-cta {
    background: #121212 !important;
}
[data-theme="dark"] .about-cta-box {
    background: linear-gradient(135deg, #1a1a1a, #222) !important;
}
[data-theme="dark"] .about-cta-box p {
    color: #ccc !important;
}

[data-theme="dark"] .about-location-card {
    background: #1e1e1e !important;
}

[data-theme="dark"] .galeri-lightbox-overlay {
    background: rgba(0,0,0,0.95) !important;
}

[data-theme="dark"] .galeri-img-wrapper.loading {
    background: #2a2a2a !important;
}
[data-theme="dark"] .galeri-timeline-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(251, 192, 45, 0.25) !important;
}
[data-theme="dark"] .galeri-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5) !important;
}
[data-theme="dark"] .galeri-card:hover img {
    filter: brightness(0.6) !important;
}
[data-theme="dark"] .galeri-lightbox img {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .total-box.bg-dark {
    background: #2a2a2a !important;
}

[data-theme="dark"] a.text-decoration-none.text-dark:not(.btn):not(.badge) {
    color: #ccc !important;
}
[data-theme="dark"] a.text-decoration-none.text-dark:not(.btn):not(.badge):hover {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .table {
    color: #e0e0e0 !important;
}
[data-theme="dark"] .table-striped > tbody > tr:nth-of-type(odd) {
    background: rgba(255,255,255,0.03) !important;
}

[data-theme="dark"] input[type="number"].form-control {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
}

[data-theme="dark"] .btn-light {
    background: #333 !important;
    color: #e0e0e0 !important;
    border-color: #444 !important;
}
[data-theme="dark"] .btn-light:hover {
    background: #444 !important;
}

[data-theme="dark"] .list-group-item {
    background: #1e1e1e !important;
    color: #e0e0e0 !important;
    border-color: rgba(255,255,255,0.08) !important;
}

[data-theme="dark"] .about-story-tabs {
    background: #2a2a2a !important;
}

[data-theme="dark"] .about-pillars {
    background: transparent !important;
}

[data-theme="dark"] .bg-dark.text-warning.rounded-circle.d-flex {
    background: #333 !important;
}

/* === About page dark mode refinement === */
[data-theme="dark"] .about-float-badge {
    background: #2a2a2a !important;
    border-color: var(--primary-color) !important;
}
[data-theme="dark"] .about-brand-img {
    border-color: #333 !important;
}
[data-theme="dark"] .about-story-tab {
    border-color: #444 !important;
}
[data-theme="dark"] .about-pillar {
    border-color: #444 !important;
}
[data-theme="dark"] .about-pillar.active {
    border-color: var(--primary-color) !important;
}
[data-theme="dark"] .about-year-btn {
    border-color: #444 !important;
}
[data-theme="dark"] .about-year-btn.active,
[data-theme="dark"] .about-year-btn:hover {
    border-color: var(--primary-color) !important;
}
[data-theme="dark"] .about-history-progress {
    background: #2a2a2a !important;
}
[data-theme="dark"] .about-vm-switch {
    background: #1e1e1e !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] .about-lead {
    color: #e0e0e0 !important;
}
[data-theme="dark"] .about-vm-showcase h3 {
    color: #f0f0f0 !important;
}
[data-theme="dark"] .about-vm-showcase p:not(.text-muted):not(.text-white-50) {
    color: #ccc !important;
}
[data-theme="dark"] .history-detail-tag {
    color: var(--primary-color) !important;
}