:root {
    --primary: #00f0ff;
    --primary-dark: #00c4d4;
    --primary-glow: rgba(0, 240, 255, 0.45);
    --secondary: #a855f7;
    --secondary-glow: rgba(168, 85, 247, 0.4);
    --accent: #ff2d95;
    --dark: #050510;
    --dark-2: #0a0a1a;
    --dark-3: #12122a;
    --card-bg: rgba(18, 18, 42, 0.7);
    --gray: #b0bccf;
    --light: #e8eef6;
    --success: #00ff9d;
    --warning: #fbbf24;
    --danger: #ff3366;
    --gradient: linear-gradient(135deg, #00f0ff 0%, #a855f7 50%, #ff2d95 100%);
    --gradient-2: linear-gradient(135deg, #00c4d4 0%, #7c3aed 100%);
    --gradient-neon: linear-gradient(90deg, #00f0ff, #a855f7, #ff2d95, #00f0ff);
    --shadow: 0 0 30px rgba(0, 240, 255, 0.08);
    --shadow-lg: 0 0 50px rgba(0, 240, 255, 0.15);
    --radius: 18px;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--light);
    background: var(--dark);
    line-height: 1.6;
    padding-top: 76px;
    overflow-x: hidden;
}

/* Animated background grid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

main {
    position: relative;
    z-index: 1;
}

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(5, 5, 16, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.35s ease;
}

.navbar-brand {
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.navbar-brand i {
    -webkit-text-fill-color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.navbar .nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem !important;
    color: rgba(226, 232, 240, 0.75) !important;
    transition: all 0.25s;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-glow);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
    text-shadow: 0 0 12px var(--primary-glow);
}

.navbar .btn-primary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 0 15px var(--primary-glow), inset 0 0 15px rgba(0, 240, 255, 0.05);
    transition: all 0.3s;
}

.navbar .btn-primary:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 25px var(--primary-glow), 0 0 50px var(--primary-glow);
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: rgba(0, 240, 255, 0.4);
}

.navbar-toggler-icon {
    filter: invert(1) brightness(2);
}

/* ========== HERO ========== */
.hero {
    background: transparent;
    color: #fff;
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 65%);
    border-radius: 50%;
    animation: pulseGlow 8s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

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

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.12;
    margin-bottom: 1.3rem;
    letter-spacing: -1.5px;
}

.hero h1 span {
    background: var(--gradient-neon);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonFlow 4s linear infinite;
}

@keyframes neonFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.hero .lead {
    font-size: 1.15rem;
    color: rgba(226, 232, 240, 0.7);
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.35);
    color: var(--primary);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.15); }
    50% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.35); }
}

.btn-hero {
    background: var(--gradient);
    background-size: 200% 100%;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.35s;
    box-shadow: 0 0 30px var(--primary-glow);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 45px var(--primary-glow), 0 0 80px var(--secondary-glow);
    color: #fff;
}

.btn-outline-hero {
    border: 1.5px solid rgba(0, 240, 255, 0.5);
    color: var(--primary);
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 50px;
    background: transparent;
    transition: all 0.35s;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.btn-outline-hero:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 3.2rem;
}

.hero-stats .stat h3 {
    font-size: 1.9rem;
    margin-bottom: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero-stats .stat p {
    color: rgba(226, 232, 240, 0.55);
    font-size: 0.88rem;
    margin: 0;
}

/* Floating orb in hero */
.hero-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.25), rgba(168, 85, 247, 0.15), transparent 70%);
    filter: blur(2px);
    animation: floatOrb 8s ease-in-out infinite;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-orb::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.3);
    animation: spinSlow 12s linear infinite;
}

.hero-orb::after {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px dashed rgba(168, 85, 247, 0.4);
    animation: spinSlow 18s linear infinite reverse;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-55%) translateX(15px); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== SECTIONS ========== */
.section {
    padding: 90px 0;
    position: relative;
}

.section.bg-light {
    background: rgba(10, 10, 26, 0.6) !important;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title .badge-section {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
    color: #fff;
}

.section-title p {
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
}

/* ========== PRODUCT CARDS ========== */
.product-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 240, 255, 0.4), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

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

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.2), 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 240, 255, 0.25);
}

.product-card .card-img-wrap {
    position: relative;
    height: 200px;
    background: linear-gradient(145deg, rgba(0, 240, 255, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card .card-img-wrap::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.product-card .card-img-wrap i {
    font-size: 4.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px var(--primary-glow));
    transition: transform 0.4s;
}

.product-card:hover .card-img-wrap i {
    transform: scale(1.15) rotate(5deg);
}

.product-card .badge-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(5, 5, 16, 0.85);
    color: var(--primary);
    font-size: 0.72rem;
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(0, 240, 255, 0.3);
    letter-spacing: 0.3px;
    z-index: 2;
}

.product-card .badge-disc {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #ff2d95, #ff6b35);
    color: #fff;
    font-size: 0.72rem;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 45, 149, 0.5);
    z-index: 2;
}

.product-card .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    font-size: 1.12rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #fff;
}

.product-card .card-text {
    color: var(--gray);
    font-size: 0.88rem;
    flex: 1;
    margin-bottom: 1rem;
}

.product-card .price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 1rem;
}

.product-card .price {
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card .price-old {
    font-size: 0.92rem;
    color: var(--gray);
    text-decoration: line-through;
    opacity: 0.7;
}

.product-card .btn-buy {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: var(--primary);
    font-weight: 600;
    border-radius: 12px;
    padding: 11px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card .btn-buy:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-2px);
}

/* ========== FEATURES ========== */
.feature-box {
    text-align: center;
    padding: 2.2rem 1.5rem;
    border-radius: var(--radius);
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    height: 100%;
    transition: all 0.35s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.35s;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.12);
    transform: translateY(-6px);
}

.feature-box .icon {
    width: 68px;
    height: 68px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.3rem;
    font-size: 1.7rem;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    transition: all 0.35s;
}

.feature-box:hover .icon {
    background: rgba(0, 240, 255, 0.15);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: scale(1.08);
}

.feature-box h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-box p {
    color: var(--gray);
    font-size: 0.88rem;
    margin: 0;
}

/* ========== CTA ========== */
.cta-section {
    background: transparent;
    color: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    color: rgba(226, 232, 240, 0.65);
    max-width: 500px;
}

/* ========== PRODUCT DETAIL ========== */
.product-detail-img {
    background: linear-gradient(145deg, rgba(0, 240, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: var(--radius);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.product-detail-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.15), transparent 60%);
}

.product-detail-img i {
    font-size: 7rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    position: relative;
    z-index: 1;
    animation: floatIcon 4s ease-in-out infinite;
}

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

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 9px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light);
}

.feature-list li i {
    color: var(--success);
    font-size: 1.15rem;
    filter: drop-shadow(0 0 6px rgba(0, 255, 157, 0.5));
}

/* ========== FORMS ========== */
.form-control, .form-select {
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    padding: 13px 16px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    transition: all 0.3s;
}

.form-control::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15), 0 0 20px rgba(0, 240, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.form-label {
    color: var(--light);
}

.btn-primary {
    background: var(--gradient);
    background-size: 200% 100%;
    border: none;
    font-weight: 700;
    border-radius: 12px;
    padding: 13px 28px;
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: all 0.3s;
    animation: gradientShift 4s ease infinite;
}

.btn-primary:hover {
    box-shadow: 0 0 35px var(--primary-glow), 0 0 60px var(--secondary-glow);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-primary {
    border: 1.5px solid rgba(0, 240, 255, 0.5);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    border-radius: 50px;
}

.btn-outline-primary:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-success {
    background: linear-gradient(135deg, #00ff9d, #00c97a);
    border: none;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.btn-success:hover {
    box-shadow: 0 0 35px rgba(0, 255, 157, 0.5);
    transform: translateY(-2px);
}

/* Card forms */
.card {
    background: var(--card-bg) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(16px);
}

.card .card-body {
    color: var(--light);
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(5, 5, 16, 0.95);
    color: #fff;
    padding: 70px 0 35px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer h5, .footer h6 {
    color: #fff;
}

.footer .text-muted {
    color: rgba(148, 163, 184, 0.7) !important;
}

.footer-links a,
.footer-contact a {
    color: rgba(148, 163, 184, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 9px;
}

.social-links a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-4px);
}

hr.border-secondary {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5), 0 6px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.35s;
    text-decoration: none;
    animation: waPulse 2.5s ease-in-out infinite;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.4), 0 6px 25px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(37, 211, 102, 0.7), 0 6px 25px rgba(0, 0, 0, 0.3); }
}

.wa-float:hover {
    transform: scale(1.12);
    color: #fff;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: transparent;
    color: #fff;
    padding: 70px 0 55px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    transform: translateX(-50%);
}

.page-header h1 {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.page-header p {
    color: rgba(226, 232, 240, 0.6);
    position: relative;
}

.breadcrumb-item a {
    color: rgba(0, 240, 255, 0.7) !important;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ========== ALERT ========== */
.alert-custom {
    border-radius: 14px;
    border: 1px solid;
}

.alert-success {
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.3);
    color: var(--success);
}

.alert-danger {
    background: rgba(255, 51, 102, 0.1);
    border-color: rgba(255, 51, 102, 0.3);
    color: var(--danger);
}

/* Badge filter buttons */
.btn-sm.rounded-pill {
    border-radius: 50px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Text primary override */
.text-primary {
    color: var(--primary) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-stats {
        gap: 28px;
    }
    .hero-orb {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .section {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 1.9rem;
    }
    .wa-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
        font-size: 1.55rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Scrollbar futuristic */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Selection */
::selection {
    background: rgba(0, 240, 255, 0.3);
    color: #fff;
}

/* ========== TEXT READABILITY FIX ========== */
/* Bootstrap .text-muted terlalu pudar di dark theme */
.text-muted {
    color: #c2cfe0 !important;
    opacity: 1 !important;
}

/* Paragraph & body text lebih terang & jelas */
.section p,
.col-lg-6 > p,
p.text-muted {
    color: #d4dce8 !important;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Caption / label kecil */
.text-muted.small,
p.small,
.small.text-muted {
    color: #aab8cc !important;
    font-size: 0.9rem !important;
}

/* List items */
ul.text-muted,
ul.text-muted li,
.feature-box ul,
.feature-box ul li {
    color: #c8d4e4 !important;
}

/* Feature box & product card text */
.feature-box p,
.product-card .card-text,
.section-title p {
    color: #b8c5d6 !important;
}

/* Heading tetap putih terang */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/* Visi / Misi card */
.feature-box .text-muted {
    color: #c8d4e4 !important;
}

/* Footer links tetap terbaca */
.footer-links a,
.footer-contact a,
.footer .text-muted {
    color: #a8b8cc !important;
}

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