/*
Theme Name: Larson Theme
Theme URI: https://bslthemes.com/larson/
Author: Antigravity
Author URI: https://github.com/google-deepmind
Description: Custom WordPress theme converted from Larson HTML mockup featuring full-page vertical dark scroll-snap layouts, dynamic testimonial slider, custom sticky subpage header, and parallax footer reveal scroll effect.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: larson-theme
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --bg-primary: #0e0d0c;
    --bg-secondary: #141312;
    
    --text-primary: #ffffff;
    --text-secondary: #b5b3b0;
    --text-muted: #6e6c69;
    
    --accent: #3a7bd5;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.2);
    
    --transition-quick: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    
    --hud-color: #ffffff;
    --hud-color-muted: rgba(255, 255, 255, 0.6);
    --hud-border: rgba(255, 255, 255, 0.15);

    --brand-blue: #3a7bd5;
    --brand-blue-hover: #2e67c0;
}

body.light-hud {
    --hud-color: #000000;
    --hud-color-muted: rgba(0, 0, 0, 0.5);
    --hud-border: rgba(0, 0, 0, 0.15);
}

html[data-theme="light"] {
    --bg-primary: #faf9f5;
    --bg-secondary: #ffffff;
    --text-primary: #1c1a17;
    --text-secondary: #595652;
    --text-muted: #918e8a;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.12);
}

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

body, html {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100%;
    transition: background-color 0.5s ease, color 0.5s ease;
}

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

button {
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

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

/* ==========================================
 * HEADER / NAVIGATION (HUD overlay style)
 * ========================================== */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    border-bottom: none;
    pointer-events: none;
}

header .container {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 0 80px;
}

@media (max-width: 900px) {
    header .container {
        padding: 0 40px;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none;
    pointer-events: auto;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--hud-color);
    letter-spacing: -0.5px;
    transition: color 0.5s ease;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    color: var(--hud-color-muted);
    letter-spacing: 0.5px;
    transition: color 0.5s ease;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
    pointer-events: auto;
}

@media (max-width: 900px) {
    nav {
        display: none;
    }
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    transition: color 0.5s ease;
}

/* =============================================
 * Navbar hitam di section terang
 * ============================================= */
body.light-hud .nav-link,
body.light-hud nav .nav-link,
body.light-hud header .nav-link,
body.light-hud nav a.nav-link {
    color: #000000 !important;
}

/* =============================================
 * SOCIAL ICONS - HAPUS X/TWITTER
 * ============================================= */
.header-socials li:nth-child(2) {
    display: none !important;
}

/* =============================================
 * SOCIAL ICONS - SECTION GELAP (putih)
 * ============================================= */
body:not(.light-hud) .header-socials li a {
    color: #ffffff !important;
}

/* =============================================
 * SOCIAL ICONS - SECTION TERANG (hitam)
 * Override bawaan tema yang rusak Instagram
 * ============================================= */
body.light-hud .header-socials li a {
    color: #000000 !important;
}

/* Reset override bawaan tema - jangan fill semua */
body.light-hud .header-socials li a svg {
    fill: none !important;
    stroke: currentColor !important;
}

/* FACEBOOK & YOUTUBE - berbasis fill */
body.light-hud .header-socials li a[href*="facebook"] svg,
body.light-hud .header-socials li a[href*="facebook"] svg *,
body.light-hud .header-socials li a[href*="youtube"] svg,
body.light-hud .header-socials li a[href*="youtube"] svg * {
    fill: currentColor !important;
    stroke: none !important;
}

/* INSTAGRAM - berbasis stroke */
body.light-hud .header-socials li a[href*="instagram"] svg,
body.light-hud .header-socials li a[href*="instagram"] svg * {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.5px !important;
}

/* Hover biru semua section */
body.light-hud .header-socials li a:hover,
body.light-hud .header-socials li a:hover svg {
    color: var(--accent) !important;
    stroke: var(--accent) !important;
}

body.light-hud .header-socials li a:hover svg * {
    stroke: var(--accent) !important;
}

body.light-hud .hud-copy {
    color: #000000 !important;
}

/* =============================================
 * NAVBAR HOVER BIRU - semua section
 * ============================================= */
.nav-link:hover,
body.light-hud .nav-link:hover,
body.light-hud nav .nav-link:hover,
body.light-hud header .nav-link:hover,
body.light-hud nav a.nav-link:hover,
body:not(.light-hud) .nav-link:hover,
nav a:hover,
header nav a:hover {
    color: var(--accent) !important;
}

/* Halaman aktif juga biru */
nav .current-menu-item > a,
nav .current_page_item > a,
nav .current-menu-ancestor > a,
body.light-hud nav .current-menu-item > a,
body.light-hud nav .current_page_item > a {
    color: var(--accent) !important;
}

.nav-link svg {
    opacity: 0.8;
    stroke: currentColor;
    transition: transform 0.3s;
}

.nav-link:hover svg {
    transform: translateY(1px);
}

.header-utils {
    display: flex;
    align-items: center;
    gap: 20px;
    pointer-events: auto;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.header-socials li a {
    color: var(--hud-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.5s ease;
}

.header-socials li a:hover {
    color: var(--accent);
}

.theme-toggle {
    background: none;
    border: 1px solid var(--hud-border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hud-color);
    transition: color 0.5s ease, border-color 0.5s ease;
}

.theme-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

html[data-theme="light"] .moon-icon { display: none; }
html[data-theme="light"] .sun-icon { display: block; }
html[data-theme="dark"] .moon-icon { display: block; }
html[data-theme="dark"] .sun-icon { display: none; }

/* ==========================================
 * FIXED OVERLAY HUD FOOTER
 * ========================================== */
.hud-footer {
    position: fixed;
    bottom: 40px;
    left: 80px;
    right: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
}

@media (max-width: 900px) {
    .hud-footer {
        left: 40px;
        right: 40px;
        bottom: 30px;
    }
}

.hud-copy {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--hud-color);
    pointer-events: auto;
    transition: color 0.5s ease;
}

.hud-lang-selector {
    display: flex;
    gap: 20px;
    list-style: none;
    pointer-events: auto;
}

.hud-lang-selector li a {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--hud-color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.5s ease;
}

.hud-lang-selector li.active a,
.hud-lang-selector li a:hover {
    color: var(--accent);
}

/* ==========================================
 * VERTICAL DOTS NAVIGATION
 * ========================================== */
.vertical-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 768px) {
    .vertical-nav {
        display: none;
    }
}

.vertical-nav-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    position: relative;
    text-decoration: none;
}

.vertical-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--hud-color-muted);
    transition: background-color 0.5s ease, transform 0.3s;
}

.vertical-nav-item:hover .vertical-nav-dot,
.vertical-nav-item.active .vertical-nav-dot {
    background-color: var(--accent);
    transform: scale(1.4);
}

.vertical-nav-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

.vertical-nav-item:hover .vertical-nav-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ==========================================
 * SECTION CORE STRUCTURE
 * ========================================== */
.section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: none;
    z-index: 1;
    transform: translateY(100%);
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
    pointer-events: none;
}

.section.active {
    transform: translateY(0);
    z-index: 10;
    pointer-events: auto;
}

.section.prev {
    transform: translateY(-30%);
    z-index: 5;
    pointer-events: none;
}

.section.next {
    transform: translateY(100%);
    z-index: 1;
    pointer-events: none;
}

.scroll-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.section-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: translateY(10%);
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.section.active .section-bg {
    transform: translateY(0);
}

.section.prev .section-bg {
    transform: translateY(-10%);
}

.section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 13, 12, 0.45);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

.light-section {
    background-color: #ffffff;
    color: #000000;
}

.light-section .section-bg::after {
    background-color: rgba(255, 255, 255, 0.05);
}

.welcome-box, 
.services-layout, 
.projects-slider-container, 
.testimonials-wrapper, 
.team-container, 
.news-layout-clean, 
.contact-layout-clean {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, transform 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.section.active .welcome-box,
.section.active .services-layout,
.section.active .projects-slider-container,
.section.active .testimonials-wrapper,
.section.active .team-container,
.section.active .news-layout-clean,
.section.active .contact-layout-clean {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
 * SECTION 1: WELCOME
 * ========================================== */
.welcome-box {
    max-width: 900px;
    position: relative;
    z-index: 5;
    margin-top: 60px;
}

.welcome-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
    display: block;
    letter-spacing: 0.5px;
}

.welcome-title {
    font-size: 75px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 40px;
    color: #fff;
}

@media (max-width: 900px) {
    .welcome-title { font-size: 50px; }
}

@media (max-width: 600px) {
    .welcome-title { font-size: 36px; margin-bottom: 25px; }
}

.welcome-line {
    width: 110px;
    height: 2px;
    background-color: var(--accent);
}

/* ==========================================
 * SECTION 2: SERVICES
 * ========================================== */
.services-layout {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 80px;
    width: 100%;
    z-index: 5;
    margin-top: 50px;
    align-items: start;
}

@media (max-width: 900px) {
    .services-layout { grid-template-columns: 1fr; gap: 30px; margin-top: 80px; }
}

.services-left {
    display: flex;
    flex-direction: column;
}

.services-digit-wrap {
    display: flex;
    align-items: flex-start;
    font-family: var(--font-heading);
    line-height: 0.8;
    margin-bottom: 20px;
    color: var(--accent);
}

.services-digit {
    font-size: 150px;
    font-weight: 800;
    color: var(--accent);
}

.services-plus {
    font-size: 50px;
    font-weight: 700;
    margin-top: 20px;
    margin-left: 5px;
    color: var(--accent);
}

.services-left-text {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #000;
}

.services-right-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.1;
    color: #000;
}

@media (max-width: 768px) {
    .services-right-title { font-size: 28px; margin-bottom: 30px; }
    .services-digit { font-size: 100px; }
}

.services-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
}

@media (max-width: 600px) {
    .services-items-grid { grid-template-columns: 1fr; gap: 20px; }
}

.services-grid-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 25px;
}

.services-item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.services-item-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    line-height: 1.6;
}

.services-item-link {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-quick);
}

.services-item-link:hover .link-arrow {
    transform: translateX(4px);
}

.link-arrow {
    transition: transform 0.2s;
    display: inline-block;
}

/* ==========================================
 * SECTION 3: FEATURED PROJECTS SLIDER
 * ========================================== */
.projects-slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.projects-slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    cursor: grab;
}

.projects-slider-track.dragging {
    transition: none;
    cursor: grabbing;
}

.projects-slide {
    width: 33.3333%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.projects-slide .section-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: translateY(10%) scale(1.1);
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1), scale 8s cubic-bezier(0.25, 1, 0.5, 1);
}

.section.active .projects-slide .section-bg { transform: translateY(0) scale(1.1); }
.section.active .projects-slide.active .section-bg { transform: translateY(0) scale(1); }
.section.prev .projects-slide .section-bg { transform: translateY(-10%) scale(1.1); }

.proj-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 13, 12, 0.45);
    z-index: 2;
}

.proj-content-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    padding: 0 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proj-left-side {
    width: 55%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.proj-right-side {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.proj-subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.proj-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
}

@media (max-width: 1200px) { .proj-title { font-size: 48px; } }
@media (max-width: 768px) { .proj-title { font-size: 32px; margin-bottom: 15px; } }

.proj-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-elegant-gold {
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-elegant-gold:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-2px);
}

.proj-date {
    display: block;
    font-family: var(--font-mono);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.proj-tag {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .proj-content-wrap { flex-direction: column; justify-content: center; align-items: flex-start; padding: 0 40px; }
    .proj-left-side { width: 100%; margin-bottom: 30px; }
    .proj-right-side { width: 100%; align-items: flex-start; text-align: left; }
    .proj-title { font-size: 36px; }
}

.slide-edge-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 100;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.25);
}

.slide-edge-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 0, 0, 0.6);
}

.slide-edge-btn.prev { left: 40px; }
.slide-edge-btn.next { right: 40px; }

@media (max-width: 900px) {
    .slide-edge-btn { width: 45px; height: 45px; top: 50%; }
    .slide-edge-btn.prev { left: 20px; }
    .slide-edge-btn.next { right: 20px; }
}

.projects-slide .proj-subtitle,
.projects-slide .proj-title,
.projects-slide .proj-description,
.projects-slide .btn-elegant-gold,
.projects-slide .proj-right-side {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.projects-slide.active .proj-subtitle { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.projects-slide.active .proj-title { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.projects-slide.active .proj-description { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.projects-slide.active .btn-elegant-gold { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.projects-slide.active .proj-right-side { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* ==========================================
 * SECTION 4: TESTIMONIALS
 * ========================================== */
.testimonials-wrapper {
    width: 100%;
    margin-top: 40px;
}

.testimonials-main-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 50px; }
    .testimonials-main-title { font-size: 32px; margin-bottom: 40px; }
}

.testimonial-box {
    border: 2px solid var(--accent);
    border-radius: 0;
    padding: 50px 40px 40px 40px;
    position: relative;
    background-color: #ffffff;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-avatar-wrap {
    position: absolute;
    top: -30px;
    left: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    background-color: #ffffff;
    z-index: 5;
}

.testimonial-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote-icon {
    position: absolute;
    top: 15px;
    right: 40px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--accent);
    line-height: 1;
    font-weight: 700;
    opacity: 0.25;
    pointer-events: none;
}

.testimonial-box-content {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 2px;
}

.testimonial-role {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.testimonial-text {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    font-style: normal;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: var(--accent);
}

/* ==========================================
 * SECTION 5: TEAM
 * ========================================== */
.team-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.team-slider-track {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-slide {
    width: 50%;
    height: 100%;
    display: flex;
    flex-shrink: 0;
    position: relative;
}

.team-content {
    width: 42%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px 0 80px;
    background-color: var(--bg-primary);
    z-index: 3;
}

@media (max-width: 900px) {
    .team-slide { flex-direction: column-reverse; }
    .team-content { width: 100%; height: 55%; padding: 40px 40px 100px 40px; justify-content: flex-start; }
    .team-visual { width: 100%; height: 45%; }
}

.team-subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.team-name {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
}

.team-role-light {
    font-weight: 300;
    font-size: 0.6em;
    color: var(--text-secondary);
}

@media (max-width: 1200px) { .team-name { font-size: 48px; } }
@media (max-width: 768px) { .team-name { font-size: 32px; margin-bottom: 15px; } }

.team-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.team-socials {
    display: flex;
    gap: 25px;
}

.team-socials a {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.3s;
    text-transform: uppercase;
}

.team-socials a:hover {
    color: var(--accent);
}

.team-visual {
    width: 58%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
 * SECTION 6: LATEST NEWS
 * ========================================== */
.news-layout-clean {
    width: 100%;
    margin-top: -30px;
}

.news-header-clean {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.news-heading-clean {
    font-size: 44px;
    font-weight: 800;
    color: #000000;
}

.news-view-all-clean {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.news-view-all-clean:hover { color: var(--accent); }
.news-view-all-clean svg { stroke: currentColor; transition: transform 0.2s; }
.news-view-all-clean:hover svg { transform: translateX(4px); }

.news-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

@media (max-width: 900px) {
    .news-grid-clean { grid-template-columns: repeat(2, 1fr); }
    .news-heading-clean { font-size: 32px; }
}

@media (max-width: 600px) { .news-grid-clean { grid-template-columns: 1fr; } }

.news-card-clean {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.news-text-box {
    border: 2px solid var(--accent);
    padding: 35px 25px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-align: left;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.news-card-clean:hover .news-text-box {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.news-date-clean {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    display: block;
}

.news-title-clean {
    font-size: 20px;
    font-weight: 800;
    color: #000000;
    line-height: 1.25;
    font-family: var(--font-heading);
}

.news-desc-clean {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.news-link-clean {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.news-link-clean svg { stroke: currentColor; transition: transform 0.2s; }
.news-link-clean:hover svg { transform: translateX(4px); }

.news-image-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card-clean:hover .news-image-card img { transform: scale(1.05); }

/* ==========================================
 * SECTION 7: CONTACT
 * ========================================== */
.contact-layout-clean {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    width: 100%;
    align-items: start;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .contact-layout-clean { grid-template-columns: 1fr; gap: 40px; margin-top: 80px; }
}

.contact-info-clean {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-title-clean {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

@media (max-width: 768px) { .contact-title-clean { font-size: 40px; } }

.contact-desc-clean {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details-clean {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-bold {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.contact-detail-small {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
}

.contact-detail-small a:hover { color: var(--accent); }

.contact-form-clean {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-title-clean {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.4;
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field-wrap { width: 100%; }

.form-field-wrap input,
.form-field-wrap textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 20px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.form-field-wrap input:focus,
.form-field-wrap textarea:focus { border-color: var(--accent); }

.form-field-wrap ::placeholder { color: rgba(255, 255, 255, 0.4); }

.submit-alert {
    display: none;
    padding: 15px;
    background-color: rgba(243, 177, 55, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 15px;
}

.form-submit-wrap {
    display: flex;
    justify-content: flex-start;
}

/* ==========================================
 * CASE DRAWERS MODAL PANEL
 * ========================================== */
.project-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100%;
    background-color: var(--bg-secondary);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: right 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

@media (max-width: 1024px) { .project-panel { width: 70%; } }
@media (max-width: 768px) { .project-panel { width: 100%; } }

.project-panel.active { right: 0; }

.panel-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: 1px solid var(--border-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    z-index: 10;
    transition: var(--transition-quick);
}

.panel-close-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.panel-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.panel-body {
    padding: 50px 40px;
    flex: 1;
}

.panel-category {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.panel-title {
    font-size: 36px;
    margin-bottom: 30px;
}

.panel-meta-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    margin-bottom: 30px;
}

.panel-meta-item span {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.panel-meta-item strong {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-primary);
}

.panel-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.panel-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================
 * NEWS PAGE - MODERN CARD LAYOUT
 * ========================================== */

/* Hero */
.news-page-hero {
    background-color: #faf9f5;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 180px 0 70px;
}

.news-page-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.news-page-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 800;
    color: #0e0d0c;
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -1px;
    text-transform: none;
}

.news-page-desc {
    font-size: 16px;
    color: #595652;
    line-height: 1.7;
    max-width: 500px;
}

/* Main section */
.news-page-main {
    padding: 80px 0 120px;
    background-color: #f5f5f3;
}

/* Grid 3 kolom */
.news-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .news-modern-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .news-modern-grid { grid-template-columns: 1fr; }
    .news-page-title { font-size: 38px; }
    .news-page-hero { padding: 140px 0 50px; }
}

/* Card */
.news-modern-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    display: flex;
    flex-direction: column;
}

.news-modern-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

/* Image wrap */
.news-modern-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    text-decoration: none;
}

.news-modern-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-modern-card:hover .news-modern-img {
    transform: scale(1.06);
}

.news-modern-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.news-modern-card:hover .news-modern-img-overlay {
    opacity: 1;
}

/* Category badge */
.news-modern-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 5;
}

/* Card body */
.news-modern-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Date */
.news-modern-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: #918e8a;
    margin-bottom: 14px;
}

.news-modern-date svg {
    opacity: 0.7;
    flex-shrink: 0;
}

/* Title */
.news-modern-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #0e0d0c;
    margin-bottom: 12px;
    text-transform: none;
}

.news-modern-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.news-modern-title a:hover {
    color: var(--accent);
}

/* Excerpt */
.news-modern-excerpt {
    font-size: 14px;
    color: #595652;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

/* Read more link */
.news-modern-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.25s ease;
    margin-top: auto;
}

.news-modern-link:hover {
    gap: 13px;
}

.news-modern-link svg {
    flex-shrink: 0;
    transition: transform 0.25s;
}

.news-modern-link:hover svg {
    transform: translateX(4px);
}