:root {
            --bg-primary: #fdf6ed;
            --bg-secondary: #fff8f0;
            --bg-card: #ffffff;
            --gold-primary: #C5A047;
            --gold-light: #E8D5A3;
            --gold-dark: #8B7355;
            --gold-soft: #f5e6c8;
            --blue-primary: #1E6BFF;
            --blue-dark: #0D47A1;
            --blue-light: #e8f0ff;
            --orange-primary: #FF8C00;
            --orange-soft: #fff3e0;
            --purple-primary: #7C4DFF;
            --purple-soft: #f0ebff;
            --text-primary: #2c1810;
            --text-secondary: #6b5b4f;
            --text-muted: #a09080;
            --shadow-sm: 0 2px 8px rgba(139, 115, 85, 0.08);
            --shadow-md: 0 8px 30px rgba(139, 115, 85, 0.12);
            --shadow-lg: 0 20px 60px rgba(139, 115, 85, 0.15);
            --border-light: rgba(197, 160, 71, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(253, 246, 237, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 14px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo-section:hover {
            transform: scale(1.02);
        }

        .logo-section img {
            height: 50px;
            width: auto;
            filter: drop-shadow(0 2px 6px rgba(197, 160, 71, 0.2));
        }

        .tagline {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--gold-dark);
            letter-spacing: 1px;
            white-space: nowrap;
            border-left: 2.5px solid var(--gold-primary);
            padding-left: 14px;
            text-transform: uppercase;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .social-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.15rem;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .social-icon.tiktok {
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1.5px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .social-icon.tiktok:hover {
            background: #000;
            color: #fff;
            border-color: #000;
            transform: translateY(-3px) scale(1.08);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .social-icon.instagram {
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1.5px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: #fff;
            border-color: transparent;
            transform: translateY(-3px) scale(1.08);
            box-shadow: 0 8px 25px rgba(225, 48, 108, 0.25);
        }

        /* ===== MAIN CONTENT ===== */
        main {
            padding-top: 110px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            text-align: center;
            padding: 50px 24px 30px;
            position: relative;
        }

        .hero-section h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .hero-section .subtitle {
            font-size: clamp(0.95rem, 2.5vw, 1.15rem);
            color: var(--text-secondary);
            font-weight: 400;
            max-width: 520px;
            margin: 0 auto;
        }

        .hero-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            margin: 24px auto;
            border-radius: 3px;
        }

        /* ===== BANNER GRID ===== */
        .services-section {
            flex: 1;
            padding: 20px 24px 70px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        /* ===== BANNER CARD - FIXED SIZE ===== */
        .service-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text-primary);
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            cursor: pointer;
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-primary), var(--blue-primary), var(--orange-primary));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px 20px 0 0;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(197, 160, 71, 0.3);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .card-thumbnail {
            width: 100%;
            height: 170px;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .service-card:hover .card-thumbnail {
            transform: scale(1.05);
        }

        .card-content {
            padding: 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-height: 180px;
        }

        .card-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            padding: 5px 12px;
            border-radius: 20px;
            width: fit-content;
        }

        .badge-scanning {
            background: var(--gold-soft);
            color: var(--gold-dark);
        }

        .badge-relaxation {
            background: var(--blue-light);
            color: var(--blue-dark);
        }

        .badge-healing {
            background: var(--purple-soft);
            color: var(--purple-primary);
        }

        .badge-ebook {
            background: var(--orange-soft);
            color: var(--orange-primary);
        }

        .card-title {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.45;
            color: var(--text-primary);
            min-height: 46px;
        }

        .card-price {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--gold-dark);
        }

        .card-arrow {
            margin-top: auto;
            padding-top: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px dashed var(--border-light);
        }

        .card-arrow span {
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        .card-arrow i {
            color: var(--gold-primary);
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

        .service-card:hover .card-arrow i {
            transform: translateX(5px);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-light);
            padding: 35px 24px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo-link {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: transform 0.3s ease;
            padding: 12px 24px;
            border-radius: 16px;
        }

        .footer-logo-link:hover {
            transform: scale(1.03);
            background: var(--bg-card);
            box-shadow: var(--shadow-sm);
        }

        .footer-logo-link img {
            height: 55px;
            width: auto;
            filter: drop-shadow(0 2px 6px rgba(30, 107, 255, 0.15));
        }

        .footer-text {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 14px;
            font-weight: 400;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .service-card {
                max-width: 320px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 12px 20px;
            }

            .logo-section img {
                height: 44px;
            }

            .tagline {
                font-size: 0.65rem;
                padding-left: 10px;
            }

            .social-icon {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }

            main {
                padding-top: 95px;
            }

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

            .service-card {
                max-width: 100%;
            }

            .card-thumbnail {
                height: 150px;
            }

            .card-content {
                padding: 14px;
                min-height: 160px;
            }

            .services-section {
                padding: 16px 16px 50px;
            }

            .hero-section {
                padding: 35px 20px 20px;
            }
        }

        @media (max-width: 520px) {
            .services-grid {
                grid-template-columns: 1fr;
                max-width: 340px;
                margin: 0 auto;
            }

            .tagline {
                display: none;
            }

            .logo-section img {
                height: 40px;
            }

            .card-thumbnail {
                height: 180px;
            }
        }

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

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

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

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold-primary);
        }

        /* ===== TESTIMONI SECTION ===== */
        .testimoni-section {
            background: var(--bg-testimoni, #fff5e6);
            padding: 60px 24px 70px;
            position: relative;
            overflow: hidden;
        }

        .testimoni-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(197, 160, 71, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .testimoni-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(30, 107, 255, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .testimoni-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .testimoni-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .testimoni-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .testimoni-header p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 450px;
            margin: 0 auto;
        }

        .testimoni-divider {
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            margin: 16px auto 0;
            border-radius: 3px;
        }

        .testimoni-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimoni-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 28px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .testimoni-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: rgba(197, 160, 71, 0.25);
        }

        .testimoni-quote-icon {
            font-size: 2rem;
            color: var(--gold-light);
            line-height: 1;
            opacity: 0.6;
        }

        .testimoni-text {
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--text-secondary);
            font-style: italic;
            flex: 1;
        }

        .testimoni-stars {
            display: flex;
            gap: 3px;
        }

        .testimoni-stars i {
            color: var(--gold-primary);
            font-size: 0.85rem;
        }

        .testimoni-author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 14px;
            border-top: 1px dashed var(--border-light);
        }

        .testimoni-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold-light);
            flex-shrink: 0;
        }

        .testimoni-avatar-placeholder {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-soft), var(--gold-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--gold-dark);
            border: 2px solid var(--gold-light);
            flex-shrink: 0;
        }

        .testimoni-author-info h4 {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .testimoni-author-info span {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ===== RESPONSIVE TESTIMONI ===== */
        @media (max-width: 1024px) {
            .testimoni-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .testimoni-section {
                padding: 45px 20px 55px;
            }

            .testimoni-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }

            .testimoni-card {
                padding: 22px;
            }
        }

        /* ===== ENERGY SCANNING SECTION ===== */
        .energy-section {
            background: var(--bg-primary);
            padding: 60px 24px 70px;
            position: relative;
            overflow: hidden;
        }

        .energy-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(197, 160, 71, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .energy-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .energy-header {
            text-align: center;
            margin-bottom: 36px;
        }

        .energy-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .energy-divider {
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            margin: 16px auto 0;
            border-radius: 3px;
        }

        .energy-intro {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 28px 32px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            margin-bottom: 28px;
        }

        .energy-intro p {
            font-size: 0.92rem;
            line-height: 1.85;
            color: var(--text-secondary);
            margin-bottom: 14px;
        }

        .energy-intro p:last-child {
            margin-bottom: 0;
        }

        .energy-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .energy-block {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 28px 32px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .energy-block:hover {
            box-shadow: var(--shadow-md);
            border-color: rgba(197, 160, 71, 0.25);
        }

        .energy-block-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }

        .energy-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--gold-soft), var(--gold-light));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .energy-icon i {
            font-size: 1.2rem;
            color: var(--gold-dark);
        }

        .energy-icon-note {
            background: linear-gradient(135deg, var(--blue-light), #d4e4ff);
        }

        .energy-icon-note i {
            color: var(--blue-dark);
        }

        .energy-block h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .energy-content,
        .energy-block {
            text-align: left;
        }

        .energy-list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .energy-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(197, 160, 71, 0.1);
            text-align: left;
        }

        .energy-list li:last-child {
            border-bottom: none;
        }

        .energy-list li i {
            color: var(--gold-primary);
            font-size: 1rem;
            margin-top: 5px;
            flex-shrink: 0;
            width: 18px;
        }

        .energy-list li span {
            flex: 1;
            display: block;
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--text-secondary);
            text-align: left;
            text-align-last: left;
            word-spacing: normal;
        }

        .energy-list li strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .energy-note {
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--blue-light) 100%);
            border-color: rgba(30, 107, 255, 0.15);
        }

        .energy-note-content p {
            font-size: 0.92rem;
            line-height: 1.85;
            color: var(--text-secondary);
        }

        .energy-note-content strong {
            color: var(--blue-dark);
        }

        /* ===== RESPONSIVE ENERGY ===== */
        @media (max-width: 768px) {
            .energy-section {
                padding: 45px 20px 55px;
            }

            .energy-intro,
            .energy-block {
                padding: 22px 24px;
            }

            .energy-block-header {
                gap: 12px;
            }

            .energy-icon {
                width: 42px;
                height: 42px;
                border-radius: 12px;
            }

            .energy-icon i {
                font-size: 1rem;
            }

            .energy-block h3 {
                font-size: 1.05rem;
            }

            .energy-list li {
                gap: 10px;
                text-align: left;
            }

            .energy-list li span {
                font-size: 0.85rem;
            }
        }

        /* ===== TENTANG LEVITACHE SECTION ===== */
        .about-section {
            background: var(--bg-secondary);
            padding: 60px 24px 70px;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(197, 160, 71, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .about-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .about-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .about-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .about-divider {
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            margin: 16px auto 0;
            border-radius: 3px;
        }

        .about-content {
            display: flex;
            align-items: flex-start;
            gap: 48px;
        }

        .about-image-wrapper {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .about-image-frame {
            width: 280px;
            height: 340px;
            border-radius: 24px;
            overflow: hidden;
            border: 3px solid var(--gold-light);
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .about-image-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(44, 24, 16, 0.3) 100%);
            z-index: 1;
            pointer-events: none;
        }

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

        .about-image-frame:hover .about-image {
            transform: scale(1.05);
        }

        .about-image-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(197, 160, 71, 0.3);
        }

        .about-image-badge i {
            font-size: 0.9rem;
        }

        .about-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .about-text p {
            font-size: 0.92rem;
            line-height: 1.85;
            color: var(--text-secondary);
        }

        .about-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .about-social-proof {
            display: flex;
            align-items: center;
            gap: 0;
            margin-top: 24px;
            padding: 20px 28px;
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .about-stat {
            flex: 1;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .about-stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .about-stat-divider {
            width: 1px;
            height: 40px;
            background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
        }

        /* ===== RESPONSIVE ABOUT ===== */
        @media (max-width: 900px) {
            .about-content {
                flex-direction: column;
                align-items: center;
                gap: 32px;
            }

            .about-image-wrapper {
                order: -1;
            }

            .about-image-frame {
                width: 240px;
                height: 300px;
            }

            .about-text {
                text-align: center;
            }

            .about-social-proof {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 45px 20px 55px;
            }

            .about-image-frame {
                width: 200px;
                height: 260px;
            }

            .about-text p {
                font-size: 0.88rem;
            }

            .about-social-proof {
                padding: 16px 20px;
            }

            .about-stat-number {
                font-size: 1.3rem;
            }

            .about-stat-label {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .about-image-frame {
                width: 180px;
                height: 220px;
            }

            .about-social-proof {
                flex-direction: column;
                gap: 12px;
            }

            .about-stat-divider {
                width: 60px;
                height: 1px;
            }
        }

        /* ===== GALERI SECTION ===== */
        .galeri-section {
            background: var(--bg-primary);
            padding: 60px 24px 70px;
            position: relative;
            overflow: hidden;
        }

        .galeri-section::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(124, 77, 255, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .galeri-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .galeri-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .galeri-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .galeri-divider {
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            margin: 16px auto 0;
            border-radius: 3px;
        }

        .galeri-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .galeri-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .galeri-column-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--gold-light);
            margin-bottom: 4px;
        }

        .galeri-column-title i {
            color: var(--gold-primary);
            margin-right: 8px;
        }

        .galeri-images {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .galeri-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 16/10;
            border: 2px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .galeri-item:hover {
            transform: translateY(-6px) scale(1.02);
            border-color: var(--gold-light);
            box-shadow: var(--shadow-md);
        }

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

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

        .galeri-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(44, 24, 16, 0.6) 100%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .galeri-item-overlay span {
            color: #fff;
            font-size: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .galeri-item-overlay span i {
            font-size: 0.9rem;
        }

        /* ===== LIGHTBOX / POPUP ===== */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(44, 24, 16, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 85vw;
            max-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image-wrapper {
            position: relative;
            max-width: 100%;
            max-height: 85vh;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
        }

        .lightbox-image-wrapper img {
            max-width: 85vw;
            max-height: 80vh;
            object-fit: contain;
            display: block;
            border-radius: 16px;
        }

        .lightbox-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, transparent, rgba(44, 24, 16, 0.85));
            padding: 40px 24px 20px;
            color: #fff;
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
            border-radius: 0 0 16px 16px;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-nav.prev {
            left: -70px;
        }

        .lightbox-nav.next {
            right: -70px;
        }

        .lightbox-counter {
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.15);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 20px;
            letter-spacing: 1px;
        }

        /* ===== RESPONSIVE GALERI ===== */
        @media (max-width: 900px) {
            .galeri-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .lightbox-nav.prev {
                left: 10px;
            }

            .lightbox-nav.next {
                right: 10px;
            }

            .lightbox-close {
                top: 20px;
                right: 20px;
            }

            .lightbox-counter {
                top: 20px;
            }
        }

        @media (max-width: 768px) {
            .galeri-section {
                padding: 45px 20px 55px;
            }

            .galeri-item {
                border-radius: 12px;
                aspect-ratio: 16/10;
            }

            .lightbox-nav {
                width: 44px;
                height: 44px;
                font-size: 0.9rem;
            }

            .lightbox-nav.prev {
                left: 8px;
            }

            .lightbox-nav.next {
                right: 8px;
            }
        }