/* --- CSS VARIABLES & THEME --- */
:root {
    /* Colors (Dark Mode Default) */
    --bg-main: #111111;
    --bg-secondary: #1a1a1a;
    --bg-card: rgba(30, 30, 30, 0.6);
    --bg-card-hover: rgba(40, 40, 40, 0.8);

    --accent-main: #ffffff;
    --accent-hover: #cccccc;
    --accent-light: rgba(255, 255, 255, 0.1);

    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --gradient-accent: linear-gradient(135deg, #ffffff, #cccccc);

    /* Typography */
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-max: 1200px;
    --section-spacing: 100px;
}


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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Fix iOS Background Fullpage */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('bg-blackhole.jpg');
    background-size: cover;
    background-position: center;
    z-index: -10;
    pointer-events: none;
    filter: grayscale(100%);
    /* Removes purple tint to make it normal */
    transform: scale(1.25); /* Zoom in background */
}

[data-theme="light"] body::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('hero-bg-2.jpg');
}

img {
    max-width: 100%;
    display: block;
}

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

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 400;
    /* Anton only has 400 weight but is very bold */
    letter-spacing: 1px;
}

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

.accent {
    color: var(--accent-main);
}

/* --- BUTTONS --- */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    top: 0;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(10px, 2vw, 40px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: clamp(10px, 2vw, 32px);
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-main);
    transition: var(--transition-normal);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 120px 20px 60px;
    gap: 60px;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--accent-light);
    color: var(--accent-main);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-main);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-height: 600px;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.accent-icon {
    color: var(--accent-main);
}

.top-left {
    top: 40px;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.bottom-right {
    bottom: 60px;
    right: -20px;
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

/* --- SECTIONS --- */
.section {
    padding: var(--section-spacing) 20px;
    max-width: var(--container-max);
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 87, 34, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    color: var(--accent-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--accent-main);
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-desc {
    color: var(--text-secondary);
}

/* --- PORTFOLIO / KATALOG --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

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

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-bg {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0.8;
    transition: var(--transition-normal);
}

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

.portfolio-overlay span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

/* --- CTA SECTION --- */
.cta-container {
    background: linear-gradient(to right, var(--bg-card), var(--bg-secondary));
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent-main);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
}

.cta-content {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
}

.cta-actions {
    position: relative;
    z-index: 1;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-secondary);
    padding: 80px 20px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.footer-links a,
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-main);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* --- ANIMATIONS (Reveal on Scroll) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Hero Specific Animations so they always load */
.hero-fade-in {
    animation: fadeIn 1.5s ease-out forwards;
}

.hero-fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-content {
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floating-badge {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }
}

/* --- NEW "BASICS" OVERHAUL STYLES --- */

/* Announcement Bar */
.announcement-bar {
    background: #e8e3d8;
    /* Light beige/cream color from reference */
    color: #000;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: var(--font-body);
    z-index: 1001;
    position: relative;
}

/* Dark Navbar override */
.navbar.dark-nav {
    background: #000;
    position: sticky;
    top: 0;
    border-bottom: none;
}

.navbar.dark-nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.dark-links a {
    color: #fff !important;
}

.dark-links a:hover {
    color: var(--accent-main) !important;
}

/* Fullscreen Hero */
.hero-fullscreen {
    min-height: 85vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%);
    z-index: 1;
}

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

.badge-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    margin: 0 auto 20px !important;
}

.hero-title-large {
    font-size: clamp(3rem, 8vw, 6rem);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.btn-square {
    border-radius: 0 !important;
    padding: 15px 40px !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Marquee */
.marquee-container {
    background: #000;
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #222;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Welcome Section */
.welcome-section {
    background: transparent;
    text-align: center;
    padding: 80px 20px 40px;
}

.welcome-container h2 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.welcome-container p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Product Grid / Bestsellers */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.product-card-minimal {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card-minimal:hover {
    transform: translateY(-5px);
}

.product-image-box {
    background: transparent;
    border-radius: 15px;
    padding: 0;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.product-card-minimal:hover .product-image-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #aaa;
    width: 20px;
    height: 20px;
    transition: color 0.2s ease;
}

.wishlist-icon:hover {
    color: var(--accent-main);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-minimal:hover .product-img {
    transform: scale(1.05);
}

.product-card-minimal h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-card-minimal p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: var(--container-max);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title-main {
    color: var(--text-primary);
    font-size: clamp(3.5rem, 12vw, 9rem);
    letter-spacing: clamp(2px, 1vw, 10px);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2);
    /* Efek glow tulisan */
}

.hero-s-logo {
    height: 1.25em;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    margin-right: -0.05em;
    margin-left: -0.4em;
    transform: scale(1.4) translateY(-0.05em);
}

.hero-subtitle-main {
    color: #e5e7eb;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: clamp(1px, 1vw, 2px);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: var(--font-body);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-info-box {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    margin-bottom: 40px;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    padding: 15px 35px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-fast);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}



.hero-quote {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 300;
    line-height: 1.4;
    text-align: right;
    max-width: 400px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 4%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .hero-text-side {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title-main {
        text-align: left;
        justify-content: flex-start;
    }

    .hero-subtitle-main {
        text-align: left;
        margin-left: 0;
        margin-right: auto;
    }

    .hero-info-box {
        text-align: left;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .hero-btn-container {
        width: auto;
        justify-content: flex-end;
        margin-left: auto;
    }
}

.hero-btn-container {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-quote {
        text-align: center;
        margin-top: 20px;
    }
}



/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: bounce-subtle 3s infinite ease-in-out;
}

.floating-wa:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7);
    color: white;
}

/* --- PREMIUM FEATURES --- */

/* 1. Custom Cursor */
body {
    cursor: none;
}

a,
button,
input,
select,
textarea,
.sidebar-link,
.floating-wa,
.hero-s-logo {
    cursor: none !important;
}

.cursor-dot {
    width: 28px;
    height: 28px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    filter: brightness(0) invert(1);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999999;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cursor-outline {
    display: none;
}

/* Cursor Hover States */
.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.6);
    background-color: transparent;
    border: none;
}

.cursor-outline.hover {
    display: none;
}

/* 2. Cinematic Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.preloader-logo {
    height: 250px;
    filter: brightness(0) invert(1);
    animation: pulse-preloader 1.5s infinite;
}

@keyframes pulse-preloader {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

@keyframes bounce-subtle {

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

    50% {
        transform: translateY(-12px);
    }
}

.sidebar-menu-item:hover {
    color: var(--accent-main);
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.03);
}

/* --- DARK MODE (Black Hole Theme) --- */
/* (Background is already handled correctly by body::before which is fixed) */



.sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    transition: left 0.3s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 2px;
}



/* --- PREMIUM MOBILE OPTIMIZATIONS --- */
@media (pointer: coarse) {

    /* Sembunyikan custom cursor di layar sentuh */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

@media (max-width: 768px) {

    /* Sembunyikan cursor secara paksa di mobile */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    /* Navbar proporsional */
    .nav-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1rem !important;
        letter-spacing: 3px !important;
    }

    .marquee-content {
        font-size: 0.55rem !important;
    }

    /* Hero section */
    .hero-title-main {
        font-size: clamp(3.5rem, 16vw, 5.5rem) !important;
        line-height: 1.1;
        margin-bottom: 10px;
        letter-spacing: 3px !important;
    }

    .hero-s-logo {
        transform: scale(1.4) translateY(-0.05em) !important;
        margin-left: -0.2em !important;
        margin-right: 0.05em !important;
    }

    .hero-subtitle-main {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 25px !important;
    }

    .hero-fullscreen {
        min-height: 80vh !important;
        padding-top: 40px;
        padding-bottom: 80px !important;
        overflow-x: hidden;
        width: 100%;
        align-items: flex-start !important;
    }

    /* Box Lokasi dibuat bersebelahan paksa agar rapi */
    .hero-info-box {
        padding: 15px 10px !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        width: 90% !important;
        max-width: 400px;
    }

    .hero-info-box>div:nth-child(2) {
        width: 1px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.2) !important;
    }

    .hero-info-box h3 {
        font-size: 0.7rem !important;
        margin-bottom: 3px !important;
    }

    .hero-info-box p {
        font-size: 0.6rem !important;
    }

    .hero-info-box i {
        width: 18px !important;
        height: 18px !important;
        margin-bottom: 5px !important;
    }

    /* Grid layout: 2 Kolom untuk menghemat scroll */
    .services-grid,
    .catalog-grid,
    .product-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Padding & Size Adjustments */
    .section-padding {
        padding: 45px 15px !important;
    }

    .catalog-item img {
        height: 180px;
    }

    .service-card {
        padding: 20px !important;
    }

    .service-card i {
        width: 32px !important;
        height: 32px !important;
        margin-bottom: 15px !important;
    }

    .service-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }

    .service-card p {
        font-size: 0.8rem !important;
    }

    /* Footer stacking */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px !important;
    }

    .footer-content>div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .logo {
        justify-content: center !important;
        margin-bottom: 5px;
    }

    /* Bestseller adjustments */
    .product-card-minimal h4 {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }

    .product-card-minimal p {
        font-size: 0.75rem !important;
    }

    .wishlist-icon {
        top: 10px;
        right: 10px;
        width: 16px;
        height: 16px;
    }

    /* Timeline Pemesanan Mobile Fix */
    .timeline-line {
        left: 20px !important;
    }

    .timeline-item {
        width: 100% !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }

    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 0 !important;
        text-align: left !important;
    }

    .timeline-dot {
        left: 20px !important;
        transform: translateX(-50%) !important;
    }

    .timeline-item:nth-child(even) .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot {
        left: 20px !important;
        right: auto !important;
    }

    .timeline-content {
        width: calc(100vw - 80px) !important;
    }
}

/* --- PREMIUM FEATURES STYLES --- */

/* Animated Liquid Background (CSS Murni) */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(17, 17, 17, 0.5), rgba(42, 42, 42, 0.3), rgba(0, 0, 0, 0.6), rgba(61, 61, 61, 0.4));
    background-size: 400% 400%;
    animation: inkLiquid 15s ease infinite;
    z-index: 0;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%);
    z-index: 1;
}

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

/* 3D Tilt Hover */
.tilt-card {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card:hover {
    z-index: 10;
}

/* Marquee / Sabuk Berjalan */
.marquee-section {
    padding: 30px 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.client-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.client-marquee-content {
    display: flex;
    gap: 50px;
    animation: scroll-marquee 20s linear infinite;
}

.client-marquee-content span {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Timeline Pemesanan (Alur Pemesanan Keren) */
.timeline-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-main) 100%);
    position: relative;
}

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

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, var(--accent-main) 50%, rgba(255, 255, 255, 0.05) 100%);
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--accent-main);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 50px;
    perspective: 1000px;
}

.timeline-item:nth-child(even) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(odd) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 50px;
    height: 50px;
    background: #111;
    border: 2px solid var(--accent-main);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--accent-main);
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.6);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-main);
    color: #fff;
    transform: scale(1.1) rotate(360deg);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: -25px;
}

.timeline-item:nth-child(odd) .timeline-dot {
    left: -25px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    border-color: rgba(255, 87, 34, 0.5);
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.15);
}

.timeline-item:hover .timeline-content::before {
    transform: translateX(100%);
}

.timeline-content h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Custom Range Slider */
.custom-slider {
    -webkit-appearance: none;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--accent-main);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
    transition: transform 0.2s;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* === STATISTIK COUNTER === */
.stat-item {
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 87, 34, 0.4);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === TESTIMONI CAROUSEL === */
.testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
    cursor: grab;
}

.testimonial-carousel-wrapper:active {
    cursor: grabbing;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 20px;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testi-card {
    min-width: 320px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    user-select: none;
}

.testi-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.testi-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testi-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    color: var(--accent-main);
    font-size: 0.9rem;
    font-weight: 600;
}

.carousel-hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.7;
}

/* === FAQ ACCORDION === */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active {
    border-color: var(--accent-main);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-main);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
    opacity: 1;
}

@media (max-width: 768px) {
    .nav-btn {
        display: none !important;
    }

    /* Timeline Mobile */
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
    }

    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot {
        left: -5px;
        right: auto;
    }
}

/* =======================================
   EFEK VISUAL PREMIUM TAMBAHAN
   ======================================= */





/* 3. Floating Particles Canvas */
.hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}



/* 5. Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-down-indicator span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
}

.scroll-down-indicator .scroll-arrow {
    color: var(--text-secondary);
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(8px);
    }

    60% {
        transform: translateY(4px);
    }
}

/* 6. CTA Button Glow Pulse */
.btn-whatsapp {
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #25D366, #128C7E, #25D366, #128C7E);
    border-radius: inherit;
    z-index: -1;
    animation: glow-pulse 2s ease-in-out infinite;
    opacity: 0;
}

.btn-whatsapp:hover::after {
    opacity: 1;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0;
        filter: blur(8px);
    }

    50% {
        opacity: 0.8;
        filter: blur(15px);
    }
}

/* 7. Service Card Icon Glow on Hover */
.service-card:hover .service-icon {
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.4), 0 0 50px rgba(255, 87, 34, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}



/* 9. Navbar Glass Effect Enhancement */
.navbar.scrolled {
    background: rgba(17, 17, 17, 0.85) !important;
    backdrop-filter: blur(20px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.5) !important;
}

/* 2. Lazy Loading */
.lazy-img {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.lazy-img.loaded {
    opacity: 1;
    transform: scale(1);
}

/* 3. Galeri Portofolio */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.galeri-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: #ffffff;
    /* White background for clean look */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Don't crop the T-shirts */
    padding: 10px;
    /* Add padding so it looks neat */
    transition: transform 0.5s ease;
}

.galeri-item:hover img {
    transform: scale(1.1);
}

.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeri-overlay i {
    color: white;
    width: 32px;
    height: 32px;
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.galeri-item:hover .galeri-overlay i {
    transform: scale(1);
}

/* 4. Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* 5. WhatsApp Chat Bubble Popup */
.wa-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.wa-chat-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-chat-popup.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.wa-chat-header {
    background: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    margin-left: auto;
    cursor: pointer;
}

.wa-chat-body {
    padding: 20px;
    background: #E5DDD5;
    min-height: 120px;
}

.wa-chat-bubble {
    background: white;
    padding: 12px 15px;
    border-radius: 0 15px 15px 15px;
    font-size: 0.85rem;
    color: #333;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    line-height: 1.4;
}

.wa-chat-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border-width: 0 10px 10px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.wa-chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f0f0f0;
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.wa-chat-input:hover {
    background: #e0e0e0;
}

/* 6. Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #666;
    /* Abu-abu agak gelap agar terlihat */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-main);
    transform: translateY(-5px) !important;
}

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

/* Mobile adjustments for new effects */
@media (max-width: 768px) {
    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scroll-down-indicator {
        bottom: 65px;
    }

    .scroll-down-indicator span {
        font-size: 0.55rem;
        letter-spacing: 3px;
    }

    .wa-chat-popup {
        width: 280px;
        bottom: 60px;
    }

    .wa-chat-container {
        bottom: 20px;
        right: 20px;
    }

    .floating-wa {
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}