/* Palet Warna Multi Antar: 
   Biru Muda: #0093E9
   Oranye: #FF7B00
   Background Body: #f4f9fd (Biru sangat pudar/elegan)
*/

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f9fd; 
    color: #333333;
}

/* Custom Warna & Tombol */
.text-primary { color: #0093E9 !important; }
.bg-primary { background-color: #0093E9 !important; }

.text-orange { color: #FF7B00 !important; }
.bg-orange { background-color: #FF7B00 !important; }

.btn-orange {
    background-color: #FF7B00;
    border: 2px solid #FF7B00;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #e66e00;
    border-color: #e66e00;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3) !important;
}

/* Navbar Customisasi */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* =========================================
   HERO VIDEO BACKGROUND STYLING
   ========================================= */
.hero-video-section {
    position: relative;
    height: 85vh; /* Mengambil 85% tinggi layar */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pengaturan Posisi Video */
.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* Gradient Overlay - Perpaduan Biru Muda ke Gelap Transparan */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 147, 233, 0.85) 0%, rgba(0, 50, 100, 0.8) 100%);
}

/* Memastikan Konten Berada di Atas Video dan Overlay */
.hero-content {
    z-index: 2;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* =========================================
   FEATURE CARDS (Dibawah Hero)
   ========================================= */
.divider {
    height: 4px;
    width: 70px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0093E9, #FF7B00);
}

.feature-card {
    border-radius: 20px;
    background: #ffffff;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 147, 233, 0.1) !important;
    border-top: 4px solid #FF7B00;
}

/* Card Tengah Agar Lebih Menonjol */
.feature-card.highlight-card {
    background: linear-gradient(135deg, #0093E9 0%, #0077c0 100%);
    color: white;
}
.feature-card.highlight-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* =========================================
   INNER PAGE HEADER (About, Contact, dll)
   ========================================= */
.page-header {
    background: linear-gradient(135deg, #0093E9 0%, #003264 100%);
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    border-bottom: 5px solid #FF7B00;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: 1;
}

/* Contact Cards Effect */
.contact-card {
    border-radius: 16px;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 147, 233, 0.15) !important;
    border-bottom: 3px solid #0093E9;
}