/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #0f0f2a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --gradient-1: linear-gradient(135deg, #7c3aed, #06b6d4);
    --gradient-2: linear-gradient(135deg, #ec4899, #7c3aed);
    --gradient-3: linear-gradient(135deg, #06b6d4, #ec4899);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.3);
    --radius: 16px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-1);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s linear;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--transition), background 0.3s;
}

.cursor-outline {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(6, 182, 212, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--transition), width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(2);
    background: var(--accent-pink);
}

.cursor-outline.hover {
    width: 50px;
    height: 50px;
    border-color: rgba(236, 72, 153, 0.5);
}

@media (max-width: 768px) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--accent-purple);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 20px !important;
    background: var(--gradient-1);
    border-radius: 8px;
    color: white !important;
}

.nav-cta::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.4s var(--transition);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0533 25%, #0a1628 50%, #0a0a1a 75%, #1a0533 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.typewriter {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-cursor {
    color: var(--accent-cyan);
    animation: blink 1s step-end infinite;
    font-weight: 300;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

.btn-outline {
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ===== LOAD ANIMATIONS ===== */
.load-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.load-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
    opacity: 0;
}

.feature-card.visible {
    opacity: 1;
}

.slide-in-left {
    transform: translateX(-60px);
}

.slide-in-right {
    transform: translateX(60px);
}

.slide-in-left.visible,
.slide-in-right.visible {
    transform: translateX(0);
}

.feature-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s var(--transition);
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 120px 0;
    position: relative;
    background: var(--bg-secondary);
}

.wave-bg {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bg svg {
    width: 100%;
    height: 120px;
}

.wave {
    fill: var(--bg-primary);
}

.wave-1 {
    opacity: 0.7;
    animation: waveMove 8s ease-in-out infinite;
}

.wave-2 {
    opacity: 0.4;
    animation: waveMove 12s ease-in-out infinite reverse;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.stat-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8;
}

.stat-circle-fill {
    fill: none;
    stroke: url(#gradient) var(--accent-purple);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s var(--transition);
}

.stat-circle.animated .stat-circle-fill {
    stroke-dashoffset: var(--target-offset);
}

.stat-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: all 0.6s var(--transition);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.gallery-item-1 {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    grid-row: span 2;
}

.gallery-item-2 {
    background: linear-gradient(135deg, #06b6d4, #10b981);
}

.gallery-item-3 {
    background: linear-gradient(135deg, #ec4899, #f59e0b);
}

.gallery-item-4 {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.gallery-item-5 {
    background: linear-gradient(135deg, #14b8a6, #3b82f6);
    grid-column: span 2;
}

.gallery-item-6 {
    background: linear-gradient(135deg, #f43f5e, #7c3aed);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-1 {
        grid-row: span 1;
        min-height: 200px;
    }

    .gallery-item-5 {
        grid-column: span 1;
    }

    .gallery-item {
        min-height: 200px;
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
    line-height: 1.7;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    transform: translateY(-4px); /* Ubah dari efek geser kanan ke geser atas agar bagus saat di tengah */
}

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

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--transition);
}

.social-icon:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
    animation: iconBounce 0.5s var(--transition);
}

@keyframes iconBounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
    50% { transform: translateY(-4px); }
    70% { transform: translateY(-6px); }
    100% { transform: translateY(-4px); }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.back-to-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    opacity: 0;
    transform: translateY(10px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) rotate(360deg);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(124, 58, 237, 0.4);
    color: white;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}
 
/* ===== FLOATING WHATSAPP BUTTON ===== */ 
.floating-wa { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    width: 60px; 
    height: 60px; 
    background-color: #25D366; 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); 
    z-index: 1000; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    animation: pulse 2s infinite; 
} 
.floating-wa svg { 
    width: 35px; 
    height: 35px; 
} 
.floating-wa:hover { 
    transform: scale(1.1) translateY(-5px); 
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); 
    background-color: #1EBE5D; 
} 
@keyframes pulse { 
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } 
}

/* Photo Stack Gallery */
.photo-stack {
    position: relative;
    width: 250px;
    height: 300px;
    margin: 40px auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.photo-stack:hover {
    transform: scale(1.05) translateY(-10px);
}
.stacked-photo {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--bg-card);
    border: 8px solid white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}
.photo-stack:hover .photo-3 { transform: rotate(15deg) translate(20px, 15px); }
.photo-stack:hover .photo-2 { transform: rotate(-10deg) translate(-20px, 10px); }

/* Ganti URL url(...) di bawah dengan file gambar lokal/komputer Anda */
.photo-3 { 
    transform: rotate(8deg) translate(10px, 10px); 
    z-index: 1; 
    opacity: 0.7;
    background-image: url('images/testimoni-1.jpg');
}
.photo-2 { 
    transform: rotate(-5deg) translate(-10px, 5px); 
    z-index: 2; 
    opacity: 0.9;
    background-image: url('images/testimoni-2.jpg');
}
.photo-1 { 
    transform: rotate(2deg); 
    z-index: 3; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    /* Efek Kaca (Glassmorphism) transparan tembus pandang */
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(6, 182, 212, 0.5));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 4px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    text-align: center;
    line-height: 1.3;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    max-width: 90%; 
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lightbox-close {
    position: absolute; 
    top: 20px; 
    right: 30px;
    color: #fff; 
    font-size: 40px; 
    font-weight: bold; 
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover { color: var(--accent-pink); }
.lightbox-nav {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%);
    color: white; 
    font-size: 40px; 
    font-weight: bold; 
    cursor: pointer;
    padding: 16px; 
    user-select: none;
    transition: color 0.3s;
}
.lightbox-nav:hover { color: var(--accent-cyan); }
.lightbox-prev { left: 5%; }
.lightbox-next { right: 5%; }
@keyframes zoomIn { 
    from { transform: scale(0.8); opacity: 0; } 
    to { transform: scale(1); opacity: 1; } 
}

@media (max-width: 768px) {
    .lightbox-prev { left: 0px; }
    .lightbox-next { right: 0px; }
} 
