:root {
    --gold: #c9a13a;
    --gold-soft: #e5c770;
    --gold-light: #f4e8c1;
    --dark-bg: #0a0a0a;
    --dark-card: #151515;
    --darker-card: #111;
    --white: #ffffff;
    --gray: #a0a0a0;
    --light-gray: #e0e0e0;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --radius: 8px;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

body { 
    font-family: 'Poppins', sans-serif; 
    background: var(--dark-bg); 
    color: var(--white); 
    line-height: 1.6; 
    overflow-x: hidden; 
    width: 100%;
    position: relative;
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    text-align: center;
}

.spinner-inner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(201, 161, 58, 0.3);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner span {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
}

/* NAVBAR */
.navbar { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000; 
    padding: 15px 0; 
    transition: var(--transition); 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
}

.navbar.scrolled { 
    padding: 10px 0; 
    border-bottom-color: var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: relative;
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    color: var(--gold); 
    font-weight: 700; 
    font-size: 1.2rem; 
    z-index: 1003;
}

.logo img { 
    height: 40px; 
    transition: var(--transition);
}

.logo:hover img {
    transform: rotate(-10deg);
}

.nav-menu { 
    display: flex; 
    gap: 25px; 
}

.nav-menu a { 
    text-decoration: none; 
    color: white; 
    font-weight: 500; 
    font-size: 0.9rem; 
    transition: var(--transition); 
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover { 
    color: var(--gold); 
}

/* HAMBURGER */
.hamburger { 
    display: none; 
    font-size: 1.3rem; 
    cursor: pointer; 
    color: var(--white);
    transition: var(--transition);
    z-index: 1003;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.hamburger:hover {
    color: var(--gold);
    background: rgba(201, 161, 58, 0.1);
    border-color: rgba(201, 161, 58, 0.3);
}

/* HERO */
.hero { 
    min-height: 100vh;
    height: auto;
    display: flex; 
    align-items: center; 
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=1600') center/cover fixed;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(201, 161, 58, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1; 
    margin-bottom: 15px; 
    font-weight: 700;
}

.hero h3 { 
    color: var(--gold-soft); 
    font-weight: 400; 
    margin-bottom: 20px; 
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.hero p { 
    max-width: 600px; 
    color: #ccc; 
    margin-bottom: 30px; 
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
    font-size: 0.95rem;
}

.btn-primary { 
    background: var(--gold); 
    color: black; 
}

.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(201, 161, 58, 0.3); 
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: black;
    transform: translateY(-3px);
}

/* STATISTIK */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px 15px;
    background: rgba(201, 161, 58, 0.08);
    border-radius: var(--radius);
    min-width: 130px;
    border: 1px solid rgba(201, 161, 58, 0.15);
    transition: var(--transition);
    flex: 1;
}

.stat-item:hover {
    background: rgba(201, 161, 58, 0.12);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(201, 161, 58, 0.3);
}

.stat-label {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: var(--white);
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

.hero-scroll a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.hero-scroll a:hover {
    color: var(--gold);
}

/* ABOUT & SERVICES */
.about, .services, .process, .portfolio, .testimonials, .contact { 
    padding: 80px 0; 
}

@media (min-width: 768px) {
    .about, .services, .process, .portfolio, .testimonials, .contact { 
        padding: 100px 0; 
    }
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 40px; 
    align-items: center; 
}

@media (min-width: 768px) {
    .about-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 60px; 
    }
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: black;
    padding: 15px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge span {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.sub-title { 
    color: var(--gold); 
    font-weight: 700; 
    letter-spacing: 2px; 
    font-size: 0.8rem; 
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title { 
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    margin-bottom: 20px; 
    line-height: 1.2;
    font-weight: 700;
}

.section-desc {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
}

.feature-list { 
    list-style: none; 
    margin: 25px 0; 
}

.feature-list li { 
    margin-bottom: 12px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 1rem;
}

.feature-list i { 
    color: var(--gold); 
    font-size: 1.1rem;
}

.why-box { 
    background: var(--dark-card); 
    padding: 25px; 
    border-left: 4px solid var(--gold); 
    margin-top: 30px; 
    border-radius: 0 var(--radius) var(--radius) 0;
}

.why-box h4 {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.why-box p {
    color: var(--gray);
    line-height: 1.7;
}

.services { 
    background: #0f0f0f; 
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    justify-content: center; /* INI KUNCINYA */
    gap: 30px;
}

@media (min-width: 576px) {
    .cards { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (min-width: 992px) {
    .cards { 
        grid-template-columns: repeat(4, 1fr); 
    }
}

.card { 
    background: var(--dark-card); 
    padding: 30px 20px; 
    border-radius: 12px; 
    text-align: center; 
    transition: var(--transition); 
    border: 1px solid rgba(255,255,255,0.05); 
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover { 
    border-color: var(--gold); 
    transform: translateY(-10px); 
    box-shadow: var(--shadow);
}

.card-icon { 
    font-size: 2.5rem; 
    color: var(--gold); 
    margin-bottom: 20px; 
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.card p {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
    font-size: 0.95rem;
}

.card-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.card-link:hover {
    gap: 10px;
    color: var(--gold-soft);
}





/* PROCESS SECTION */
.process {
    background: var(--darker-card);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 161, 58, 0.1) 0%, transparent 70%);
}

.process-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .process-container {
        grid-template-columns: 1fr 1fr;
    }
}

.process-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px; /* biar elegan, gak kepanjangan */
    margin: 0 auto 20px;
    
    aspect-ratio: 9 / 16; /* INI YANG BIKIN PORTRAIT */
    
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
    border: 2px solid rgba(201, 161, 58, 0.2);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* biar full & aesthetic */
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: 0.3s;
}

.video-wrapper:hover {
    transform: scale(1.03);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    border-radius: var(--radius);
}

.video-wrapper.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: black;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .play-btn {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(201, 161, 58, 0.5);
}

.video-info {
    text-align: center;
    color: white;
    padding: 0 15px;
}

.video-info h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.video-info p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.video-description {
    margin-top: 20px;
    padding: 20px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
}

.video-description p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.video-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 576px) {
    .video-controls {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.control-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.control-btn {
    padding: 8px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.control-btn:hover {
    background: var(--gold);
    color: black;
    border-color: var(--gold);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.volume-control i {
    color: var(--gold);
}

.volume-control input[type="range"] {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    display: flex;
    gap: 15px;
    background: var(--dark-card);
    padding: 15px;
    border-radius: var(--radius);
    border-left: 4px solid transparent;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.process-step.active {
    border-left-color: var(--gold);
    background: rgba(201, 161, 58, 0.05);
    border-color: rgba(201, 161, 58, 0.2);
}

.step-number {
    min-width: 35px;
    height: 35px;
    background: var(--gold);
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h4 {
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.process-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 576px) {
    .process-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .process-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--dark-card);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.feature-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.feature-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* PORTFOLIO */
.portfolio-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 15px; 
    margin-bottom: 40px;
}

@media (min-width: 576px) {
    .portfolio-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (min-width: 992px) {
    .portfolio-grid { 
        grid-template-columns: repeat(4, 1fr); 
    }
}

.grid-item { 
    position: relative; 
    height: 250px; 
    border-radius: 12px; 
    overflow: hidden; 
    cursor: pointer;
}

.grid-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
}

.overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); 
    display: flex; 
    flex-direction: column;
    justify-content: flex-end; 
    align-items: flex-start; 
    padding: 15px;
    opacity: 0; 
    transition: 0.5s; 
}

.grid-item:hover .overlay { 
    opacity: 1; 
}

.grid-item:hover img { 
    transform: scale(1.05); 
}

.overlay span { 
    color: white; 
    font-weight: 600; 
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.overlay p {
    color: var(--light-gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

.view-more-container {
    text-align: center;
    margin: 40px 0;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 10px 20px rgba(201, 161, 58, 0.2);
    transform: translateY(-3px);
}

.btn-outline:hover i {
    transform: translateX(5px);
}

.sub-section-title { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    color: var(--white); 
    margin: 60px 0 30px;
    border-left: 5px solid var(--gold); 
    padding-left: 15px; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detailed-portfolio { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}

.project-card { 
    background: #e5d9c6; 
    color: black; 
    padding: 20px; 
    border-radius: 4px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.4); 
}

@media (min-width: 768px) {
    .project-card { 
        padding: 30px; 
    }
}

.project-header { 
    display: flex; 
    flex-direction: column;
    gap: 10px;
    border-bottom: 2px solid #333; 
    padding-bottom: 15px;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .project-header { 
        flex-direction: row;
        justify-content: space-between; 
        align-items: flex-start;
    }
}

.project-title-group {
    flex: 1;
}

.project-main-title { 
    font-weight: 900; 
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    text-transform: uppercase; 
    letter-spacing: -0.5px; 
    margin-bottom: 5px;
    line-height: 1.2;
}

.project-location { 
    font-size: 0.9rem;
    font-weight: 600; 
    color: #555; 
    line-height: 1.4;
}

.project-year { 
    font-weight: 800; 
    font-size: 1.3rem;
    color: var(--gold);
}

.project-info-bar { 
    margin-bottom: 20px;
}

.project-info-bar p { 
    font-size: 0.95rem;
    font-weight: 600; 
    color: #222; 
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.project-gallery { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center;
    gap: 10px; 
    width: 100%;
}

.project-gallery img { 
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    border-radius: 2px; 
    border: 1px solid #fff; 
    transition: var(--transition);
}

@media (min-width: 576px) {
    .project-gallery img { 
        width: calc(50% - 5px);
        height: 250px; 
    }
}

@media (min-width: 768px) {
    .project-gallery img { 
        width: calc(33.333% - 7px);
    }
}

.project-gallery img:hover {
    transform: scale(1.02);
}

.portfolio .sub-title,
.portfolio .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* TESTIMONIALS */
.testimonials { 
    background: #080808; 
}

.testimonial-grid { 
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

@media (min-width: 992px) {
    .testimonial-grid { 
        grid-template-columns: 1fr; 
        justify-items: center;
 
    }
}

.video-container { 
    position: relative; 
    border-radius: 12px; 
    border: 2px solid var(--gold);
    margin: 0 auto;
    
    /* Gunakan width 100% agar di HP dia selebar layar (minus padding container) */
    width: 100%; 
    
    /* Batasi lebarnya di laptop/layar besar agar tidak terlalu raksasa */
    max-width: 800px; 
}

.testimonial-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Aspect Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px 10px 0 0; /* Menyesuaikan border-radius container */
}

.testimonial-video-wrapper video { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.testimonial-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.testimonial-video-wrapper.playing .testimonial-video-overlay {
    opacity: 0;
    pointer-events: none;
}

.custom-video-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: var(--dark-card);
    border-radius: 0 0 12px 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 576px) {
    .video-container {
        max-width: 100%; /* Full di HP */
    }
    
    .custom-video-controls {
        padding: 10px; /* Perkecil padding di HP agar hemat ruang */
    }
}

.custom-video-controls .control-btn {
    padding: 8px 15px;
    background: var(--gold);
    color: black;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    justify-content: center;
}

.custom-video-controls .control-btn:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
}

.progress-bar {
    flex-grow: 1;
}

.progress-bar input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.progress-bar input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testi-item * {
    text-align: center;
}

.testi-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stars { 
    color: var(--gold); 
    margin-bottom: 10px; 
    font-size: 1.1rem;
}

.testi-item p {
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonials .section-title {
    text-align: center;
}

.testimonials .sub-title {
    text-align: center;
}

.client-info { 
    display: flex; 
    flex-direction: column; /* BIKIN JADI KE TENGAH */
    align-items: center; /* CENTER */
    gap: 12px; 
    margin-top: 15px; 
    text-align: center; /* TAMBAHAN */
}

.client-info img { 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid var(--gold); 
}

.client-info h4 {
    font-size: 1rem;
}

.client-info small {
    font-size: 0.8rem;
    color: var(--gray);
}

.slider-dots { 
    display: flex; 
    justify-content: center; 
    gap: 8px; 
    margin-top: 20px; 
}

.dot { 
    width: 10px; 
    height: 10px; 
    background: #333; 
    border-radius: 50%; 
    cursor: pointer; 
    transition: 0.3s; 
}

.dot.active { 
    background: var(--gold); 
    width: 25px; 
    border-radius: 10px; 
}

@media (min-width: 768px) {
    .video-container {
        width: 90%; /* Memberi sedikit ruang napas di samping */
    }
}

/* CONTACT */
.contact {
    background: #050505;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-content {
    margin-bottom: 40px;
    text-align: center;
}

.contact-desc {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-sub-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--gray);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.btn-primary.lg {
    padding: 16px 30px;
    font-size: 1rem;
    border-radius: 50px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .btn-primary.lg {
        padding: 20px 50px;
        font-size: 1.1rem;
    }
}

.btn-primary.lg:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(201, 161, 58, 0.3);
}

.social-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-text {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-links-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.social-divider {
    color: rgba(255,255,255,0.2);
    font-weight: 300;
}

.social-link.instagram i {
    font-size: 1.3rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-link.tiktok i {
    font-size: 1.2rem;
    color: #fff;
    filter: drop-shadow(2px 0px 0px #fd3e3e) drop-shadow(-2px 0px 0px #00f2ea);
}

.social-link:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 576px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .contact-info {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 3px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.info-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.maps-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.maps-link:hover {
    color: var(--gold);
}

.maps-hint {
    font-size: 0.8rem;
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    transition: var(--transition);
}

.maps-link:hover .maps-hint {
    color: var(--gold);
    transform: translateX(3px);
}

/* FOOTER */
footer {
    padding: 50px 0 20px;
    background: #030303;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

.footer-logo p {
    color: var(--gray);
    margin-top: 15px;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.9rem;
}

#newsletterForm {
    display: flex;
    gap: 8px;
}

#newsletterForm input {
    flex-grow: 1;
    padding: 10px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

#newsletterForm input:focus {
    outline: none;
    border-color: var(--gold);
}

#newsletterForm button {
    padding: 10px 15px;
    background: var(--gold);
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

#newsletterForm button:hover {
    background: var(--gold-soft);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--gray);
    font-size: 0.8rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 161, 58, 0.3);
}

/* ANIMATIONS */
.reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: 0.8s ease-out; 
}

.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

.newsletter-success {
    text-align: center;
    padding: 15px;
    background: rgba(201, 161, 58, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(201, 161, 58, 0.3);
}

.newsletter-success i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.newsletter-success p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) { 
    .nav-menu { 
        position: fixed; 
        top: 0; 
        left: -100%; 
        width: 280px;
        height: 100vh; 
        background: rgba(10,10,10,0.98); 
        flex-direction: column; 
        padding: 80px 20px 20px;
        transition: 0.4s ease-in-out; 
        z-index: 1001;
        backdrop-filter: blur(10px);
        overflow-y: auto;
        box-shadow: 5px 0 25px rgba(0,0,0,0.5);
    } 
    
    .nav-menu.active { 
        left: 0; 
    } 
    
    .nav-menu a { 
        font-size: 0.95rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
        display: block;
    }
    
    .hamburger { 
        display: flex; 
    }
    
    .hamburger.active i {
        transform: rotate(90deg);
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons a {
        width: 100%;
    }
    
    .container {
        width: 95%;
        padding: 0 12px;
    }
    
    .project-card {
        padding: 15px;
    }
    
    .project-gallery img {
        height: 180px;
    }
    
    .testi-item {
        padding: 20px;
    }
    
    .client-info img {
        width: 40px;
        height: 40px;
    }
    
    .custom-video-controls {
        padding: 12px;
    }
    
    .custom-video-controls .control-btn {
        width: 100%;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    #newsletterForm {
        flex-direction: column;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h3 {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .project-main-title {
        font-size: 1.3rem;
    }
    
    .project-gallery img {
        height: 160px;
    }
}
