/* ========================================================================
   LOMBOK PERMATA - CLEAN PREMIUM THEME
   ======================================================================== */
:root {
    --primary: #0066FF;
    --dark: #0A0A0A;
    --gradient-primary: linear-gradient(135deg, #00D1FF 0%, #0066FF 100%);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #FFFFFF;
    background-color: #ffffff;
}

h1 {
    font-size: 5em;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.3em;
    letter-spacing: -1px;
}

.fw-extrabold { font-weight: 800; }
.text-gradient-primary { 
    background: var(--gradient-primary); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* NAVBAR */
.main-navbar {
    padding: 24px 0;
    transition: all 0.4s ease;
}

.navbar-scrolled {
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(15px);
    padding: 15px 0;
}

.brand-text { font-size: 24px; font-weight: 800; color: #fff; }
.nav-link { font-size: 15px; color: rgba(255,255,255,0.8) !important; }
.nav-link:hover, .nav-link.active { color: #fff !important; }



/* HERO SECTION WITH STATIC IMAGE */
.hero-split {
    min-height: 100vh;
    background-image: url(https://lombokpermata.com/tenants/lombokpermata/img/Proyek-1.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #00000040 0%, #00000000 100%);
    background-color: transparent;
    z-index: 1;
}

.z-index-2 { position: relative; z-index: 5; }

/* GEOMETRIC SHAPES (GLASS EFFECT) */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

/* CAR ANIMATION */
.car-hero-img {
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
    animation: floatCar 5s ease-in-out infinite;
}

@keyframes floatCar {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 102, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

/* Floating Info */
.floating-info {
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 250px;
    z-index: 10;
}

/* =========================================
           EFEK LENGKUNGAN BAWAH (SHAPE DIVIDER)
           ========================================= */
        .custom-shape-divider-bottom {
            position: absolute;
            bottom: -1px; /* -1px untuk mencegah garis halus yang kadang muncul di browser */
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 10; /* Memastikan lengkungan berada di atas gambar dan overlay */
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 90px; /* Anda bisa mengubah angka ini untuk membuat lengkungan lebih tajam atau landai */
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: #FFFFFF; /* Warna putih selaras dengan warna background section berikutnya */
        }

@media (max-width: 991px) {
    
    .hero-overlay { background: rgba(10,10,10,0.8); }
    .hero-content-text { padding-top: 100px !important; }
}