/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Theme */
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #1f2937;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --card-bg: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Soft Color Palette */
    --soft-blue: #dbeafe;
    --soft-yellow: #fef3c7;
    --soft-gray: #f3f4f6;
    --soft-black: #374151;
    --soft-light-blue: #eff6ff;
    --soft-light-yellow: #fffbeb;
    --soft-light-gray: #f9fafb;
}

/* Dark Theme */
[data-theme="dark"] {
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-light: #9ca3af;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --border-color: #374151;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    --gradient-background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    --navbar-bg: rgba(15, 23, 42, 0.95);
    --card-bg: #1e293b;
    --soft-blue: #1e3a8a;
    --soft-yellow: #92400e;
    --soft-gray: #4b5563;
    --soft-light-blue: #1e40af;
    --soft-light-yellow: #d97706;
    --soft-light-gray: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: var(--transition);
}

/* Improved Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Floating Controls - Improved Responsive */
.floating-controls {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 60px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.control-btn:hover {
    transform: scale(1.05);
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-xl);
}

.control-btn.active {
    background: var(--primary-color);
    color: white;
}

.language-selector {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.language-btn {
    font-size: 11px;
    height: 36px;
    width: 36px;
    font-weight: 700;
}

/* Tablet Responsive Controls */
@media (max-width: 1024px) {
    .floating-controls {
        right: 15px;
        max-width: 50px;
    }
}

/* Mobile Responsive Controls */
@media (max-width: 768px) {
    .floating-controls {
        top: 70px;
        right: 8px;
        gap: 4px;
        max-width: 40px;
    }
    
    .control-btn {
        width: 38px;
        height: 38px;
        font-size: 10px;
    }
    
    .language-btn {
        height: 28px;
        width: 28px;
        font-size: 8px;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .floating-controls {
        right: 5px;
        top: 60px;
        gap: 3px;
        max-width: 35px;
    }
    
    .control-btn {
        width: 34px;
        height: 34px;
        font-size: 9px;
    }
    
    .language-btn {
        height: 26px;
        width: 26px;
        font-size: 7px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .floating-controls {
        right: 3px;
        max-width: 32px;
    }
    
    .control-btn {
        width: 32px;
        height: 32px;
        font-size: 8px;
    }
    
    .language-btn {
        height: 24px;
        width: 24px;
        font-size: 6px;
    }
}

/* Prevent horizontal overflow globally */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Enhanced Navigation */
.navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo {
    height: 45px;
    width: 45px;       /* bikin width sama dengan height */
    border-radius: 50%; /* bikin jadi bulat */
    object-fit: cover;  /* biar isi logonya pas */
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.025em;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .brand-text {
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.2rem 0;
        padding: 0.7rem 1rem !important;
    }
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 600px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.loaded {
    opacity: 0.9;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Enhanced Buttons */
.btn {
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-success {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Mobile Buttons */
@media (max-width: 768px) {
    .btn {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
}

/* Enhanced Section Styles */
section {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

/* Company Profile Section - Enhanced Background with Image/Video Support */
.company-profile-section {
    background: linear-gradient(135deg, var(--soft-light-blue) 0%, var(--soft-blue) 30%, var(--soft-light-gray) 70%, rgba(239, 246, 255, 0.8) 100%);
    background-image: url('images/company-profile-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.company-profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(239, 246, 255, 0.7), rgba(219, 234, 254, 0.7)),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.02) 70%);
    z-index: 0;
}

/* Company Profile Video Background Support */
.company-profile-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.company-profile-section > .container {
    position: relative;
    z-index: 1;
}

.leadership-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.leadership-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.leadership-header h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Soft-colored Process Cards */
.process-card {
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
}

.process-card:nth-child(6n+1) {
    background: var(--soft-light-blue);
    border-left: 4px solid #3b82f6;
}

.process-card:nth-child(6n+2) {
    background: var(--soft-light-yellow);
    border-left: 4px solid #f59e0b;
}

.process-card:nth-child(6n+3) {
    background: var(--soft-light-gray);
    border-left: 4px solid var(--soft-black);
}

.process-card:nth-child(6n+4) {
    background: var(--soft-blue);
    border-left: 4px solid #1e40af;
}

.process-card:nth-child(6n+5) {
    background: var(--soft-yellow);
    border-left: 4px solid #d97706;
}

.process-card:nth-child(6n) {
    background: var(--soft-gray);
    border-left: 4px solid #6b7280;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.process-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.process-card:hover .process-icon::before {
    left: 100%;
}

.process-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
}

.process-card h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Process Cards */
@media (max-width: 768px) {
    .process-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
    }
    
    .process-icon i {
        font-size: 1.8rem;
    }
}

/* Enhanced Services Section with Background Image/Video Support */
.services-section {
    background: linear-gradient(135deg, var(--soft-light-gray) 0%, var(--soft-gray) 30%, var(--soft-light-blue) 70%, rgba(243, 244, 246, 0.8) 100%);
    background-image: url('images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(243, 244, 246, 0.7), rgba(249, 250, 251, 0.7)),
        radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Services Video Background Support */
.services-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.services-section > .container {
    position: relative;
    z-index: 1;
}

/* Soft-colored Service Cards */
.service-card {
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.service-card:nth-child(6n+1) {
    background: var(--soft-light-blue);
    border-top: 4px solid #3b82f6;
}

.service-card:nth-child(6n+2) {
    background: var(--soft-light-yellow);
    border-top: 4px solid #f59e0b;
}

.service-card:nth-child(6n+3) {
    background: var(--soft-light-gray);
    border-top: 4px solid var(--soft-black);
}

.service-card:nth-child(6n+4) {
    background: var(--soft-blue);
    border-top: 4px solid #1e40af;
}

.service-card:nth-child(6n+5) {
    background: var(--soft-yellow);
    border-top: 4px solid #d97706;
}

.service-card:nth-child(6n) {
    background: var(--soft-gray);
    border-top: 4px solid #6b7280;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-background);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
    transition: var(--transition);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-features li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Mobile Service Cards */
@media (max-width: 768px) {
    .service-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
}

/* Enhanced About Section with Background Image/Video Support */
.about-section {
    background: linear-gradient(135deg, var(--soft-light-yellow) 0%, var(--soft-yellow) 30%, var(--soft-light-gray) 70%, rgba(255, 251, 235, 0.8) 100%);
    background-image: url('images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(255, 251, 235, 0.7), rgba(254, 243, 199, 0.7)),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* About Video Background Support */
.about-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.about-section > .container {
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.vmv-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.vmv-card:nth-child(3n+1) {
    background: var(--soft-light-blue);
    border-top: 4px solid #3b82f6;
}

.vmv-card:nth-child(3n+2) {
    background: var(--soft-light-yellow);
    border-top: 4px solid #f59e0b;
}

.vmv-card:nth-child(3n) {
    background: var(--soft-light-gray);
    border-top: 4px solid var(--soft-black);
}

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vmv-icon i {
    font-size: 1.8rem;
    color: white;
}

.vmv-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vmv-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile About Section */
@media (max-width: 768px) {
    .about-text {
        font-size: 1rem;
    }
    
    .vmv-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Enhanced Partners Section with Background Image/Video Support */
.partners-section {
    background: linear-gradient(135deg, var(--soft-light-gray) 0%, var(--soft-gray) 30%, var(--soft-light-blue) 70%, rgba(249, 250, 251, 0.8) 100%);
    background-image: url('images/partners-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(249, 250, 251, 0.7), rgba(241, 245, 249, 0.7)),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.02) 70%);
    z-index: 0;
}

/* Partners Video Background Support */
.partners-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.partners-section > .container {
    position: relative;
    z-index: 1;
}

/* Keep existing partner animation as requested */
.partners-carousel {
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
}

.partners-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    gap: 3rem;
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 1rem;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 6 - 18rem));
    }
}

/* Mobile Partners */
@media (max-width: 768px) {
    .partners-section {
        padding: 80px 0;
    }
    
    .partner-logo {
        width: 140px;
        height: 80px;
    }
    
    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 6 - 18rem));
        }
    }
}

/* Enhanced Testimonials Section with Background Image/Video Support */
.testimonials-section {
    background: linear-gradient(135deg, var(--soft-light-blue) 0%, var(--soft-blue) 30%, var(--soft-light-yellow) 70%, rgba(239, 246, 255, 0.8) 100%);
    background-image: url('images/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(239, 246, 255, 0.7), rgba(219, 234, 254, 0.7)),
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Testimonials Video Background Support */
.testimonials-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.testimonials-section > .container {
    position: relative;
    z-index: 1;
}

/* Keep existing testimonial animation as requested */
.testimonials-carousel {
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
}

.testimonials-track {
    display: flex;
    animation: scroll-horizontal 40s linear infinite;
    gap: 2rem;
}

.testimonial-card {
    flex-shrink: 0;
    width: 380px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-380px * 7 - 14rem));
    }
}

/* Mobile Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonial-card {
        width: 300px;
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    @keyframes scroll-horizontal {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 7 - 14rem));
        }
    }
}

/* Enhanced Payment Section with Background Image/Video Support */
.payment-section {
    background: linear-gradient(135deg, var(--soft-light-yellow) 0%, var(--soft-yellow) 30%, var(--soft-light-gray) 70%, rgba(255, 251, 235, 0.8) 100%);
    background-image: url('images/payment-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(255, 251, 235, 0.7), rgba(254, 243, 199, 0.7)),
        radial-gradient(circle at 60% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Payment Video Background Support */
.payment-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.payment-section > .container {
    position: relative;
    z-index: 1;
}

.payment-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.payment-category {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.payment-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.payment-category h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.payment-category h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.payment-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.payment-item img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.payment-item:hover img {
    transform: scale(1.1);
}

.payment-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Mobile Payment */
@media (max-width: 768px) {
    .payment-grid {
        gap: 2rem;
    }
    
    .payment-category {
        padding: 2rem;
    }
    
    .payment-methods {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .payment-item {
        padding: 1.25rem;
    }
    
    .payment-item img {
        width: 50px;
        height: 35px;
    }
}

/* Enhanced Location Section with Background Image/Video Support */
.location-section {
    background: linear-gradient(135deg, var(--soft-light-gray) 0%, var(--soft-gray) 30%, var(--soft-light-blue) 70%, rgba(249, 250, 251, 0.8) 100%);
    background-image: url('images/location-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(249, 250, 251, 0.7), rgba(241, 245, 249, 0.7)),
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(168, 85, 247, 0.02) 70%);
    z-index: 0;
}

/* Location Video Background Support */
.location-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.location-section > .container {
    position: relative;
    z-index: 1;
}

.location-info {
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    display: block;
    border: none;
}

/* Mobile Location */
@media (max-width: 768px) {
    .location-info {
        padding: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .info-icon {
        align-self: center;
    }
}

/* Enhanced Contact Section with Background Image/Video Support */
.contact-section {
    background: linear-gradient(135deg, var(--soft-light-blue) 0%, var(--soft-blue) 30%, var(--soft-light-gray) 70%, rgba(239, 246, 255, 0.8) 100%);
    background-image: url('images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(239, 246, 255, 0.7), rgba(219, 234, 254, 0.7)),
        radial-gradient(circle at 70% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Contact Video Background Support */
.contact-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.contact-section > .container {
    position: relative;
    z-index: 1;
}

.contact-form-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.contact-form .form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

/* Ensure input text is visible in dark mode */
[data-theme="dark"] .contact-form .form-control,
[data-theme="dark"] .contact-form .form-select {
    color: #f9fafb;
    background: #1e293b;
    border-color: #374151;
}

[data-theme="dark"] .contact-form .form-control::placeholder {
    color: #9ca3af;
    opacity: 0.8;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form .form-control:focus,
[data-theme="dark"] .contact-form .form-select:focus {
    background: #0f172a;
    color: #f9fafb;
    border-color: var(--primary-color);
}

.contact-form .form-select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form .form-select option {
    background: #1e293b;
    color: #f9fafb;
}

.whatsapp-contact {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    height: fit-content;
}

.whatsapp-header {
    text-align: center;
    margin-bottom: 2rem;
}

.whatsapp-header i {
    font-size: 3rem;
    color: #25d366;
    margin-bottom: 1rem;
}

.whatsapp-header h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.whatsapp-numbers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-number {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    transition: var(--transition);
    font-weight: 500;
}

.whatsapp-number:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: white;
}

.whatsapp-number i {
    font-size: 1.5rem;
}

/* Mobile Contact */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .whatsapp-contact {
        padding: 2rem;
    }
    
    .whatsapp-number {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

/* Enhanced Footer */
.footer-section {
    background: var(--bg-dark);
    color: white;
    position: relative;
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 6px;
    margin: 0 auto 1rem; /* tetap di tengah */
    box-shadow: var(--shadow);
}

.footer-company h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-company p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h5,
.footer-contact h5,
.footer-social h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 1rem;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    z-index: 100;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Scroll to Top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    }
}

/* Print Styles */
@media print {
    .floating-controls,
    .scroll-to-top,
    .hero-video,
    .partners-carousel,
    .testimonials-carousel {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        height: auto;
        padding: 2rem 0;
    }
    
    section {
        padding: 1rem 0;
        break-inside: avoid;
    }
}