/* ==========================================
           ROOT VARIABLES (DEFAULT NIGHT MODE)
           ========================================== */
        :root {
            --bg-primary: #060B18;
            --bg-secondary: #0C1629;
            --bg-card: rgba(6, 11, 24, 0.75);
            --bg-glass: rgba(6, 11, 24, 0.75);
            --bg-white: #060B18;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --border-color: rgba(59, 130, 246, 0.12);
            --shadow-color: rgba(0,0,0,0.3);
            --glass-border: rgba(59, 130, 246, 0.12);
            --input-bg: rgba(255,255,255,0.03);
            --input-border: rgba(255,255,255,0.1);
            --input-text: #FFFFFF;
            --placeholder-color: #64748B;
            --card-bg: rgba(6, 11, 24, 0.75);
            --card-border: rgba(59, 130, 246, 0.12);
            --table-header-bg: #0C1629;
            --table-row-hover: rgba(255,255,255,0.02);
            --badge-bg: rgba(59,130,246,0.1);
            --badge-text: #3B82F6;
            --navy: #060B18;
            --navy-light: #0C1629;
            --navy-lighter: #162036;
            --gold: #3B82F6;
            --gold-light: #60A5FA;
            --gold-dark: #2563EB;
            --white: #FFFFFF;
            --light-gray: #F0F4F8;
            --gray: #94A3B8;
            --gray-dark: #64748B;
            --glass-bg: rgba(6, 11, 24, 0.75);
            --gradient-gold: linear-gradient(135deg, #2563EB, #3B82F6, #60A5FA);
            --sidebar-w: 270px;
        }

        /* ==========================================
           LIGHT MODE VARIABLES
           ========================================== */
        body.light-mode {
            --bg-primary: #F0F4F8;
            --bg-secondary: #FFFFFF;
            --bg-card: rgba(255, 255, 255, 0.85);
            --bg-glass: rgba(255, 255, 255, 0.85);
            --bg-white: #FFFFFF;
            --text-primary: #060B18;
            --text-secondary: #475569;
            --text-muted: #94A3B8;
            --border-color: rgba(0,0,0,0.08);
            --shadow-color: rgba(0,0,0,0.06);
            --glass-border: rgba(0,0,0,0.08);
            --input-bg: #FFFFFF;
            --input-border: #E2E8F0;
            --input-text: #060B18;
            --placeholder-color: #94A3B8;
            --card-bg: #FFFFFF;
            --card-border: #E5E7EB;
            --table-header-bg: #F1F5F9;
            --table-row-hover: #F0F4F8;
            --badge-bg: rgba(59,130,246,0.08);
            --badge-text: #2563EB;
            --navy: #F0F4F8;
            --navy-light: #FFFFFF;
            --navy-lighter: #E2E8F0;
            --gray: #475569;
            --gray-dark: #94A3B8;
            --glass-bg: rgba(255, 255, 255, 0.85);
        }

        /* ==========================================
           BASE STYLES
           ========================================== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; }
        body { 
            font-family: 'Outfit', sans-serif; 
            background-color: var(--bg-primary); 
            color: var(--text-primary); 
            overflow-x: hidden; 
            line-height: 1.7; 
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; }

        /* ==========================================
           THEME TOGGLE SWITCH
           ========================================== */
        .theme-switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
            margin: 0;
        }
        .theme-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--text-muted);
            transition: .3s;
            border-radius: 34px;
        }
        .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background: white;
            transition: .3s;
            border-radius: 50%;
        }
        input:checked + .slider {
            background: var(--gold);
        }
        input:checked + .slider:before {
            transform: translateX(20px);
        }
        .theme-toggle-wrapper {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .theme-toggle-wrapper i {
            color: var(--text-muted);
            font-size: 0.75rem;
            transition: color 0.3s;
        }

        /* ==========================================
           NAVBAR
           ========================================== */
        .navbar { 
            background: rgba(6,11,24,0.85); 
            backdrop-filter: blur(20px); 
            border-bottom: 1px solid var(--border-color); 
            padding: 12px 0; 
            transition: all 0.4s ease; 
            z-index: 1000; 
        }
        body.light-mode .navbar {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }
        .navbar.scrolled { 
            background: rgba(6,11,24,0.98); 
            padding: 8px 0; 
            box-shadow: 0 4px 30px rgba(0,0,0,0.3); 
        }
        body.light-mode .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(0,0,0,0.06);
        }
        .navbar-brand { 
            font-family: 'Cormorant Garamond', serif; 
            font-weight: 700; 
            font-size: 1.3rem; 
            background: var(--gradient-gold); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            text-decoration: none; 
        }
        .navbar-brand span { 
            -webkit-text-fill-color: var(--text-secondary); 
            font-weight: 400; 
            font-size: 0.7rem; 
            display: block; 
            letter-spacing: 3px; 
            text-transform: uppercase; 
        }
        .nav-link { 
            color: var(--gray) !important; 
            font-size: 0.85rem; 
            font-weight: 500; 
            padding: 8px 16px !important; 
            transition: color 0.3s; 
            position: relative; 
            text-decoration: none; 
        }
        .nav-link:hover, .nav-link.active { color: var(--gold) !important; }
        .nav-link::after { 
            content: ''; 
            position: absolute; 
            bottom: 0; 
            left: 16px; 
            right: 16px; 
            height: 2px; 
            background: var(--gold); 
            transform: scaleX(0); 
            transition: transform 0.3s; 
        }
        .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
        .btn-nav-cta { 
            background: var(--gradient-gold); 
            color: var(--navy) !important; 
            font-weight: 600; 
            font-size: 0.85rem; 
            padding: 8px 24px !important; 
            border-radius: 50px; 
            border: none; 
            text-decoration: none; 
        }
        .btn-nav-cta:hover { 
            transform: translateY(-2px); 
            box-shadow: 0 4px 20px rgba(59,130,246,0.4); 
            color: var(--navy) !important; 
        }
        .navbar-toggler { border: 1px solid rgba(59,130,246,0.3); padding: 4px 8px; }
        .navbar-toggler-icon { 
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(59,130,246,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); 
        }

        /* ==========================================
           HERO
           ========================================== */
        #hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
        .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
        .hero-bg canvas { width: 100%; height: 100%; display: block; }
        .hero-overlay { 
            position: absolute; 
            inset: 0; 
            background: radial-gradient(ellipse at center, rgba(6,11,24,0.6) 0%, rgba(6,11,24,0.95) 70%); 
            z-index: 1; 
            transition: background 0.3s ease;
        }
        body.light-mode .hero-overlay {
            background: radial-gradient(ellipse at center, rgba(255,255,255,0.75) 0%, rgba(248,250,252,0.92) 70%);
        }
        body.light-mode .hero-bg canvas { opacity: 0.3; }
        .hero-content { position: relative; z-index: 2; }
        .hero-badge { 
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            background: rgba(59,130,246,0.1); 
            border: 1px solid rgba(59,130,246,0.25); 
            border-radius: 50px; 
            padding: 8px 20px; 
            font-size: 0.8rem; 
            color: var(--gold); 
            font-weight: 500; 
            margin-bottom: 24px; 
        }
        body.light-mode .hero-badge {
            background: rgba(255,255,255,0.85);
            border-color: rgba(59,130,246,0.3);
            color: #2563EB;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }
        .hero-title { 
            font-size: clamp(2.5rem, 5.5vw, 4.5rem); 
            font-weight: 800; 
            line-height: 1.1; 
            margin-bottom: 12px; 
            color: var(--text-primary);
        }
        body.light-mode .hero-title { color: #060B18; }
        .hero-title .gold { 
            background: var(--gradient-gold); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
        }
        body.light-mode .hero-title .gold {
            background: linear-gradient(135deg, #2563EB, #3B82F6, #60A5FA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-tagline { 
            font-family: 'Cormorant Garamond', serif; 
            font-size: clamp(1.1rem, 2vw, 1.5rem); 
            font-weight: 400; 
            font-style: italic; 
            color: var(--gold); 
            margin-bottom: 24px; 
        }
        body.light-mode .hero-tagline { color: #2563EB; }
        .hero-desc { 
            font-size: 1.05rem; 
            color: var(--text-secondary); 
            max-width: 600px; 
            line-height: 1.8; 
            margin-bottom: 36px; 
            font-weight: 300; 
        }
        body.light-mode .hero-desc { color: #475569; }
        .btn-gold { 
            background: var(--gradient-gold); 
            color: var(--navy); 
            font-weight: 700; 
            padding: 14px 36px; 
            border-radius: 50px; 
            border: none; 
            font-size: 0.9rem; 
            transition: all 0.4s; 
            display: inline-flex; 
            align-items: center; 
            gap: 10px; 
            text-decoration: none; 
            cursor: pointer; 
        }
        .btn-gold:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 8px 30px rgba(59,130,246,0.4); 
            color: var(--navy); 
        }
        body.light-mode .btn-gold {
            background: linear-gradient(135deg, #2563EB, #3B82F6, #60A5FA);
            color: #060B18;
            box-shadow: 0 4px 16px rgba(59,130,246,0.25);
        }
        body.light-mode .btn-gold:hover {
            box-shadow: 0 8px 28px rgba(59,130,246,0.4);
        }
        .btn-outline-gold { 
            background: transparent; 
            color: var(--gold); 
            font-weight: 600; 
            padding: 14px 36px; 
            border-radius: 50px; 
            border: 1.5px solid rgba(59,130,246,0.4); 
            font-size: 0.9rem; 
            transition: all 0.4s; 
            display: inline-flex; 
            align-items: center; 
            gap: 10px; 
            text-decoration: none; 
        }
        .btn-outline-gold:hover { 
            background: rgba(59,130,246,0.1); 
            border-color: var(--gold); 
            color: var(--gold); 
        }
        body.light-mode .btn-outline-gold {
            color: #2563EB;
            border-color: rgba(59,130,246,0.4);
        }
        body.light-mode .btn-outline-gold:hover {
            background: rgba(59,130,246,0.06);
            border-color: #3B82F6;
            color: #2563EB;
        }
        .hero-stats { 
            display: flex; 
            gap: 40px; 
            margin-top: 60px; 
            padding-top: 40px; 
            border-top: 1px solid rgba(255,255,255,0.08); 
            flex-wrap: wrap; 
        }
        body.light-mode .hero-stats { border-top-color: rgba(0,0,0,0.06); }
        .hero-stat-item h3 { 
            font-size: 2.2rem; 
            font-weight: 800; 
            background: var(--gradient-gold); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            margin-bottom: 4px; 
        }
        body.light-mode .hero-stat-item h3 {
            background: linear-gradient(135deg, #2563EB, #3B82F6, #60A5FA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-stat-item p { 
            font-size: 0.8rem; 
            color: var(--text-secondary); 
            text-transform: uppercase; 
            letter-spacing: 2px; 
            font-weight: 500; 
        }
        body.light-mode .hero-stat-item p { color: #64748B; }

        /* ==========================================
           SECTIONS
           ========================================== */
        section { padding: 100px 0; position: relative; }
        .section-dark { background: var(--bg-primary); transition: background 0.3s; }
        .section-darker { background: var(--bg-secondary); transition: background 0.3s; }
        .section-label { 
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            font-size: 0.75rem; 
            font-weight: 600; 
            letter-spacing: 3px; 
            text-transform: uppercase; 
            color: var(--gold); 
            margin-bottom: 16px; 
        }
        .section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
        .section-title { 
            font-size: clamp(2rem, 4vw, 3rem); 
            font-weight: 700; 
            margin-bottom: 20px; 
            line-height: 1.2; 
            color: var(--text-primary);
        }
        .section-title .gold { 
            background: var(--gradient-gold); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
        }
        body.light-mode .section-title .gold {
            background: linear-gradient(135deg, #2563EB, #3B82F6, #60A5FA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-desc { 
            font-size: 1.05rem; 
            color: var(--text-secondary); 
            max-width: 650px; 
            font-weight: 300; 
            line-height: 1.8; 
        }

        /* ==========================================
           CARDS
           ========================================== */
        .service-card, .why-card { 
            background: var(--bg-card); 
            border: 1px solid var(--glass-border); 
            border-radius: 20px; 
            padding: 36px 28px; 
            backdrop-filter: blur(10px); 
            transition: all 0.4s ease; 
            height: 100%; 
        }
        .service-card:hover, .why-card:hover { 
            transform: translateY(-8px); 
            border-color: rgba(59,130,246,0.3); 
            box-shadow: 0 20px 60px var(--shadow-color); 
        }
        body.light-mode .service-card, body.light-mode .why-card {
            background: #FFFFFF;
            border-color: #E5E7EB;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        body.light-mode .service-card:hover, body.light-mode .why-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            border-color: var(--gold);
        }
        .service-icon, .why-icon { 
            width: 56px; 
            height: 56px; 
            background: rgba(59,130,246,0.1); 
            border: 1px solid rgba(59,130,246,0.15); 
            border-radius: 16px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: var(--gold); 
            font-size: 1.3rem; 
            margin-bottom: 20px; 
            transition: all 0.4s; 
        }
        .service-card:hover .service-icon { 
            background: var(--gradient-gold); 
            color: var(--navy); 
            transform: scale(1.1); 
        }
        .service-card h4, .why-card h5 { 
            font-family: 'Outfit', sans-serif; 
            font-size: 1.05rem; 
            font-weight: 600; 
            margin-bottom: 12px; 
            color: var(--text-primary);
        }
        .service-card p, .why-card p { 
            font-size: 0.88rem; 
            color: var(--text-secondary); 
            margin: 0; 
            font-weight: 300; 
        }
        .service-card img {
            border-radius: 12px;
            margin-bottom: 16px;
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        /* ==========================================
           PRODUCT CARDS (Square Image + Lightbox)
           ========================================== */
        .product-card { 
            background: var(--bg-card); 
            border: 1px solid var(--glass-border); 
            border-radius: 20px; 
            overflow: hidden; 
            transition: all 0.4s; 
            height: 100%; 
            display: flex; 
            flex-direction: column; 
        }
        .product-card:hover { 
            transform: translateY(-8px); 
            border-color: rgba(59,130,246,0.3); 
        }
        body.light-mode .product-card {
            background: #FFFFFF;
            border-color: #E5E7EB;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        body.light-mode .product-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            border-color: var(--gold);
        }
        .product-image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 100%; /* Square aspect ratio (1:1) like Instagram */
            overflow: hidden;
            cursor: pointer;
            background: var(--bg-primary);
        }
        body.light-mode .product-image-wrapper {
            background: #F1F5F9;
        }
        .product-image-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-image-wrapper img {
            transform: scale(1.05);
        }
        .product-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(6,11,24,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        body.light-mode .product-image-overlay {
            background: rgba(255,255,255,0.6);
        }
        .product-card:hover .product-image-overlay {
            opacity: 1;
        }
        .product-image-overlay i {
            font-size: 2.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        body.light-mode .product-image-overlay i {
            color: #060B18;
        }
        .product-header { padding: 20px 24px 12px; }
        .product-badge { 
            display: inline-block; 
            background: rgba(59,130,246,0.1); 
            border: 1px solid rgba(59,130,246,0.2); 
            color: var(--gold); 
            font-size: 0.65rem; 
            font-weight: 600; 
            letter-spacing: 1px; 
            text-transform: uppercase; 
            padding: 4px 12px; 
            border-radius: 50px; 
            margin-bottom: 10px; 
        }
        .product-header h4 { 
            font-size: 1.15rem; 
            font-weight: 700; 
            margin-bottom: 6px; 
            color: var(--text-primary);
        }
        .product-header p { 
            font-size: 0.85rem; 
            color: var(--text-secondary); 
            font-weight: 300; 
            margin: 0; 
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-features { 
            padding: 8px 24px 12px; 
            flex: 1; 
            list-style: none; 
        }
        .product-features li { 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            font-size: 0.8rem; 
            color: var(--text-secondary); 
            padding: 4px 0; 
            font-weight: 300; 
        }
        .product-features li i { color: var(--gold); font-size: 0.65rem; }
        .product-footer { 
            padding: 12px 24px 20px; 
            border-top: 1px solid var(--border-color); 
            display: flex;
            gap: 10px;
        }
        body.light-mode .product-footer { border-top-color: #F1F5F9; }
        .btn-demo {
            flex: 1;
            background: transparent;
            color: var(--gold);
            border: 1.5px solid var(--gold);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .btn-demo:hover {
            background: var(--gold);
            color: var(--navy);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(59,130,246,0.3);
        }
        body.light-mode .btn-demo {
            color: #2563EB;
            border-color: #2563EB;
        }
        body.light-mode .btn-demo:hover {
            background: var(--gold);
            color: #060B18;
        }

        /* ==========================================
           TESTIMONIALS
           ========================================== */
        .testimonial-card { 
            background: var(--bg-card); 
            border: 1px solid var(--glass-border); 
            border-radius: 20px; 
            padding: 30px; 
            backdrop-filter: blur(10px); 
            transition: all 0.4s ease; 
            height: 100%; 
        }
        .testimonial-card:hover { 
            transform: translateY(-8px); 
            border-color: rgba(59,130,246,0.3); 
        }
        body.light-mode .testimonial-card {
            background: #FFFFFF;
            border-color: #E5E7EB;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        body.light-mode .testimonial-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }
        .testimonial-content { 
            font-size: 0.95rem; 
            color: var(--text-secondary); 
            line-height: 1.8; 
            margin-bottom: 20px; 
            font-style: italic; 
        }
        .testimonial-rating { margin-bottom: 15px; }
        .testimonial-rating i { color: #FBBF24; font-size: 0.85rem; margin-right: 2px; }
        .testimonial-client { 
            display: flex; 
            align-items: center; 
            gap: 15px; 
            padding-top: 15px; 
            border-top: 1px solid rgba(255,255,255,0.08); 
        }
        body.light-mode .testimonial-client { border-top-color: #F1F5F9; }
        .testimonial-avatar { 
            width: 50px; 
            height: 50px; 
            background: var(--gradient-gold); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-weight: 700; 
            font-size: 1.2rem; 
            color: var(--navy); 
        }
        .testimonial-info h5 { 
            font-family: 'Outfit', sans-serif; 
            font-size: 0.9rem; 
            font-weight: 700; 
            margin-bottom: 3px; 
            color: var(--text-primary);
        }
        .testimonial-info p { 
            font-size: 0.75rem; 
            color: var(--text-secondary); 
            margin: 0; 
        }

        /* ==========================================
           PORTFOLIO
           ========================================== */
        .portfolio-filter { 
            display: flex; 
            justify-content: center; 
            gap: 12px; 
            flex-wrap: wrap; 
            margin-bottom: 40px; 
        }
        .filter-btn { 
            background: transparent; 
            border: 1px solid rgba(59,130,246,0.3); 
            color: var(--text-secondary); 
            padding: 8px 24px; 
            border-radius: 50px; 
            font-size: 0.85rem; 
            font-weight: 500; 
            transition: all 0.3s; 
            cursor: pointer; 
        }
        .filter-btn:hover, .filter-btn.active { 
            background: var(--gradient-gold); 
            color: var(--navy); 
            border-color: transparent; 
        }
        body.light-mode .filter-btn {
            border-color: rgba(0,0,0,0.1);
            color: #475569;
        }
        body.light-mode .filter-btn:hover, body.light-mode .filter-btn.active {
            background: linear-gradient(135deg, #3B82F6, #60A5FA);
            color: #060B18;
            border-color: transparent;
        }
        .portfolio-card { 
            background: var(--bg-card); 
            border: 1px solid var(--glass-border); 
            border-radius: 20px; 
            overflow: hidden; 
            transition: all 0.4s ease; 
            height: 100%; 
        }
        .portfolio-card:hover { 
            transform: translateY(-8px); 
            border-color: rgba(59,130,246,0.3); 
        }
        body.light-mode .portfolio-card {
            background: #FFFFFF;
            border-color: #E5E7EB;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        body.light-mode .portfolio-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            border-color: var(--gold);
        }
        .portfolio-image { 
            position: relative; 
            overflow: hidden; 
            height: 240px; 
        }
        .portfolio-image img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            transition: transform 0.5s ease; 
        }
        .portfolio-card:hover .portfolio-image img { transform: scale(1.1); }
        .portfolio-overlay { 
            position: absolute; 
            top: 0; 
            left: 0; 
            right: 0; 
            bottom: 0; 
            background: rgba(6,11,24,0.8); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            opacity: 0; 
            transition: opacity 0.3s ease; 
        }
        body.light-mode .portfolio-overlay {
            background: rgba(255,255,255,0.8);
        }
        .portfolio-card:hover .portfolio-overlay { opacity: 1; }
        .portfolio-overlay a { 
            width: 50px; 
            height: 50px; 
            background: var(--gradient-gold); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: var(--navy); 
            font-size: 1.2rem; 
            text-decoration: none; 
            transition: transform 0.3s; 
        }
        .portfolio-overlay a:hover { transform: scale(1.1); }
        .portfolio-content { padding: 20px; }
        .portfolio-category { 
            display: inline-block; 
            background: rgba(59,130,246,0.1); 
            border: 1px solid rgba(59,130,246,0.2); 
            color: var(--gold); 
            font-size: 0.65rem; 
            font-weight: 600; 
            padding: 4px 12px; 
            border-radius: 50px; 
            margin-bottom: 12px; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
        }
        .portfolio-content h4 { 
            font-family: 'Outfit', sans-serif; 
            font-size: 1rem; 
            font-weight: 700; 
            margin-bottom: 8px; 
            color: var(--text-primary);
        }
        .portfolio-content p { 
            font-size: 0.85rem; 
            color: var(--text-secondary); 
            margin-bottom: 12px; 
            line-height: 1.6; 
        }
        .portfolio-tech { display: flex; flex-wrap: wrap; gap: 6px; }
        .tech-badge { 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(255,255,255,0.08); 
            padding: 3px 10px; 
            border-radius: 6px; 
            font-size: 0.7rem; 
            color: var(--text-secondary); 
        }
        body.light-mode .tech-badge {
            background: #F1F5F9;
            border-color: #E2E8F0;
            color: #475569;
        }

        /* ==========================================
           FAQ
           ========================================== */
        .faq-accordion .accordion-item { 
            background: var(--bg-card); 
            border: 1px solid var(--glass-border); 
            border-radius: 14px !important; 
            margin-bottom: 12px; 
        }
        body.light-mode .faq-accordion .accordion-item {
            background: #FFFFFF;
            border-color: #E5E7EB;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .faq-accordion .accordion-button { 
            background: transparent; 
            color: var(--text-primary); 
            font-weight: 600; 
            font-size: 0.95rem; 
            padding: 20px 24px; 
            box-shadow: none; 
            font-family: 'Outfit', sans-serif; 
        }
        .faq-accordion .accordion-button::after { 
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233B82F6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); 
        }
        .faq-accordion .accordion-button:not(.collapsed) { 
            background: rgba(59,130,246,0.05); 
            color: var(--gold); 
        }
        .faq-accordion .accordion-body { 
            color: var(--text-secondary); 
            font-size: 0.9rem; 
            font-weight: 300; 
            line-height: 1.8; 
            padding: 0 24px 20px; 
        }

        /* ==========================================
           CONTACT
           ========================================== */
        .contact-info-card { 
            background: var(--bg-card); 
            border: 1px solid var(--glass-border); 
            border-radius: 16px; 
            padding: 24px; 
            display: flex; 
            align-items: flex-start; 
            gap: 16px; 
            margin-bottom: 16px; 
            transition: all 0.3s; 
        }
        body.light-mode .contact-info-card {
            background: #FFFFFF;
            border-color: #E5E7EB;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .contact-info-icon { 
            width: 48px; 
            height: 48px; 
            min-width: 48px; 
            background: rgba(59,130,246,0.1); 
            border: 1px solid rgba(59,130,246,0.15); 
            border-radius: 12px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: var(--gold); 
        }
        .contact-form { 
            background: var(--bg-card); 
            border: 1px solid var(--glass-border); 
            border-radius: 20px; 
            padding: 40px; 
        }
        body.light-mode .contact-form {
            background: #FFFFFF;
            border-color: #E5E7EB;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        .form-control, .form-select { 
            background: var(--input-bg); 
            border: 1px solid var(--input-border); 
            color: var(--input-text); 
            border-radius: 12px; 
            padding: 14px 18px; 
            font-size: 0.9rem; 
            transition: all 0.3s;
        }
        .form-control:focus, .form-select:focus { 
            background: var(--input-bg); 
            border-color: var(--gold); 
            box-shadow: 0 0 0 3px rgba(59,130,246,0.1); 
            color: var(--input-text); 
        }
        .form-control::placeholder { color: var(--placeholder-color); }

        /* ==========================================
           FOOTER
           ========================================== */
        footer { 
            background: var(--bg-secondary); 
            border-top: 1px solid var(--border-color); 
            padding: 60px 0 0; 
        }
        .footer-brand { 
            font-family: 'Cormorant Garamond', serif; 
            font-weight: 700; 
            font-size: 1.4rem; 
            background: var(--gradient-gold); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            margin-bottom: 12px; 
        }
        .footer-desc { 
            font-size: 0.88rem; 
            color: var(--text-secondary); 
            font-weight: 300; 
            line-height: 1.8; 
            margin-bottom: 20px; 
        }
        .footer-social a { 
            width: 40px; 
            height: 40px; 
            border: 1px solid var(--border-color); 
            border-radius: 10px; 
            display: inline-flex; 
            align-items: center; 
            justify-content: center; 
            color: var(--text-secondary); 
            transition: all 0.3s; 
            text-decoration: none; 
            margin-right: 10px; 
        }
        .footer-social a:hover { 
            background: var(--gradient-gold); 
            color: var(--navy); 
            border-color: transparent; 
            transform: translateY(-3px); 
        }
        .footer-title { 
            font-family: 'Outfit', sans-serif; 
            font-size: 0.9rem; 
            font-weight: 700; 
            margin-bottom: 20px; 
            letter-spacing: 1px; 
            text-transform: uppercase; 
            color: var(--text-primary); 
        }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { 
            color: var(--text-secondary); 
            text-decoration: none; 
            font-size: 0.88rem; 
            font-weight: 300; 
            transition: all 0.3s; 
        }
        .footer-links a:hover { color: var(--gold); padding-left: 5px; }
        .footer-bottom { 
            border-top: 1px solid var(--border-color); 
            padding: 20px 0; 
            margin-top: 40px; 
            text-align: center; 
            font-size: 0.82rem; 
            color: var(--text-muted); 
        }

        /* ==========================================
           FLOATING BUTTONS
           ========================================== */
        .wa-float { 
            position: fixed; 
            bottom: 90px; 
            right: 30px; 
            z-index: 998; 
        }
        .wa-float a { 
            width: 56px; 
            height: 56px; 
            background: #25D366; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: white; 
            font-size: 1.5rem; 
            text-decoration: none; 
            box-shadow: 0 4px 20px rgba(37,211,102,0.4); 
            animation: wa-pulse 2s infinite; 
        }
        .back-to-top { 
            position: fixed; 
            bottom: 30px; 
            right: 30px; 
            width: 48px; 
            height: 48px; 
            background: var(--gradient-gold); 
            color: var(--navy); 
            border: none; 
            border-radius: 50%; 
            font-size: 1rem; 
            cursor: pointer; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            z-index: 999; 
            opacity: 0; 
            visibility: hidden; 
            transition: all 0.4s; 
        }
        .back-to-top.show { opacity: 1; visibility: visible; }

        /* ==========================================
           TOAST
           ========================================== */
        .toast-container { 
            position: fixed; 
            top: 100px; 
            right: 20px; 
            z-index: 9999; 
        }
        .custom-toast { 
            background: var(--bg-secondary); 
            border: 1px solid rgba(59,130,246,0.3); 
            color: var(--text-primary); 
            border-radius: 12px; 
            padding: 16px 24px; 
            margin-bottom: 10px; 
            display: flex; 
            align-items: center; 
            gap: 12px; 
            font-size: 0.9rem; 
            box-shadow: 0 10px 40px var(--shadow-color); 
            animation: slideIn 0.4s ease; 
            min-width: 300px; 
        }
        body.light-mode .custom-toast {
            background: #FFFFFF;
            border-color: #E5E7EB;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        .custom-toast i { color: var(--gold); }

        /* ==========================================
           PRELOADER
           ========================================== */
        #preloader { 
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            background: var(--bg-primary); 
            z-index: 99999; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            flex-direction: column; 
            transition: opacity 0.5s, visibility 0.5s; 
        }
        #preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
        .loader-logo { 
            font-family: 'Cormorant Garamond', serif; 
            font-size: 1.8rem; 
            font-weight: 700; 
            background: var(--gradient-gold); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            margin-bottom: 30px; 
        }
        .loader-spinner { 
            width: 50px; 
            height: 50px; 
            border: 3px solid rgba(59,130,246,0.15); 
            border-top-color: var(--gold); 
            border-radius: 50%; 
            animation: spin 0.8s linear infinite; 
        }

        /* ==========================================
           KEYFRAMES
           ========================================== */
        @keyframes spin { to { transform: rotate(360deg); } }
        @keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        @keyframes wa-pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); } }
        @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

        /* ==========================================
           LIGHTBOX CUSTOM
           ========================================== */
        .lb-outerContainer { background: rgba(6,11,24,0.95) !important; }
        .lb-data .lb-caption { color: var(--gold) !important; font-weight: 600 !important; }

        /* ==========================================
           LOGIN PAGE
           ========================================== */
        .login-page-wrapper { 
            min-height: 100vh; 
            display: flex; 
            background: var(--bg-primary); 
            overflow: hidden; 
            position: relative; 
        }
        .login-left-brand { 
            flex: 1; 
            background: linear-gradient(135deg, var(--navy) 0%, var(--bg-secondary) 100%); 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            align-items: center; 
            padding: 60px; 
            position: relative; 
            z-index: 2; 
        }
        body.light-mode .login-left-brand {
            background: linear-gradient(135deg, #F0F4F8 0%, #FFFFFF 100%);
        }
        .login-left-brand::after { 
            content: ''; 
            position: absolute; 
            top: 0; 
            right: 0; 
            width: 100%; 
            height: 100%; 
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233B82F6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); 
            z-index: 1; 
        }
        .login-brand-logo { 
            font-family: 'Cormorant Garamond', serif; 
            font-size: 3rem; 
            font-weight: 800; 
            background: var(--gradient-gold); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            margin-bottom: 12px; 
            position: relative; 
            z-index: 2; 
        }
        .login-brand-sub { 
            font-size: 0.85rem; 
            color: var(--text-secondary); 
            letter-spacing: 4px; 
            text-transform: uppercase; 
            margin-bottom: 40px; 
            position: relative; 
            z-index: 2; 
        }
        .login-brand-desc { 
            color: var(--text-secondary); 
            font-size: 1rem; 
            text-align: center; 
            max-width: 380px; 
            line-height: 1.8; 
            font-weight: 300; 
            position: relative; 
            z-index: 2; 
        }
        .login-brand-tagline { 
            font-family: 'Cormorant Garamond', serif; 
            font-style: italic; 
            color: var(--gold); 
            margin-top: 30px; 
            font-size: 1.1rem; 
            position: relative; 
            z-index: 2; 
        }
        .login-right-form { 
            width: 520px; 
            min-width: 400px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            padding: 40px; 
            position: relative; 
            z-index: 2; 
        }
        .login-card-elegant { width: 100%; max-width: 400px; position: relative; }
        .login-card-elegant h3 { 
            font-family: 'Outfit', sans-serif; 
            font-size: 1.5rem; 
            font-weight: 700; 
            color: var(--text-primary); 
            margin-bottom: 8px; 
        }
        .login-card-elegant p.text-muted { 
            color: var(--text-muted) !important; 
            font-size: 0.9rem; 
            margin-bottom: 35px; 
        }
        .form-group-elegant { margin-bottom: 24px; position: relative; }
        .form-group-elegant label { 
            font-size: 0.8rem; 
            font-weight: 600; 
            color: var(--text-secondary); 
            margin-bottom: 8px; 
            display: block; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
        }
        .input-wrapper-elegant { position: relative; }
        .input-wrapper-elegant i { 
            position: absolute; 
            left: 18px; 
            top: 50%; 
            transform: translateY(-50%); 
            color: var(--text-muted); 
            font-size: 0.9rem; 
            transition: color 0.3s; 
        }
        .form-control-elegant { 
            width: 100%; 
            background: var(--input-bg); 
            border: 1px solid var(--input-border); 
            border-radius: 14px; 
            padding: 16px 20px 16px 50px; 
            font-size: 0.95rem; 
            color: var(--input-text); 
            transition: all 0.3s ease; 
            font-family: 'Outfit', sans-serif; 
        }
        .form-control-elegant:focus { 
            outline: none; 
            background: var(--input-bg); 
            border-color: var(--gold); 
            box-shadow: 0 0 0 4px rgba(59,130,246,0.1); 
        }
        .form-control-elegant:focus + i, .input-wrapper-elegant:focus-within i { color: var(--gold); }
        .form-control-elegant::placeholder { color: var(--placeholder-color); }
        .btn-login-elegant { 
            width: 100%; 
            padding: 16px; 
            background: var(--gradient-gold); 
            color: var(--navy); 
            border: none; 
            border-radius: 14px; 
            font-size: 1rem; 
            font-weight: 700; 
            letter-spacing: 0.5px; 
            cursor: pointer; 
            transition: all 0.4s; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            gap: 10px; 
            margin-top: 10px; 
            font-family: 'Outfit', sans-serif; 
        }
        .btn-login-elegant:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 10px 30px rgba(59,130,246,0.4); 
        }
        .login-footer-text { text-align: center; margin-top: 30px; }
        .login-footer-text a { 
            color: var(--gold); 
            text-decoration: none; 
            font-size: 0.85rem; 
            font-weight: 500; 
            transition: color 0.3s; 
        }
        .login-footer-text a:hover { color: var(--gold-light); }
        .login-divider { 
            display: flex; 
            align-items: center; 
            gap: 15px; 
            margin: 30px 0; 
            color: var(--text-muted); 
            font-size: 0.75rem; 
            text-transform: uppercase; 
            letter-spacing: 2px; 
        }
        .login-divider::before, .login-divider::after { 
            content: ''; 
            flex: 1; 
            height: 1px; 
            background: var(--border-color); 
        }
        .login-canvas-bg { 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            z-index: 1; 
        }
        .login-canvas-bg canvas { width: 100%; height: 100%; }

        /* ==========================================
           ADMIN PANEL (styles shortened for length)
           ========================================== */
        /* ... semua style admin dari versi sebelumnya ... */
        .admin-wrapper { display: flex; min-height: 100vh; background: var(--bg-primary); color: var(--text-primary); }
        body.light-mode .admin-wrapper { background: #F1F5F9; }
        .admin-sidebar { width: var(--sidebar-w); background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 40%, var(--bg-secondary) 100%); color: var(--text-primary); position: fixed; top: 0; left: 0; bottom: 0; z-index: 1040; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; overflow-x: hidden; display: flex; flex-direction: column; border-right: 1px solid var(--border-color); }
        body.light-mode .admin-sidebar { background: #FFFFFF !important; border-right-color: #E5E7EB; }
        .sidebar-profile { padding: 28px 24px 24px; border-bottom: 1px solid var(--border-color); }
        .sidebar-profile-avatar { width: 48px; height: 48px; border-radius: 14px; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; box-shadow: 0 4px 15px rgba(59,130,246,0.25); }
        .sidebar-profile-name { font-size: 0.95rem; font-weight: 700; font-family: 'Outfit', sans-serif; color: var(--text-primary); margin-bottom: 3px; }
        .sidebar-profile-role { display: inline-flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); background: rgba(59,130,246,0.1); padding: 3px 10px; border-radius: 6px; border: 1px solid rgba(59,130,246,0.15); }
        .sidebar-section-label { padding: 20px 24px 8px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.25); }
        .admin-menu { padding: 8px 12px; list-style: none; margin: 0; flex: 1; }
        .admin-menu li { margin-bottom: 2px; }
        .admin-menu li a { display: flex; align-items: center; gap: 14px; padding: 11px 16px; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: all 0.25s ease; border-radius: 10px; }
        .admin-menu li a:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.04); }
        .admin-menu li a.active { background: rgba(59,130,246,0.1); color: var(--gold); box-shadow: inset 3px 0 0 var(--gold); }
        .sidebar-footer { padding: 16px 12px; border-top: 1px solid var(--border-color); }
        .sidebar-footer a { display: flex; align-items: center; gap: 14px; padding: 11px 16px; color: #F87171; text-decoration: none; font-size: 0.88rem; font-weight: 500; border-radius: 10px; transition: all 0.25s; }
        .sidebar-footer a:hover { background: rgba(248,113,113,0.1); }
        .admin-main { margin-left: var(--sidebar-w); flex: 1; min-height: 100vh; display: flex; flex-direction: column; }
        .admin-topbar { background: var(--bg-secondary); padding: 0 32px; height: 68px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1020; box-shadow: 0 1px 3px var(--shadow-color); }
        .topbar-left { display: flex; align-items: center; gap: 16px; }
        .topbar-burger { display: none; width: 40px; height: 40px; border: 1px solid var(--border-color); border-radius: 10px; background: var(--bg-secondary); align-items: center; justify-content: center; cursor: pointer; color: var(--text-secondary); font-size: 1.1rem; transition: all 0.2s; }
        .topbar-burger:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
        .topbar-title { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text-primary); }
        .topbar-breadcrumb { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }
        .topbar-right { display: flex; align-items: center; gap: 12px; }
        .topbar-avatar-sm { width: 38px; height: 38px; border-radius: 10px; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; font-weight: 800; color: var(--navy); }
        .topbar-user-info { line-height: 1.2; }
        .topbar-user-name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
        .topbar-user-role { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
        .admin-body { padding: 28px 32px; flex: 1; }
        .stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 28px; }
        .stat-card { background: var(--bg-secondary); border-radius: 16px; padding: 24px; position: relative; overflow: hidden; border: 1px solid var(--border-color); transition: all 0.35s ease; animation: fadeUp 0.5s ease both; }
        .stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow-color); }
        .stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
        .stat-card.sc-gold::before { background: var(--gradient-gold); }
        .stat-card.sc-green::before { background: linear-gradient(90deg, #10B981, #34D399); }
        .stat-card.sc-blue::before { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
        .stat-card.sc-orange::before { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
        .stat-card.sc-red::before { background: linear-gradient(90deg, #EF4444, #F87171); }
        .stat-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 16px; }
        .sc-gold .stat-card-icon { background: rgba(59,130,246,0.1); color: #3B82F6; }
        .sc-green .stat-card-icon { background: rgba(16,185,129,0.1); color: #10B981; }
        .sc-blue .stat-card-icon { background: rgba(59,130,246,0.1); color: #3B82F6; }
        .sc-orange .stat-card-icon { background: rgba(245,158,11,0.1); color: #F59E0B; }
        .sc-red .stat-card-icon { background: rgba(239,68,68,0.1); color: #EF4444; }
        .stat-card-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
        .stat-card-value { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; }
        .stat-card-value.small-text { font-size: 1.25rem; }
        .table-card { background: var(--bg-secondary); border-radius: 16px; border: 1px solid var(--border-color); overflow: hidden; animation: fadeUp 0.5s ease 0.3s both; }
        .table-card-header { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); flex-wrap: wrap; gap: 12px; }
        .table-card-title { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-primary); }
        .table-card-subtitle { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
        .btn-table-action { display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; background: var(--gradient-gold); color: var(--navy); border: none; border-radius: 10px; font-size: 0.82rem; font-weight: 700; cursor: pointer; transition: all 0.3s; font-family: 'Outfit', sans-serif; }
        .btn-table-action:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,130,246,0.3); }
        .table-admin-elite { width: 100%; border-collapse: collapse; }
        .table-admin-elite thead { background: var(--table-header-bg); }
        .table-admin-elite th { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; padding: 14px 20px; border-bottom: 1px solid var(--border-color); white-space: nowrap; }
        .table-admin-elite td { padding: 16px 20px; font-size: 0.88rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); vertical-align: middle; }
        .table-admin-elite tbody tr:hover { background: var(--table-row-hover); }
        .badge-elite { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 8px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3px; }
        .badge-elite::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
        .badge-won { background: rgba(16,185,129,0.1); color: #059669; }
        .badge-won::before { background: #10B981; }
        .badge-pending { background: rgba(245,158,11,0.1); color: #D97706; }
        .badge-pending::before { background: #F59E0B; }
        .badge-lost { background: rgba(239,68,68,0.1); color: #DC2626; }
        .badge-lost::before { background: #EF4444; }
        .badge-approved { background: rgba(16,185,129,0.1); color: #059669; }
        .badge-approved::before { background: #10B981; }
        .badge-rejected { background: rgba(239,68,68,0.1); color: #DC2626; }
        .badge-rejected::before { background: #EF4444; }
        .badge-active { background: rgba(16,185,129,0.1); color: #059669; }
        .badge-active::before { background: #10B981; }
        .badge-inactive { background: rgba(148,163,184,0.1); color: #64748B; }
        .badge-inactive::before { background: #94A3B8; }
        .badge-gold { background: rgba(59,130,246,0.1); color: #3B82F6; }
        .badge-gold::before { background: #3B82F6; }
        .badge-blue { background: rgba(59,130,246,0.1); color: #3B82F6; }
        .badge-blue::before { background: #3B82F6; }
        .btn-icon-action { width: 34px; height: 34px; border-radius: 9px; border: none; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; font-size: 0.8rem; }
        .btn-icon-edit { background: #EFF6FF; color: #3B82F6; }
        .btn-icon-edit:hover { background: #3B82F6; color: white; transform: scale(1.1); }
        .btn-icon-del { background: #FEF2F2; color: #EF4444; }
        .btn-icon-del:hover { background: #EF4444; color: white; transform: scale(1.1); }
        .btn-sm-success, .btn-sm-danger { padding: 6px 12px; font-size: 0.75rem; border-radius: 8px; border: none; margin: 0 2px; }
        .btn-sm-success { background: #10B981; color: white; }
        .btn-sm-danger { background: #EF4444; color: white; }
        .text-value { font-weight: 700; color: var(--text-primary); }
        .text-commission { font-weight: 700; color: #7C3AED; }
        .text-muted-soft { color: var(--text-muted); font-size: 0.82rem; }
        .table-responsive-elite { overflow-x: auto; -webkit-overflow-scrolling: touch; }
        .welcome-banner { background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 60%, var(--bg-secondary) 100%); border-radius: 20px; padding: 36px 40px; position: relative; overflow: hidden; margin-bottom: 28px; animation: fadeUp 0.5s ease both; border: 1px solid var(--border-color); }
        .welcome-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
        .welcome-banner h3 .gold-text { color: var(--gold); }
        .welcome-banner p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
        .pipeline-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
        .pipeline-card { background: var(--bg-secondary); border-radius: 16px; padding: 24px; text-align: center; border: 1px solid var(--border-color); transition: all 0.3s; animation: fadeUp 0.5s ease both; }
        .pipeline-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px var(--shadow-color); }
        .pipeline-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.2rem; }
        .pipeline-card.pc-pending .pipeline-icon { background: rgba(245,158,11,0.1); color: #F59E0B; }
        .pipeline-card.pc-won .pipeline-icon { background: rgba(16,185,129,0.1); color: #10B981; }
        .pipeline-card.pc-lost .pipeline-icon { background: rgba(239,68,68,0.1); color: #EF4444; }
        .pipeline-card.pc-balance .pipeline-icon { background: rgba(59,130,246,0.1); color: #3B82F6; }
        .pipeline-value { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--text-primary); line-height: 1; margin-bottom: 4px; }
        .pipeline-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

        /* Withdrawal & Modal styles (shortened) */
        .withdrawal-form-section { background: var(--bg-secondary); border-radius: 16px; padding: 24px; margin-bottom: 24px; border: 1px solid var(--border-color); }
        .withdrawal-form-title { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-block; }
        .withdrawal-form-control { width: 100%; padding: 12px 16px; font-size: 0.9rem; border: 1.5px solid var(--input-border); border-radius: 12px; transition: all 0.3s ease; background: var(--input-bg); color: var(--input-text); }
        .withdrawal-form-control:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
        .btn-withdrawal-submit { background: var(--gradient-gold); color: var(--navy); font-weight: 700; padding: 12px 24px; border: none; border-radius: 12px; font-size: 0.85rem; cursor: pointer; transition: all 0.3s ease; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px; }
        .btn-withdrawal-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,130,246,0.3); }
        .withdrawal-table { background: var(--bg-secondary); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); }
        .withdrawal-table th { background: var(--table-header-bg); font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; padding: 14px 20px; border-bottom: 1px solid var(--border-color); }
        .withdrawal-table td { padding: 14px 20px; font-size: 0.85rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); vertical-align: middle; }
        .balance-info-card { background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); border-radius: 16px; padding: 20px 24px; margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; border: 1px solid var(--border-color); }
        .balance-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); }
        .balance-amount { font-size: 1.8rem; font-weight: 800; color: var(--text-primary); font-family: 'Outfit', sans-serif; }
        .amount-text { font-weight: 700; color: var(--text-primary); }
        .withdrawal-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
        .modal-admin .modal-content { border-radius: 20px; border: none; box-shadow: 0 25px 60px var(--shadow-color); background: var(--bg-secondary); }
        .modal-admin .modal-header { background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary)); color: var(--text-primary); border-radius: 20px 20px 0 0; padding: 24px 28px; border-bottom: 1px solid var(--border-color); }
        .modal-admin .modal-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; }
        .modal-admin .modal-body { padding: 28px; background: var(--bg-secondary); }
        .modal-admin .modal-footer { padding: 16px 28px; border-top: 1px solid var(--border-color); background: var(--bg-secondary); }
        .form-admin label { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
        .form-admin .form-control, .form-admin .form-select { background: var(--input-bg); color: var(--input-text); border: 1.5px solid var(--input-border); border-radius: 10px; padding: 11px 16px; font-size: 0.9rem; transition: all 0.25s; }
        .form-admin .form-control:focus, .form-admin .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
        .est-commission-box { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); border: 1px solid #DDD6FE; border-radius: 12px; padding: 16px 20px; text-align: center; }
        .est-commission-box .label { font-size: 0.75rem; color: #6D28D9; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
        .est-commission-box .value { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; color: #7C3AED; }
        .btn-modal-cancel { padding: 10px 24px; background: var(--bg-card); color: var(--text-secondary); border: none; border-radius: 10px; font-weight: 600; font-size: 0.85rem; transition: all 0.3s; cursor: pointer; }
        .btn-modal-cancel:hover { background: rgba(255,255,255,0.1); }
        .btn-modal-save { padding: 10px 24px; background: var(--gradient-gold); color: var(--navy); border: none; border-radius: 10px; font-weight: 700; font-size: 0.85rem; transition: all 0.3s; cursor: pointer; }
        .btn-modal-save:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(59,130,246,0.3); }
        .empty-state { text-align: center; padding: 60px 20px; }
        .empty-state-icon { width: 80px; height: 80px; border-radius: 20px; background: var(--bg-card); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--text-muted); }
        .empty-state h5 { color: var(--text-primary); }
        .empty-state p { color: var(--text-muted); }
        .empty-state-withdrawal { text-align: center; padding: 40px 20px; }
        .empty-state-icon-withdrawal { width: 64px; height: 64px; border-radius: 16px; background: var(--bg-card); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; color: var(--text-muted); }
        .empty-state-title { font-weight: 700; font-size: 1rem; color: var(--text-primary); margin-bottom: 4px; }
        .empty-state-desc { font-size: 0.85rem; color: var(--text-muted); }
        .settings-sidebar .list-group-item { background: var(--bg-secondary); border: 1px solid var(--border-color); color: var(--text-secondary); padding: 12px 16px; border-radius: 10px; transition: all 0.3s; cursor: pointer; }
        .settings-sidebar .list-group-item:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
        .settings-sidebar .list-group-item.active { background: var(--gradient-gold); color: var(--navy); font-weight: 600; border-color: var(--gold); }
        .settings-sidebar .list-group-item i { width: 20px; text-align: center; }
        .settings-form .form-label { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
        .settings-form .form-control { background: var(--input-bg); color: var(--input-text); border: 1.5px solid var(--input-border); border-radius: 10px; padding: 11px 16px; font-size: 0.9rem; transition: all 0.25s; }
        .settings-form .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
        .settings-form .form-control::placeholder { color: var(--placeholder-color); }
        .settings-form textarea.form-control { resize: vertical; min-height: 80px; }
        .faq-item .form-control { background: var(--input-bg); color: var(--input-text); border: 1.5px solid var(--input-border); border-radius: 10px; padding: 11px 16px; font-size: 0.9rem; }
        .faq-item .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
        .image-uploader { margin-bottom: 20px; }
        .image-preview-container { margin-bottom: 15px; }
        .image-preview { position: relative; display: inline-block; }
        .image-preview img { width: 150px; height: 150px; object-fit: cover; border-radius: 10px; border: 2px solid var(--gold); }
        .btn-remove-image { position: absolute; top: -10px; right: -10px; width: 28px; height: 28px; background: #EF4444; color: white; border: none; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
        .btn-remove-image:hover { transform: scale(1.1); background: #DC2626; }
        .image-placeholder { width: 150px; height: 150px; background: var(--bg-card); border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); border: 2px dashed var(--border-color); }
        .upload-area { border: 2px dashed var(--input-border); border-radius: 10px; padding: 20px; text-align: center; cursor: pointer; transition: all 0.3s ease; background: var(--input-bg); }
        .upload-area:hover { border-color: var(--gold); background: rgba(59,130,246,0.05); }
        .upload-area.drag-over { border-color: var(--gold); background: rgba(59,130,246,0.1); }
        .skeleton { background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-secondary) 50%, var(--bg-card) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
        .skeleton-box { height: 120px; border-radius: 16px; }
        .sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1035; backdrop-filter: blur(4px); }
        .sidebar-overlay.show { display: block; }

        /* Responsive */
        @media (max-width: 991px) {
            .admin-sidebar { transform: translateX(-100%); }
            .admin-sidebar.show { transform: translateX(0); }
            .admin-main { margin-left: 0; width: 100%; }
            .topbar-burger { display: flex; }
            .admin-body { padding: 20px; }
            .pipeline-row { grid-template-columns: repeat(2, 1fr); }
            .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
            .login-left-brand { display: none; }
            .login-right-form { width: 100%; min-width: auto; padding: 30px; }
        }
        @media (max-width: 575px) {
            .stat-grid { grid-template-columns: 1fr; }
            .pipeline-row { grid-template-columns: 1fr; }
            .topbar-user-info { display: none; }
        }
        @media (max-width: 767px) { 
            .login-page-wrapper { flex-direction: column; } 
            .login-left-brand { padding: 60px 30px 30px; min-height: auto; display: block; } 
            .login-right-form { width: 100%; min-width: auto; padding: 30px; } 
        }
        /* ==========================================
   PRODUCT LIGHTBOX
   ========================================== */
.product-lightbox {
    cursor: pointer;
    transition: transform 0.3s ease;
}
.product-lightbox:hover {
    transform: scale(1.02);
}

.lightbox-modal .modal-content {
    background: rgba(0,0,0,0.92);
    border: none;
    border-radius: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-modal .modal-body {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-modal .modal-body img {
    max-height: 85vh;
    max-width: 95vw;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-modal .btn-close-lightbox {
    position: fixed;
    top: 24px;
    right: 30px;
    z-index: 1060;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.lightbox-modal .btn-close-lightbox:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
    border-color: rgba(255,255,255,0.4);
}
.lightbox-modal .btn-close-lightbox i {
    font-size: 1.2rem;
}
.lightbox-modal .modal-dialog {
    margin: 0;
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
}

/* Tombol close di pojok kiri atas (opsional) */
.lightbox-modal .btn-back-lightbox {
    position: fixed;
    top: 24px;
    left: 30px;
    z-index: 1060;
    padding: 10px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    text-decoration: none;
}
.lightbox-modal .btn-back-lightbox:hover {
    background: rgba(255,255,255,0.18);
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.3);
}
.lightbox-modal .btn-back-lightbox i {
    font-size: 0.9rem;
}

/* Caption gambar */
.lightbox-caption {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1060;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #FFFFFF;
    font-size: 0.95rem;
    text-align: center;
    max-width: 80%;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.lightbox-caption strong {
    color: var(--gold);
}

/* Efek zoom pada gambar saat diklik */
.product-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.product-img-wrap .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(59,130,246,0.9);
    color: #060B18;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}
.product-img-wrap:hover .zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.product-img-wrap img {
    transition: transform 0.4s ease;
}
.product-img-wrap:hover img {
    transform: scale(1.05);
}
/* ============================================
   FIX: ADMIN MENU - LIGHT MODE VISIBILITY
   ============================================ */

/* Perbaikan utama untuk menu admin di light mode */
body.light-mode .admin-menu li a {
    color: #475569 !important;
    font-weight: 500;
}

body.light-mode .admin-menu li a:hover {
    background: #F1F5F9 !important;
    color: #060B18 !important;
}

body.light-mode .admin-menu li a.active {
    background: rgba(59,130,246,0.08) !important;
    color: #2563EB !important;
    box-shadow: inset 3px 0 0 #3B82F6 !important;
}

/* Perbaikan ikon di menu */
body.light-mode .admin-menu li a i {
    color: #94A3B8;
}

body.light-mode .admin-menu li a:hover i {
    color: #060B18;
}

body.light-mode .admin-menu li a.active i {
    color: #2563EB;
}

/* Perbaikan sidebar section label */
body.light-mode .sidebar-section-label {
    color: rgba(0, 0, 0, 0.3) !important;
}

/* Perbaikan sidebar profile name */
body.light-mode .sidebar-profile-name {
    color: #060B18 !important;
}

/* Perbaikan sidebar profile role */
body.light-mode .sidebar-profile-role {
    background: rgba(59,130,246,0.08) !important;
    border-color: rgba(59,130,246,0.15) !important;
    color: #2563EB !important;
}

/* Perbaikan sidebar footer */
body.light-mode .sidebar-footer a {
    color: #EF4444 !important;
}

body.light-mode .sidebar-footer a:hover {
    background: rgba(239, 68, 68, 0.06) !important;
}

/* Perbaikan sidebar scrollbar */
body.light-mode .admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12) !important;
}

/* Perbaikan sidebar border */
body.light-mode .admin-sidebar {
    border-right: 1px solid #E5E7EB !important;
}

/* Perbaikan sidebar profile border */
body.light-mode .sidebar-profile {
    border-bottom: 1px solid #E5E7EB !important;
}

/* Perbaikan sidebar footer border */
body.light-mode .sidebar-footer {
    border-top: 1px solid #E5E7EB !important;
}

/* Tambahan: pastikan background sidebar putih di light mode */
body.light-mode .admin-sidebar {
    background: #FFFFFF !important;
}

/* Perbaikan untuk dropdown atau submenu jika ada */
body.light-mode .admin-menu li a .menu-text {
    color: #475569 !important;
}

body.light-mode .admin-menu li a:hover .menu-text {
    color: #060B18 !important;
}

body.light-mode .admin-menu li a.active .menu-text {
    color: #2563EB !important;
}

/* Efek hover yang lebih halus */
body.light-mode .admin-menu li a {
    transition: all 0.25s ease !important;
    border-radius: 10px !important;
    padding: 11px 16px !important;
}

/* Pastikan teks menu memiliki kontras yang baik */
body.light-mode .admin-menu li a {
    text-shadow: none !important;
}
/* Perbaikan toggle theme di admin topbar - light mode */
body.light-mode .theme-toggle-wrapper i {
    color: #64748B !important;
}

body.light-mode .theme-toggle-wrapper .theme-switch .slider {
    background: #CBD5E1 !important;
}

body.light-mode .theme-toggle-wrapper .theme-switch input:checked + .slider {
    background: #3B82F6 !important;
}

body.light-mode .theme-toggle-wrapper .theme-switch .slider:before {
    background: #FFFFFF !important;
}
/* ==========================================
   RESPONSIVE IFRAME MAPS
   ========================================== */
.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Rasio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}
/* ==========================================
   LIGHTBOX CUSTOM
   ========================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 40px;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay .lightbox-close {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100000;
    backdrop-filter: blur(4px);
}

.lightbox-overlay .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-overlay .lightbox-close i {
    pointer-events: none;
}

.lightbox-overlay .lightbox-image-container {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.4s ease;
}

.lightbox-overlay .lightbox-image-container img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lightbox-overlay .lightbox-caption {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 80%;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Lightbox close button di mobile */
@media (max-width: 768px) {
    .lightbox-overlay {
        padding: 20px;
    }
    .lightbox-overlay .lightbox-close {
        top: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    .lightbox-overlay .lightbox-caption {
        bottom: 24px;
        padding: 10px 20px;
        font-size: 0.8rem;
        max-width: 90%;
    }
}