/* GLOBAL SETTINGS - NOVEMBER PROJECT 2026 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    --primary: #6366f1;
    --dark: #050505;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* BACKGROUND DECORATION */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    filter: blur(120px);
}

.glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    filter: blur(120px);
}

/* GLASSMORPHISM COMPONENT */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* TYPOGRAPHY */
.gradient-text {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(99, 102, 241, 0.5);
    transform: translateY(-3px);
}

/* FLOATING CONTACT SYSTEM */
.contact-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.contact-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-end;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.toggle-btn {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ANIMATION CLASS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Penambahan Layout untuk Produk & Visi Misi */
.grid-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #111, #222);
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    border: 1px dashed #333;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}