:root {
    /* PRIMARY (NETRAL KUAT) */
    --primary: #ffffff;        /* putih bersih */
    --primary-dark: #d1d5db;   /* abu terang */

    /* ACCENT (HANYA 1 WARNA AKSI) */
    --accent: red;         /* hitam solid */

    /* BACKGROUND */
    --bg-main: #000000;        /* hitam full */
    --bg-section: #0a0a0a;     /* sedikit naik biar ada layer */
    --bg-soft: #141414;        /* abu gelap */

    /* TEXT */
    --text-main: #ffffff;      /* putih full */
    --text-soft: #9ca3af;      /* abu soft */

    /* BORDER */
    --border-soft: #262626;    /* garis tipis elegan */

    /* UI */
    --radius-lg: 16px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.9);
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top, var(--bg-soft), var(--bg-main));
            color: var(--text-main);
            line-height: 1.6;
        }

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

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

        .page-wrapper {
            min-height: 100vh;
            padding-bottom: 80px; /* ruang untuk fixed contact bar */
        }

        .container {
            width: 100%;
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* =========================
           HEADER SEDERHANA
        ========================== */
        header.site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(14px);
            background: linear-gradient(to bottom, rgba(5,8,20,0.96) 40%, rgba(5,8,20,0.8) 100%);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 16px;
        }

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

        .logo-mark {
            width: 50px;
            height: 50px;
            border-radius: 10%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            color: #050814;
            box-shadow: 0 10px 25px rgba(0,0,0,0.45);
        }

        .logo-text-main {
            font-weight: 700;
            font-size: 16px;
        }

        .logo-text-sub {
            font-size: 11px;
            color: var(--text-soft);
        }

        .header-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 2px;
        }

        .header-contact small {
            font-size: 11px;
            color: var(--text-soft);
        }

        .header-contact strong {
            font-size: 13px;
        }

        @media (min-width: 640px) {
            .header-inner {
                padding: 12px 0;
            }
        }

        /* =========================
           HERO VIDEO TIKTOK STYLE
        ========================== */
        .hero {
            padding: 18px 0 30px;
background: var(--bg-section);
        }

        .hero-layout {
            display: grid;
            gap: 20px;
        }

        @media (min-width: 960px) {
            .hero-layout {
                grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
                align-items: center;
            }
        }

        .hero-media-wrapper {
            position: relative;
            max-width: 420px;
            margin: 0 auto;
            filter: drop-shadow(0 22px 50px rgba(0,0,0,0.7));
        }

        .hero-phone-frame {
            position: relative;
            border-radius: 32px;
            padding: 6px;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(21,101,192,0.5), rgba(255,111,0,0.7));
        }

        .hero-video-inner {
            position: relative;
            border-radius: 26px;
            overflow: hidden;
            background: #000;
            aspect-ratio: 9/16; /* ukuran konten TikTok */
        }

        .hero-video-inner video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay-card {
            position: absolute;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border-radius: 16px;
            padding: 10px 12px 12px;
            background: linear-gradient(to top, rgba(5,8,20,0.95), rgba(5,8,20,0.85));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .badge-area {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 3px 9px;
            border-radius: 999px;
            background: rgba(26,115,232,0.18);
            color: var(--text-soft);
            font-size: 10px;
            margin-bottom: 5px;
        }

        .badge-area i {
            font-style: normal;
            font-size: 13px;
        }

        .hero-overlay-card h1 {
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 4px;
        }

        .hero-overlay-card p {
            font-size: 11px;
            color: var(--text-soft);
        }

        /* Teks sebelah kanan video (desktop) */
        .hero-text-wrap {
            text-align: left;
        }

        .hero-kicker {
            font-size: 11px;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 6px;
        }

        .hero-title-main {
            font-size: 22px;
            line-height: 1.4;
            font-weight: 700;
            margin-bottom: 10px;
        }

        @media (min-width: 768px) {
            .hero-title-main {
                font-size: 26px;
            }
        }

        .hero-subtext {
            font-size: 13px;
            color: var(--text-soft);
            margin-bottom: 12px;
        }

        .hero-highlight {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .hero-highlight span {
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(8,13,32,0.9);
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 500;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all .18s ease-out;
            text-decoration: none;
        }

        .btn-primary {
             background: #ffffff;
    color: #000000;
  box-shadow: 0 10px 30px rgba(255,122,24,0.4);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.6);
        }

        .btn-outline {
            border-color: rgba(255,255,255,0.2);
            background: rgba(11,16,35,0.9);
            color: var(--text-main);
        }

        .btn-outline:hover {
            border-color: var(--accent);
            background: rgba(20,26,52,1);
        }

        .btn small {
            font-size: 11px;
            font-weight: 400;
        }

        /* =========================
           SECTION WRAPPER
        ========================== */
        section.section {
            padding: 22px 0;
        }

        .section-header {
            margin-bottom: 16px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .section-kicker {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .15em;
            color: var(--accent);
        }

        .section-title {
            font-size: 18px;
            font-weight: 600;
        }

        .section-sub {
            font-size: 13px;
            color: var(--text-soft);
        }

        /* =========================
           LAYANAN GRID
        ========================== */
        .card-grid {
            display: grid;
            gap: 12px;
        }

        @media (min-width: 640px) {
            .card-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 960px) {
            .card-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .card {
            background: var(--bg-section);
            border-radius: var(--radius-lg);
            padding: 14px;
            border: 1px solid var(--border-soft);
            box-shadow: 0 10px 25px rgba(0,0,0,0.35);
        }

        .card h3 {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .card p {
            font-size: 12px;
            color: var(--text-soft);
        }

        .card-tag {
            font-size: 10px;
            display: inline-flex;
            padding: 3px 9px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.06);
            margin-bottom: 6px;
            color: var(--text-soft);
        }

        /* =========================
           JENIS AC
        ========================== */
        .jenis-grid {
            display: grid;
            gap: 10px;
        }

        @media (min-width: 640px) {
            .jenis-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .jenis-card {
            background: var(--bg-soft);
            border-radius: 14px;
            padding: 12px;
            border: 1px solid var(--border-soft);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        .jenis-text strong {
            font-size: 13px;
        }

        .jenis-text span {
            font-size: 11px;
            color: var(--text-soft);
        }

        .jenis-pill {
            font-size: 10px;
            padding: 3px 9px;
            border-radius: 999px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
        }

        /* =========================
           GALERI
        ========================== */
        .gallery-grid {
            display: grid;
            gap: 10px;
        }

        @media (min-width: 640px) {
            .gallery-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .gallery-item {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            background: #111;
            border: 1px solid var(--border-soft);
        }

        .gallery-item::after {
            content: "Service AC";
            position: absolute;
            left: 8px;
            bottom: 6px;
            font-size: 10px;
            padding: 3px 7px;
            border-radius: 999px;
            background: rgba(0,0,0,0.75);
        }

        .gallery-placeholder {
            height: 120px;
            background: linear-gradient(135deg, rgba(26,115,232,0.3), rgba(255,111,0,0.55));
            opacity: 0.85;
        }

        /* =========================
           FORM PEMESANAN
        ========================== */
        .form-shell {
background: var(--bg-section);            border-radius: 20px;
            padding: 16px 14px;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: var(--shadow-soft);
        }

        @media (min-width: 768px) {
            .form-shell {
                padding: 18px 20px;
            }
        }

        .form-grid {
            display: grid;
            gap: 10px;
        }

        @media (min-width: 768px) {
            .form-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .form-grid .full {
                grid-column: 1 / -1;
            }
        }

        .field {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .field label {
            font-size: 12px;
        }

        .field span.hint {
            font-size: 10px;
            color: var(--text-soft);
        }

        .field input,
        .field select,
        .field textarea {
            background: rgba(5,8,20,0.9);
            border-radius: 11px;
            border: 1px solid rgba(255,255,255,0.12);
            padding: 9px 10px;
            font-size: 12px;
            color: var(--text-main);
            outline: none;
        }

        .field textarea {
            min-height: 72px;
            resize: vertical;
        }

        .field input::placeholder,
        .field textarea::placeholder {
            color: #6e7593;
        }

        .form-bottom {
            margin-top: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            justify-content: space-between;
        }

        .form-note {
            font-size: 11px;
            color: var(--text-soft);
        }

        .btn-block {
            width: 100%;
        }

        @media (min-width: 480px) {
            .btn-block {
                width: auto;
            }
        }

        /* =========================
           ULASAN (GOOGLE MAPS STYLE)
        ========================== */
        .review-track {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 4px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .review-track::-webkit-scrollbar {
            height: 4px;
        }

        .review-track::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.25);
            border-radius: 999px;
        }

        .review-card {
            flex: 0 0 82%;
            max-width: 320px;
            scroll-snap-align: start;
            background: var(--bg-section);
            border-radius: 16px;
            border: 1px solid var(--border-soft);
            padding: 12px;
        }

        @media (min-width: 768px) {
            .review-card {
                flex-basis: 32%;
            }
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6a00, #ffb347);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: #050814;
        }

        .review-meta {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .review-name {
            font-size: 12px;
            font-weight: 600;
        }

        .review-date {
            font-size: 10px;
            color: var(--text-soft);
        }

        .review-stars {
            font-size: 12px;
            color: #ffb300;
        }

        .review-body {
            font-size: 12px;
            color: var(--text-soft);
        }

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

        .faq-item {
            border-radius: 14px;
            background: var(--bg-section);
            border: 1px solid var(--border-soft);
            padding: 10px 12px;
            cursor: pointer;
        }

        .faq-heading {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
        }

        .faq-title {
            font-size: 13px;
            font-weight: 500;
        }

        .faq-arrow {
            width: 20px;
            height: 20px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            transition: transform .18s ease-out, background .18s ease-out;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height .22s ease-out;
        }

        .faq-content-inner {
            padding-top: 6px;
            font-size: 12px;
            color: var(--text-soft);
        }

        .faq-item.open .faq-content {
            max-height: 200px;
        }

        .faq-item.open .faq-arrow {
            transform: rotate(90deg);
            background: rgba(255,255,255,0.06);
        }

        /* =========================
           FOOTER SIMPLE
        ========================== */
        footer.site-footer {
            padding: 18px 0 24px;
            font-size: 11px;
            color: var(--text-soft);
        }

        footer a {
            color: var(--accent);
        }

        /* =========================
           FIXED CONTACT BAR
        ========================== */
        .contact-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 60;
            padding: 8px 12px 10px;
            backdrop-filter: blur(14px);
            background: linear-gradient(to top, rgba(5,8,20,0.96), rgba(5,8,20,0.75));
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .contact-bar-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }

        .contact-bar-btn {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 9px 10px;
            border-radius: 999px;
            border: 1px solid transparent;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
        }

        .contact-bar-btn span.icon {
            font-size: 15px;
        }

        .contact-bar-wa {
            /* background: linear-gradient(135deg, #25d366, #06b6d4); */
                        color: #00AA13;

        }

        .contact-bar-call {
            background: #e18d04;
            border-color: rgba(200, 5, 5, 0.26);
            color: var(--text-main);
        }

        @media (min-width: 640px) {
            .contact-bar-inner {
                gap: 12px;
            }
        }
        
        /* === PRICE ACCORDION === */
.price-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item {
    background: var(--bg-section);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.price-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
}

.price-head h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.price-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.arrow {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease-out, background .25s ease-out;
}

.price-item.open .arrow {
    transform: rotate(90deg);
    background: rgba(255,255,255,0.12);
}

.price-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out, padding .3s ease-out;
    padding: 0 16px;
}

.price-item.open .price-body {
    padding: 14px 16px 18px;
    max-height: 650px; /* cukup tinggi untuk list panjang */
}

.price-body ul {
    list-style: none;
    margin-bottom: 10px;
    padding: 0;
}

.price-body ul li {
    font-size: 12px;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.btn-wa-small {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 999px;
    color: #050814;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

/* ==== ABOUT SECTION ==== */

.section-about {
    padding-top: 26px;
}

.about-layout {
    display: grid;
    gap: 20px;
}

/* DESKTOP: video kiri, teks kanan */
@media (min-width: 960px) {
    .about-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        align-items: center;
    }
}

/* VIDEO */
.about-video-wrap {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.about-video-frame {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #000;
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.about-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(5,8,20,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-soft);
}

/* TEKS */
.about-text-card {
    background: linear-gradient(135deg, #101633, #080c1c);
    border-radius: 20px;
    padding: 18px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-soft);
}

.about-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.about-text-card p {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 8px;
}

.about-pill {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(26,115,232,0.15);
    color: var(--text-soft);
    margin-bottom: 10px;
}

.about-bullets {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}

.about-bullets div {
    font-size: 12px;
    color: var(--text-soft);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.about-bullets .icon {
    font-size: 14px;
}

/* Tombol Telepon */
.about-call-btn {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

@media (min-width: 480px) {
    .about-call-btn {
        width: auto;
    }
}



/* =========================
   TRUST SECTION (NEW)
========================= */

.trust-section {
    padding-top: 10px;
}

.trust-grid {
    display: grid;
    gap: 20px;
}

/* Desktop */
@media (min-width: 960px) {
    .trust-grid {
        grid-template-columns: 1fr 1.1fr;
        align-items: center;
    }
}

/* FOTO */
.trust-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px dashed rgba(255,255,255,0.2); /* efek prangko */
    animation: glowBorder 2.5s infinite alternate;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* efek glow */
@keyframes glowBorder {
    0% {
        box-shadow: 0 0 0px rgba(255,106,0,0.3);
    }
    100% {
        box-shadow: 0 0 18px rgba(255,106,0,0.6);
    }
}

/* TEXT */
.trust-content {
    background: var(--bg-section);
    border-radius: 20px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
    transition: transform .3s ease;
}

.trust-content:hover {
    transform: translateY(-4px);
}

/* badge */
.trust-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(255,106,0,0.2);
    margin-bottom: 10px;
    animation: blink 1.5s infinite;
}

/* blink halus */
@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.trust-content h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.trust-content p {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 12px;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin-bottom: 14px;
}

.trust-list li {
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--text-soft);
}


.trust-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.trust-section.show {
    opacity: 1;
    transform: translateY(0);
}



.urgency-box {
    text-align: center;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff6a00, #ff9100);
    color: #050814;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    text-align: center;
}

@media (min-width:768px){
    .stats-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

.stat-item {
    background: var(--bg-section);
    padding: 14px;
    border-radius: 16px;
}

.stat-item strong {
    font-size: 18px;
    color: var(--accent);
}

.stat-item span {
    font-size: 12px;
    color: var(--text-soft);
}


/* MAP SECTION */
.map-wrapper {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

/* biar responsive */
.map-wrapper iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

/* desktop lebih tinggi */
@media (min-width:768px){
    .map-wrapper iframe {
        height: 350px;
    }
}


/* GUARANTEE SECTION */
.guarantee-box {
    background: var(--bg-section);
    border-radius: 20px;
    padding: 18px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

/* biar lebih lega di desktop */
@media (min-width:768px){
    .guarantee-box {
        padding: 22px 24px;
    }
}

.guarantee-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.guarantee-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantee-box ul li {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 6px;
    display: flex;
    gap: 6px;
}


.guarantee-box {
    position: relative;
}

.guarantee-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--accent), #ff9100);
}

.about-video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-frame img {
    transition: transform .6s ease;
}

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

/* === PHOTO HIGHLIGHT === */

.photo-box {
    display: grid;
    gap: 18px;
}

/* desktop layout */
@media (min-width: 960px) {
    .photo-box {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* FRAME FOTO */
.photo-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    border: 2px dashed rgba(255,255,255,0.2); /* efek prangko */
    animation: glowPhoto 2s infinite alternate;
}

/* ukuran kotak biar konsisten */
.photo-frame::before {
    content: "";
    display: block;
    padding-top: 100%; /* 1:1 ratio (600x600 feel) */
}

/* gambar */
.photo-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

/* hover zoom */
.photo-frame:hover img {
    transform: scale(1.08);
}

/* glow animasi */
@keyframes glowPhoto {
    0% { box-shadow: 0 0 0 rgba(255,106,0,0.2); }
    100% { box-shadow: 0 0 25px rgba(255,106,0,0.5); }
}

/* badge */
.photo-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(5,8,20,0.85);
    border: 1px solid rgba(255,255,255,0.1);
    animation: blink 1.5s infinite;
}

/* TEXT */
.photo-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.photo-text p {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 12px;
}

.photo-highlight {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.photo-highlight.show {
    opacity: 1;
    transform: translateY(0);
}


.container h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.container p {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.container ul {
    padding-left: 16px;
    margin-bottom: 10px;
}

.container ul li {
    font-size: 13px;
    margin-bottom: 6px;
}

/* === FOOTER LINKS === */

.footer-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* biar tengah */
}

/* link style */
.footer-links a {
    font-size: 12px;
    color: var(--text-soft);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all .2s ease;
}

/* hover effect */
.footer-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
}