/* Mahkota77 Rental Mobil & Motor - Dark Navy & Luxury Gold Theme */
:root {
    --bg-dark: #070D18;
    --bg-surface: #0E182A;
    --bg-card: #132238;
    --bg-card-hover: #192D4B;
    --gold-primary: #E5A93C;
    --gold-light: #F8D37E;
    --gold-dark: #B8821F;
    --gold-gradient: linear-gradient(135deg, #FDE68A 0%, #E5A93C 50%, #B8821F 100%);
    --gold-glow: 0 0 25px rgba(229, 169, 60, 0.25);
    --gold-border: rgba(229, 169, 60, 0.35);
    --navy-border: rgba(255, 255, 255, 0.08);
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', sans-serif;
}

/* Background Grid & Ambient Elements */
.bg-navy-pattern {
    background-color: #070D18;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(229, 169, 60, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(26, 60, 105, 0.15) 0%, transparent 50%),
        linear-gradient(to right, rgba(229, 169, 60, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(229, 169, 60, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Diamond Line Geometric Accents */
.diamond-accent {
    position: relative;
}
.diamond-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 1px solid var(--gold-primary);
    pointer-events: none;
}

/* 24 Jam Badge (Flyer Style) */
.badge-24jam {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #0F2038 40%, #070D18 100%);
    border: 3px solid #E5A93C;
    box-shadow: 0 0 20px rgba(229, 169, 60, 0.35), inset 0 0 12px rgba(229, 169, 60, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(229, 169, 60, 0.3), inset 0 0 10px rgba(229, 169, 60, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(229, 169, 60, 0.6), inset 0 0 18px rgba(229, 169, 60, 0.4);
    }
}

/* Premium Navbar */
#navbar {
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.nav-scrolled {
    background: rgba(7, 13, 24, 0.94) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(229, 169, 60, 0.15) !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(229, 169, 60, 0.2) !important;
}

/* Luxury Cards */
.gold-card {
    background: rgba(19, 34, 56, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(229, 169, 60, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
}

.gold-card:hover {
    border-color: rgba(229, 169, 60, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(229, 169, 60, 0.15);
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: #070D18;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(229, 169, 60, 0.35);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.btn-gold:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(229, 169, 60, 0.5);
}

.btn-gold-outline {
    border: 2px solid #E5A93C;
    color: #E5A93C;
    background: rgba(229, 169, 60, 0.05);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.btn-gold-outline:hover {
    background: #E5A93C;
    color: #070D18;
    box-shadow: 0 4px 20px rgba(229, 169, 60, 0.3);
    transform: translateY(-2px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #070D18;
}
::-webkit-scrollbar-thumb {
    background: #E5A93C;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #F8D37E;
}

/* FAQ Animation */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.16, 1, .3, 1), padding 0.3s ease;
}
.faq-content.open {
    max-height: 400px;
}

/* Fancybox and Swiper Gold Overrides */
.swiper-pagination-bullet {
    background: #64748B;
    opacity: 0.8;
}
.swiper-pagination-bullet-active {
    background: #E5A93C !important;
    transform: scale(1.3);
    width: 24px;
    border-radius: 4px;
}

/* WhatsApp Floating Pulse */
.wa-float-btn {
    animation: wa-pulse 2.5s infinite;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}
