:root {
    --primary-custom: #0f205c;
    --green-custom: #28a745;
    --green-hover: #218838;
}

body {
    font-family: 'Inter', sans-serif;
}

.bg-primary-custom {
    background-color: #0f205c !important;
}

.text-primary-custom {
    color: #0f205c !important;
}

.btn-green {
    background-color: #28a745;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-green:hover {
    background-color: #218838;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.btn-outline-custom {
    color: #0f205c;
    border: 1px solid #0f205c;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: #0f205c;
    color: #fff;
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-opacity-100 {
    transition: opacity 0.3s ease;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.site-header .navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
    color: #fff !important;
}

.site-header .navbar-nav .nav-link.active {
    color: #fff !important;
}

.site-header .navbar-toggler-icon {
    filter: invert(1);
}

.site-index {
    font-family: 'Inter', sans-serif;
}

.hero-section {
    color: white;
    position: relative;
    padding-top: 200px;
    padding-bottom: 220px;
    min-height: 85vh;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.overlap-banner {
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.15) !important;
}

.section-title {
    color: #0f205c;
    font-weight: 800;
}

.simulasi-section {
    background: linear-gradient(135deg, #0f205c 0%, #1a3696 100%);
    border-radius: 1.5rem;
}

.app-mockup-img {
    margin-top: -60px;
    margin-bottom: -60px;
    filter: drop-shadow(0 1rem 2rem rgba(0,0,0,0.3));
}

.window-dots {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.page-hero {
    color: white;
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
}

.page-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero .hero-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 92, 0.7);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}