/* ROAMYARDS MASTER GOLD - OVERRIDES EVERYTHING */
<style>
.btn-primary, .btn-success, button[type="submit"], .booking-btn, 
.btn-book, .book-now, .btn.btn-primary, .btn.btn-success {
    background: linear-gradient(135deg, #D4AF37, #B8942F) !important;
    color: white !important;
    border: none !important;
    border-radius: 35px !important;
    padding: 12px 24px !important;
    box-shadow: 0 6px 20px rgba(212,175,55,0.4) !important;
    font-weight: 600 !important;
}

/* HERO TEXT */
.bravo_banner_image h1 {
    background: linear-gradient(135deg, #D4AF37, #B8942F) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* ITINERARY */
.bc_content h3 { border-left: 6px solid #D4AF37 !important; padding-left: 50px !important; }
.bc_content ul li { border-left: 4px solid #D4AF37 !important; padding-left: 55px !important; }

/* CONTACT ICONS */
.contact .sub { display: flex !important; flex-direction: row !important; gap: 15px !important; }
.contact .sub i { 
    width: 35px !important; height: 35px !important; 
    border-radius: 50% !important; 
    background: rgba(212,175,55,0.1) !important;
    color: #D4AF37 !important;
}
</style>
<script>
/* MASTER GOLD FORCE - RUNS LAST */
setInterval(()=>{
    document.querySelectorAll('.btn-primary, .btn-success, button[type="submit"], .booking-btn').forEach(btn=>{
        btn.style.cssText = `
            background: linear-gradient(135deg, #D4AF37, #B8942F) !important;
            color: white !important;
            border-radius: 35px !important;
            box-shadow: 0 6px 20px rgba(212,175,55,0.4) !important;
        `;
    });
}, 300);
</script>
