/* ── Contact Us Page ─────────────────────────────────────── */
.cu-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* Hero */
.cu-hero {
    text-align: center;
    padding: 56px 24px 48px;
    position: relative;
    margin-bottom: 12px;
}
.cu-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212,175,55,.10) 0%, transparent 70%);
    pointer-events: none;
}
.cu-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold-dim, rgba(212,175,55,.12));
    border: 1px solid var(--border-gold, rgba(212,175,55,.25));
    border-radius: 999px; padding: 4px 14px;
    font-size: .68rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--gold-light, #e5c96a);
    margin-bottom: 20px;
}
.cu-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800; letter-spacing: -.02em;
    color: var(--text-1, #f0ece0); line-height: 1.15; margin-bottom: 12px;
}
.cu-hero-title span { color: var(--gold-light, #e5c96a); }
.cu-hero-sub { font-size: .82rem; color: var(--text-3, #6b6860); margin-top: 8px; }

/* Lang toggle */
.cu-lang-toggle { display: flex; justify-content: center; gap: 0; margin-bottom: 40px; }
.cu-lang-btn {
    padding: 7px 22px; font-size: .74rem; font-weight: 700;
    letter-spacing: .05em; cursor: pointer;
    border: 1px solid var(--border-gold, rgba(212,175,55,.25));
    background: transparent; color: var(--text-3, #6b6860);
    transition: all .2s; font-family: inherit;
}
.cu-lang-btn:first-child { border-radius: var(--radius, 8px) 0 0 var(--radius, 8px); }
.cu-lang-btn:last-child  { border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0; border-left: none; }
.cu-lang-btn.active { background: var(--gold-dim, rgba(212,175,55,.15)); color: var(--gold-light, #e5c96a); border-color: var(--border-gold, rgba(212,175,55,.4)); }
.cu-lang-btn:not(.active):hover { color: var(--text-1, #f0ece0); }

/* Contact cards grid */
.cu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.cu-card {
    background: var(--surface-2, #1a1915);
    border: 1px solid var(--border, #2a2720);
    border-radius: var(--radius-lg, 12px);
    padding: 24px 20px;
    display: flex; flex-direction: column; gap: 12px;
    text-decoration: none;
    transition: border-color .2s, transform .2s, background .2s;
    position: relative; overflow: hidden;
}
.cu-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,.06) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0; transition: opacity .2s;
}
.cu-card:hover { border-color: var(--border-gold, rgba(212,175,55,.35)); transform: translateY(-3px); }
.cu-card:hover::before { opacity: 1; }

.cu-card-icon {
    width: 44px; height: 44px;
    background: var(--gold-dim, rgba(212,175,55,.12));
    border: 1px solid var(--border-gold, rgba(212,175,55,.2));
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--gold, #d4af37);
    flex-shrink: 0;
}
.cu-card-label {
    font-size: .65rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--gold, #d4af37);
}
.cu-card-value {
    font-size: .88rem; font-weight: 600;
    color: var(--text-1, #f0ece0); line-height: 1.4;
}
.cu-card-desc { font-size: .73rem; color: var(--text-3, #6b6860); line-height: 1.6; }
.cu-card-arrow {
    margin-top: auto; font-size: .72rem;
    color: var(--gold-light, #e5c96a);
    display: flex; align-items: center; gap: 5px;
    opacity: 0; transition: opacity .2s;
}
.cu-card:hover .cu-card-arrow { opacity: 1; }

/* Divider */
.cu-divider { border: none; border-top: 1px solid var(--border, #2a2720); margin: 36px 0; }

/* Section title */
.cu-section-label {
    font-size: .65rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold, #d4af37);
    margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.cu-section-label::after {
    content: ''; flex: 1; height: 1px;
    background: var(--border, #2a2720);
}

/* Hours table */
.cu-hours {
    background: var(--surface-2, #1a1915);
    border: 1px solid var(--border, #2a2720);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden; margin-bottom: 32px;
}
.cu-hours-row {
    display: flex; align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border, #2a2720);
    font-size: .8rem;
}
.cu-hours-row:last-child { border-bottom: none; }
.cu-hours-day { flex: 1; color: var(--text-2, #a09880); font-weight: 500; }
.cu-hours-time { color: var(--text-1, #f0ece0); font-weight: 600; font-size: .78rem; }
.cu-hours-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--green-dim, rgba(34,197,94,.1));
    color: var(--green, #22c55e);
    border-radius: 5px; padding: 2px 8px;
    font-size: .62rem; font-weight: 700;
}

/* Info box */
.cu-info {
    background: var(--gold-dim, rgba(212,175,55,.07));
    border: 1px solid var(--border-gold, rgba(212,175,55,.2));
    border-radius: var(--radius, 8px);
    padding: 16px 20px; font-size: .8rem;
    color: var(--text-2, #a09880); line-height: 1.75;
    margin-bottom: 32px;
}
.cu-info i { color: var(--gold, #d4af37); margin-right: 7px; }
.cu-info strong { color: var(--text-1, #f0ece0); }

/* Social row */
.cu-socials { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.cu-social-pill {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 9px 18px; border-radius: 999px;
    border: 1px solid var(--border, #2a2720);
    background: var(--surface-2, #1a1915);
    color: var(--text-2, #a09880); font-size: .78rem;
    text-decoration: none; transition: all .2s;
}
.cu-social-pill:hover {
    border-color: var(--border-gold, rgba(212,175,55,.35));
    color: var(--gold-light, #e5c96a);
    background: var(--gold-dim, rgba(212,175,55,.08));
}
.cu-social-pill i { font-size: .9rem; }

/* Footer note */
.cu-footer-note {
    text-align: center; font-size: .7rem;
    color: var(--text-3, #6b6860);
    padding: 24px; border-top: 1px solid var(--border, #2a2720);
    line-height: 1.7;
}

/* Lang visibility */
body.lang-en .lang-id { display: none; }
body.lang-id .lang-en { display: none; }
body:not(.lang-en):not(.lang-id) .lang-en { display: none; }
