/* ==========================================================================
   PT NUART JIDOKA UTAMA - CONSOLIDATED BLUE, WHITE, BLACK & RED THEME
   ========================================================================== */

:root {
    --uon-dark: #080a10;       /* Hitam/Midnight Navy Pekat */
    --uon-gray: #111422;       /* Abu-abu gelap / navy pekat untuk card dark mode */
    --uon-accent: #4f46e5;     /* Biru Royal / Indigo */
    --uon-accent-gradient: linear-gradient(135deg, #4f46e5, #3b82f6); /* Gradasi Biru Elektrik */
    --uon-red: #c21a30;        /* Merah Industri Khas Logo NJU */
    --uon-red-gradient: linear-gradient(135deg, #c21a30, #ef4444); /* Gradasi Merah */
    --uon-text-dark: #111827;  /* Hitam arang bersih untuk teks */
    --uon-text-muted: #6b7280; /* Abu-abu redup */
    --uon-light-bg: #ffffff;   /* Putih Bersih (Clean White) */
    --uon-card-bg: #f8fafc;    /* Abu-abu sangat terang untuk kartu */
    --white: #ffffff;
}

/* --- 1. CORE STYLE & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--uon-text-dark);
    background-color: var(--uon-light-bg);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.uon-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-content.uon-style {
    flex: 1;
    padding: 60px 0;
}
h2 {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--uon-dark);
    margin-bottom: 30px;
    position: relative;
}
h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background-color: var(--uon-red); /* Garis aksen judul menggunakan MERAH logo */
    margin-bottom: 8px;
}

/* --- 2. HEADER & NAVIGATION --- */
/* Pengaturan Gambar Logo NJU di Header */
.header-brand-logo {
    height: 55px; /* Menentukan tinggi ideal logo */
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s;
}
.header-brand-logo:hover {
    transform: scale(1.02);
}
.uon-header {
    width: 100%;
}
.header-top-bar {
    background-color: var(--uon-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--uon-text-muted);
    font-size: 0.8rem;
    padding: 10px 0;
}
.top-bar-info span {
    margin-right: 20px;
}
.top-bar-info i {
    color: var(--uon-accent);
    margin-right: 5px;
}
.top-bar-social a {
    color: var(--uon-text-muted);
    margin-left: 15px;
    transition: color 0.3s;
}
.top-bar-social a:hover {
    color: var(--uon-accent);
}
.uon-navbar {
    background-color: var(--uon-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.uon-logo a {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
}
.uon-logo a span, .red-dot {
    color: var(--uon-red); /* Titik logo menggunakan MERAH logo */
}
.uon-nav-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}
.uon-nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}
.uon-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}
.uon-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--uon-accent);
    transition: width 0.3s;
}
.uon-nav-links a:hover::after,
.uon-nav-links a.active::after {
    width: 100%;
}
.uon-nav-links a:hover,
.uon-nav-links a.active {
    color: var(--uon-accent);
}
.uon-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.3s;
}
.uon-menu-toggle:hover {
    color: var(--uon-accent);
}
.btn-accent {
    background: var(--uon-accent-gradient);
    color: var(--white);
    padding: 12px 26px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.2s;
    border-radius: 50px; 
    display: inline-block;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}
.btn-accent:hover {
    opacity: 0.9;
    color: var(--white);
    transform: translateY(-1px);
}

/* --- 3. SITE FOOTER (3 COLUMNS) --- */
.site-footer {
    background-color: var(--uon-dark);
    color: var(--uon-text-muted);
    padding: 70px 0 0 0;
    border-top: 3px solid var(--uon-red); /* Garis pembatas atas berwarna MERAH logo */
    margin-top: auto;
}
.footer-cols-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}
.footer-col h3 {
    color: var(--white);
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer-tagline {
    color: var(--uon-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
    text-align: justify;
}
.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--uon-red);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--uon-accent);
}
.footer-address {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 15px;
}
.footer-icon {
    color: var(--uon-red); /* Ikon kontak berwarna MERAH logo */
    margin-right: 8px;
}
.footer-web a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}
.footer-web a:hover {
    color: var(--uon-accent);
}
.footer-copy-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    font-size: 0.8rem;
    color: #475569;
}

/* --- 4. PAGE: DASHBOARD --- */
.dashboard-section {
    padding: 80px 0;
    overflow: hidden;
}
.text-center {
    text-align: center;
    margin-bottom: 50px;
}
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--uon-accent);
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}
.uon-slider-wrapper {
    position: relative;
    height: 600px;
    margin-top: -60px;
    margin-bottom: 60px;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background-color: #0c0d0f;
}
.uon-slides {
    width: 100%;
    height: 100%;
    position: relative;
}
.uon-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}
.uon-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.uon-slide .uon-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.hero-content {
    max-width: 650px;
    width: 100%;
}
.hero-label {
    color: var(--uon-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--uon-accent);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-content h1 span {
    color: var(--uon-accent);
    border-bottom: 5px solid var(--uon-accent);
}
.hero-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(15, 23, 42, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active, .dot:hover {
    background-color: var(--uon-accent);
}
.selling-points-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.stacked-images {
    display: flex;
    gap: 20px;
    position: relative;
}
.img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-left {
    width: 55%;
    height: 420px;
}
.img-right {
    width: 45%;
    height: 280px;
    margin-top: 100px;
}
.sp-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}
.sp-content h2::before { display: none; }
.sp-desc {
    color: #64748b;
    margin-bottom: 35px;
}
.sp-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.sp-icon {
    background-color: #f0f3ff;
    color: var(--uon-accent);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.sp-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}
.sp-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}
.sp-btns {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}
.btn-secondary {
    background: none;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s;
    border-radius: 50px; 
}
.btn-secondary:hover {
    background-color: #f1f5f9;
}
.services-dark-section {
    background-color: var(--uon-dark);
    color: #ffffff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0;
}
.services-dark-section h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.2;
}
.services-dark-section h2::before { display: none; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card-premium {
    background-color: #ffffff;
    color: #1e293b;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}
.sc-image {
    height: 200px;
    overflow: hidden;
}
.sc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sc-body {
    padding: 30px;
    position: relative;
}
.sc-num {
    position: absolute;
    top: -35px;
    right: 30px;
    background: var(--uon-accent-gradient);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    border: 4px solid #ffffff;
}
.sc-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    margin-top: 10px;
}
.sc-body p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}
.read-more-link {
    color: var(--uon-accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.client-strip {
    background: var(--uon-accent-gradient);
    padding: 35px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.client-strip p {
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.logo-item {
    background-color: rgba(255,255,255,0.9);
    color: #1e3a8a;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.wu-left h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 25px;
}
.wu-left h2::before { display: none; }
.wu-left p {
    color: #64748b;
    margin-bottom: 35px;
}
.wu-right-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wu-card {
    background: var(--uon-light-bg);
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: start;
    transition: transform 0.3s;
}
.wu-card:hover {
    transform: translateY(-3px);
}
.wu-icon {
    background-color: #eff6ff;
    color: var(--uon-accent);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.wu-text h4 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}
.wu-text p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}
.team-section {
    background-color: var(--uon-dark);
    color: #ffffff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.team-section h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}
.team-section h2::before { display: none; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.team-card {
    background-color: var(--uon-gray);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s;
}
.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--uon-accent);
}
.team-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px auto;
    border: 4px solid rgba(255,255,255,0.05);
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}
.team-card p {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- 5. PAGE: ABOUT US --- */
.about-hero {
    background-color: var(--uon-accent); 
    background-image: var(--uon-accent-gradient);
    color: #ffffff;
    padding: 60px 0;
    margin-top: -60px; 
    margin-bottom: 60px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.about-intro-section {
    margin-bottom: 80px;
}
.num-accent {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--uon-red); /* Menggunakan warna MERAH logo */
}
.corp-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--uon-red); /* Menggunakan warna MERAH logo */
    margin-top: 0;
    margin-bottom: 20px;
}
.sub-intro-text {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}
.desc-left-text {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.8;
    text-align: justify;
}
.metrics-right {
    padding-top: 10px;
}
.progress-group {
    margin-bottom: 25px;
}
.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1e293b;
    margin-bottom: 8px;
}
.progress-bar-bg {
    background-color: #f1f5f9;
    height: 3px; 
    width: 100%;
    position: relative;
}
.progress-bar-fill {
    background-color: var(--uon-red); /* Progres bar menggunakan warna MERAH logo */
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 1s ease-in-out;
}
.split-banner {
    display: flex;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: var(--uon-accent); 
    background-image: var(--uon-accent-gradient);
    min-height: 500px;
}
.split-image-left {
    width: 50%;
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80'); 
    background-size: cover;
    background-position: center;
}
.split-content-right {
    width: 50%;
    padding: 80px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.features-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--uon-accent); 
    margin-bottom: 5px;
}
.features-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 25px;
}
.features-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
}
.features-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 35px;
}
.signature-area {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-top: 10px;
}

/* --- ADDISIONAL: LEGAL & BOARD CARDS (Slide 1 & 2) --- */
.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}
.legal-card {
    background-color: var(--uon-card-bg);
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
}
.legal-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--uon-dark);
    border-bottom: 2px solid var(--uon-red);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.legal-item {
    margin-bottom: 20px;
}
.legal-item:last-child {
    margin-bottom: 0;
}
.legal-item strong {
    font-size: 0.95rem;
    color: var(--uon-dark);
    display: block;
    margin-bottom: 5px;
}
.legal-item p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

/* --- 6. PAGE: SERVICES --- */
.services-hero {
    background-color: #171c26; 
    color: #ffffff;
    padding: 60px 0;
    margin-top: -60px; 
    margin-bottom: 50px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.breadcrumbs {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.breadcrumbs a {
    color: #cbd5e1;
    text-decoration: none;
}
.hero-title h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}
.hero-subtitle {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-top: 10px;
    max-width: 600px;
}
.print-page {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.print-page:hover {
    opacity: 1;
}
.services-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}
.services-sidebar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}
.sidebar-menu {
    list-style: none;
}
.sidebar-menu li {
    border-bottom: 1px solid #e2e8f0;
}
.sidebar-menu li:last-child {
    border-bottom: none;
}
.sidebar-menu a {
    display: block;
    padding: 18px 25px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.sidebar-menu li.active a,
.sidebar-menu a:hover {
    background-color: #f8fafc;
    color: var(--uon-accent); 
    border-left: 4px solid var(--uon-accent);
    padding-left: 21px;
}
.service-detail-content {
    color: #475569;
}
.service-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--uon-red); /* Menggunakan warna MERAH logo */
    margin-bottom: 5px;
}
.service-tagline {
    font-size: 1.8rem;
    color: var(--uon-red); /* Menggunakan warna MERAH logo */
    font-weight: 700;
    text-transform: lowercase;
    margin-bottom: 15px;
    margin-top: 0;
}
.service-intro-text {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}
.service-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}
.service-meta {
    display: flex;
    gap: 25px;
    font-size: 0.8rem;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}
.meta-item strong {
    color: var(--uon-accent);
    text-transform: uppercase;
}
.service-desc-body {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: justify;
}
.service-main-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- 7. PAGE: PROJECTS (REVISED: CLEAN LOGO CARD GRID) --- */
.showcase-hero {
    background-color: var(--uon-accent); 
    background-image: var(--uon-accent-gradient);
    color: #ffffff;
    padding: 60px 0;
    margin-top: -60px; 
    margin-bottom: 60px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.showcase-intro {
    margin-bottom: 40px;
}
.showcase-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--uon-red); 
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: lowercase;
}
.showcase-tagline {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 800px;
}
.showcase-filters {
    display: flex;
    gap: 25px;
    list-style: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 40px;
}
.filter-btn {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.3s, border-bottom 0.3s;
    position: relative;
}
.filter-btn.active,
.filter-btn:hover {
    color: var(--uon-red); 
}
.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--uon-red); 
}

/* Pengaturan Grid Kartu Logo Klien */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.showcase-item {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto; /* Dinamis mengikuti tinggi konten */
    transition: transform 0.3s, box-shadow 0.3s;
}
.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Area Atas: Wadah Logo */
.showcase-logo-area {
    background-color: #f8fafc; /* Latar abu-abu terang */
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-bottom: 1px solid #f1f5f9;
}
.showcase-logo-area img {
    max-width: 80%;
    max-height: 60px; /* Ukuran proporsional logo korporat */
    object-fit: contain; /* Menjaga rasio logo agar tidak gepeng */
    filter: grayscale(100%); /* Membuat logo bernuansa monokrom (opsional, hapus jika ingin warna asli) */
    opacity: 0.8;
    transition: filter 0.3s, opacity 0.3s;
}
.showcase-item:hover .showcase-logo-area img {
    filter: grayscale(0%); /* Berubah warna asli saat dihover */
    opacity: 1;
}

/* Placeholder Logo default jika kosong */
.logo-placeholder-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    gap: 5px;
}
.logo-placeholder-box i {
    font-size: 2.2rem;
}
.logo-placeholder-box span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Area Bawah: Info Detail Proyek */
.showcase-info-area {
    padding: 25px;
    background-color: var(--white);
    flex-grow: 1;
}
.showcase-client {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--uon-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.showcase-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    text-align: justify;
}
.showcase-category-tag {
    font-size: 0.7rem;
    color: var(--uon-red); 
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}

/* --- 8. PAGE: GALLERY --- */
.gallery-page-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--uon-dark);
    margin-bottom: 10px;
}
.gallery-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.gallery-catalog-item {
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.gallery-catalog-placeholder {
    background: #e2e8f0;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 20px;
    text-align: center;
}
.gallery-catalog-body {
    padding: 20px;
    flex-grow: 1;
}
.gallery-catalog-tag {
    font-size: 0.7rem;
    background: var(--uon-dark);
    color: white;
    padding: 4px 8px;
    text-transform: uppercase;
    font-weight: 700;
}
.gallery-catalog-body h3 {
    font-size: 1.1rem;
    color: var(--uon-dark);
    margin: 15px 0 8px 0;
    font-weight: 700;
}
.gallery-catalog-body p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* --- 9. PAGE: CONTACT US --- */
.contact-hero {
    background-color: var(--uon-accent); 
    background-image: var(--uon-accent-gradient);
    color: #ffffff;
    padding: 60px 0;
    margin-top: -60px; 
    margin-bottom: 60px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}
.contact-tagline {
    font-size: 2rem;
    font-weight: 800;
    color: var(--uon-red); /* Menggunakan warna MERAH logo */
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: lowercase;
}
.contact-desc {
    font-size: 1.15rem;
    color: var(--uon-accent);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 40px;
}
.map-container {
    width: 100%;
    height: 380px;
    border: 1px solid #e2e8f0;
    background-color: #f1f5f9;
    overflow: hidden;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}
.address-box h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--uon-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.address-box p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}
.address-box a {
    color: var(--uon-accent);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-size: 0.95rem;
    color: #334155;
    background-color: #ffffff;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--uon-red); /* Menggunakan warna MERAH logo */
}
.alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}
.alert-success {
    background-color: #f0fdf4;
    border-left: 4px solid #22c55e;
    color: #166534;
}
.alert-danger {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

/* --- 10. MEDIA QUERIES (RESPONSIVE CONFIG) --- */
@media (max-width: 992px) {
    .uon-menu-toggle {
        display: block;
    }
    .uon-nav-wrap {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--uon-dark);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }
    .uon-nav-wrap.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .uon-nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
        margin-bottom: 20px;
    }
    .uon-nav-links li {
        width: 100%;
    }
    .uon-nav-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }
    .uon-nav-links a::after {
        display: none;
    }
    .uon-nav-btn {
        width: 85%;
    }
    .uon-nav-btn .btn-accent {
        display: block;
        width: 100%;
        text-align: center;
    }
    .selling-points-grid, .why-us-grid, .contact-layout, .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stacked-images {
        justify-content: center;
    }
    .split-banner {
        flex-direction: column;
    }
    .split-image-left,
    .split-content-right {
        width: 100%;
        min-height: 350px;
    }
    .split-content-right {
        padding: 40px;
    }
    .legal-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .showcase-filters {
        flex-wrap: wrap;
        gap: 15px;
    }
}
@media (max-width: 576px) {
    .address-grid, .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}