::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #22c55e, #0ea5e9);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, #16a34a, #0284c7);
}
.glass {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass-dark {
background: rgba(15, 23, 42, 0.85);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-card {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.5);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.gradient-mesh {
background:
radial-gradient(at 30% 20%, rgba(34, 197, 94, 0.12) 0px, transparent 50%),
radial-gradient(at 70% 10%, rgba(14, 165, 233, 0.12) 0px, transparent 50%),
radial-gradient(at 10% 60%, rgba(249, 115, 22, 0.1) 0px, transparent 50%),
radial-gradient(at 80% 70%, rgba(34, 197, 94, 0.08) 0px, transparent 50%),
radial-gradient(at 20% 90%, rgba(14, 165, 233, 0.1) 0px, transparent 50%);
}
.gradient-text-green {
background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.gradient-text-sky {
background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.gradient-text-orange {
background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.gradient-text-combo {
background: linear-gradient(135deg, #16a34a 0%, #0ea5e9 50%, #f97316 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.gradient-bg-green {
background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
}
.gradient-bg-sky {
background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
}
.gradient-bg-orange {
background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
}
.gradient-bg-combo {
background: linear-gradient(135deg, #16a34a 0%, #0ea5e9 50%, #f97316 100%);
background-size: 300% 300%;
animation: gradient-shift 8s ease infinite;
}
.gradient-border {
position: relative;
background: white;
border-radius: 1rem;
}
.gradient-border::before {
content: '';
position: absolute;
inset: -2px;
background: linear-gradient(135deg, #22c55e, #0ea5e9, #f97316);
border-radius: 1rem;
z-index: -1;
opacity: 0.6;
}
.phone-frame {
border: 8px solid #1e293b;
border-radius: 32px;
overflow: hidden;
position: relative;
background: #fff;
box-shadow:
0 25px 50px -12px rgba(0, 0, 0, 0.25),
0 0 0 2px rgba(255, 255, 255, 0.1);
z-index: 10;
}
.phone-notch {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 24px;
background: #1e293b;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
z-index: 20;
}
.aspect-w-16 {
position: relative;
padding-bottom: 56.25%;
}
.aspect-w-16 iframe,
.aspect-w-16 video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.blob {
position: absolute;
border-radius: 50%;
filter: blur(60px);
opacity: 0.5;
animation: float 8s ease-in-out infinite;
}
.card-hover {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.gradient-shadow-green {
box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}
.gradient-shadow-sky {
box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);
}
.gradient-shadow-orange {
box-shadow: 0 10px 40px rgba(249, 115, 22, 0.3);
}
.team-member-hidden {
display: none;
}
.team-member-visible {
animation: fade-in 0.5s ease-out forwards;
}
.load-more-btn {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.load-more-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

/* Lightbox Modal Styles - Fixed */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}
.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #000;
}
.lightbox-caption {
    margin-top: 1rem;
    color: #131419;
    text-align: center;
    font-size: 1.1rem;
    background: rgb(215 215 215 / 47%);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 600px;
    line-height: 1.5;
    position: absolute;
    transition: all 0.3s ease;
    cursor: pointer;
}
.lightbox-caption:hover {
    background: rgb(215 215 215 / 47%);
}
.lightbox-caption-text {
    display: inline;
    transition: all 0.3s ease;
}
.lightbox-caption.collapsed .lightbox-caption-text {
    display: inline;
}
.lightbox-caption.expanded .lightbox-caption-text {
    display: block;
    max-height: 300px;
    overflow-y: auto;
}
.lightbox-caption-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4ade80;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.lightbox-caption-toggle:hover {
    background: rgba(34, 197, 94, 0.3);
    transform: scale(1.05);
}
.lightbox-caption-toggle .material-icons-round {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.lightbox-caption.expanded .lightbox-caption-toggle .material-icons-round {
    transform: rotate(180deg);
}
.lightbox-caption-hidden {
    display: none;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
}
.lightbox-close:hover {
    background: #ef4444;
    transform: rotate(90deg);
}


@media (max-width: 640px) {
    .site-title-container {
        display: none;
    }
}

/* Sembunyikan judul situs dan subjudul pada layar dengan lebar 300px (khusus) */
@media (max-width: 300px) {
    .site-title-container {
        display: none;
    }
}
