/* Harley Davidson Custom Theme */
:root {
    --primary-orange: #ff7e00;
    --hd-black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f4f4f4;
    --text-white: #ffffff;
    --text-muted: #b0b0b0;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* Global Settings */
html,
body {
    width: 100%;
    overflow-x: hidden;
    /* Critical for mobile to prevent white space on right */
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: var(--text-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.text-orange {
    color: var(--primary-orange);
}

.bg-orange {
    background-color: var(--primary-orange);
}

.bg-black {
    background-color: var(--hd-black);
}

.bg-dark-gray {
    background-color: var(--dark-gray);
}

/* Buttons */
.btn-hd {
    background-color: var(--primary-orange);
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 30px;
    border: 2px solid var(--primary-orange);
    transition: var(--transition);
}

.btn-hd:hover {
    background-color: transparent;
    color: var(--primary-orange);
}

.btn-hd-outline {
    background-color: transparent;
    color: var(--hd-black);
    border: 2px solid var(--hd-black);
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 30px;
    transition: var(--transition);
}

.btn-hd-outline:hover {
    background-color: var(--hd-black);
    color: white;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    font-style: italic;
}

.nav-link {
    color: white !important;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
}

.section-title span {
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 15px auto 0;
}

/* Service Card */
.service-card {
    padding: 30px;
    border: 1px solid #eee;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

/* Product Card */
.product-card {
    border: none;
    overflow: hidden;
    transition: var(--transition);
}

.product-img-wrapper {
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-img-wrapper img {
    max-height: 100%;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 24px;
}

.gallery-item img {
    width: 100%;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 126, 0, 0.8);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Floating Buttons */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.fab-wa {
    background-color: #25D366;
}

.fab-wa:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.fab-top {
    background-color: var(--hd-black);
    opacity: 0;
    visibility: hidden;
}

.fab-top.show {
    opacity: 1;
    visibility: visible;
}

.fab-top:hover {
    background-color: var(--primary-orange);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--hd-black);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-orange);
    text-decoration: none;
}

/* Responsive & Mobile Optimization */
/* Responsive & Mobile Optimization */
@media (max-width: 991px) {

    /* Navbar Mobile Premium Look */
    /* Navbar Mobile Premium - Robust & Visible */
    .navbar {
        background-color: #000000 !important;
        padding: 15px 10px;
        border-bottom: 3px solid var(--primary-orange);
        z-index: 99999 !important;
        position: relative;
        /* Ensure it stacks correctly */
    }

    .navbar-brand {
        font-size: 1.6rem;
        color: white !important;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    /* Highly Visible Toggler */
    .navbar-toggler {
        background-color: #222 !important;
        border: 2px solid var(--primary-orange) !important;
        padding: 8px 12px !important;
        opacity: 1 !important;
        display: block !important;
        /* Force visibility */
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        background-color: var(--primary-orange) !important;
    }

    /* Force the icon to be visible using a simple hamburger character if SVG fails, 
       but we will stick to a reliable SVG first */
    .navbar-toggler-icon {
        width: 25px;
        height: 25px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* When hovered (background becomes orange), make lines black/white */
    .navbar-toggler:hover .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(0, 0, 0)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* Dropdown Menu styling */
    .navbar-collapse {
        background: #0a0a0a;
        margin-top: 15px;
        padding: 20px;
        border: 1px solid #333;
        border-top: 2px solid var(--primary-orange);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
        border-bottom: 1px solid #222;
        color: white !important;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link.active,
    .nav-link:hover {
        color: var(--primary-orange) !important;
        padding-left: 10px;
        /* Slight movement on hover */
    }

    /* Mobile Hero Redesign V7 - Top Aligned */
    .hero-section {
        padding-top: 90px;
        /* Clear fixed navbar */
        padding-bottom: 50px;
        min-height: 100vh;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Align to top instead of center */
        align-items: center;
        background: radial-gradient(circle at center, #2a2a2a 0%, #000000 100%);
        position: relative;
        overflow: hidden;
    }

    /* Force internal container to behave */
    .hero-section .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
        /* Remove side padding for full bleed image */
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Fix Bootstrap row negative margins causing overflow */
    .hero-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    /* Remove previous pseudo-element background to clean up */
    .hero-section::before {
        display: none;
    }

    .hero-content {
        order: 2;
        /* Text below image */
        z-index: 10;
        width: 100%;
        text-align: center;
        padding: 0 20px;
        margin-top: -40px;
        /* Overlap effect */
    }

    /* Sticker/Tag Style Subtitle */
    .hero-content h5 {
        font-size: 0.8rem;
        letter-spacing: 4px;
        background: transparent;
        color: var(--primary-orange);
        border: 1px solid var(--primary-orange);
        display: inline-block;
        padding: 8px 16px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    /* Massive Impact Title */
    .hero-content h1 {
        font-size: 3.8rem;
        line-height: 0.9;
        font-weight: 800;
        color: white;
        text-transform: uppercase;
        margin-bottom: 20px;
        font-family: 'Oswald', sans-serif;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }

    .hero-content h1 span.text-orange {
        color: transparent;
        -webkit-text-stroke: 2px var(--primary-orange);
    }

    .hero-content p.lead {
        font-size: 1rem;
        color: #ccc;
        margin-bottom: 25px;
        font-weight: 300;
        line-height: 1.5;
    }

    /* Buttons row */
    .hero-content .d-flex.gap-3 {
        flex-direction: row;
        /* Side by side buttons */
        gap: 10px !important;
        justify-content: center;
    }

    .hero-content .btn-hd,
    .hero-content .btn-hd-outline {
        width: auto;
        padding: 12px 25px;
        font-size: 0.9rem;
        border-width: 1px;
    }

    .hero-content .btn-hd-outline {
        border-color: white;
        color: white;
    }

    /* Move image up visually */
    .hero-section .col-lg-6.text-center {
        margin-top: -30px;
        /* Slight negative margin to pull it up */
        width: 100%;
        padding: 0;
    }

    .hero-img {
        width: 100%;
        max-width: 100%;
        /* Allow full width */
        margin: 0;
        object-fit: cover;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
        /* Heavy shadow for depth */
        animation: floatMobile 4s ease-in-out infinite;
        /* Gentle float */
        transform-origin: center center;
    }

    @keyframes floatMobile {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    /* Hide desktop specific elements */
    .mt-5.d-flex.gap-5 {
        display: none !important;
    }
}

@media (max-width: 768px) {

    /* Global Spacing */
    .section-padding {
        padding: 60px 0;
    }

    /* Hero Mobile */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1rem;
        line-height: 1.8;
    }

    /* Cards Spacing */
    .service-card,
    .product-card,
    .blog-card,
    .tour-card {
        margin-bottom: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        /* Softer shadow for mobile */
    }

    /* Footer Mobile Premium */
    footer {
        text-align: center;
        padding-top: 60px;
        padding-bottom: 100px;
        /* Extra space for floating buttons */
        background-color: #0e0e0e;
        /* Slightly lighter than pure black for depth */
    }

    .footer-link {
        display: block;
        /* Align vertically for easier tapping */
        padding: 8px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #222;
        width: 100%;
    }

    .footer-link:last-child {
        border-bottom: none;
    }

    footer h3,
    footer h5 {
        margin-top: 30px;
        letter-spacing: 2px;
        color: white;
    }

    footer h5 {
        border-bottom: 2px solid var(--primary-orange);
        display: inline-block;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .input-group input {
        border-radius: 4px !important;
        width: 100% !important;
        text-align: center;
    }

    .input-group button {
        border-radius: 4px !important;
        width: 100% !important;
    }

    /* Floating Buttons Split - Left & Right */
    .floating-container {
        left: 0;
        right: 0;
        bottom: 25px;
        width: 100%;
        padding: 0 25px;
        /* Spacing from edges */
        flex-direction: row-reverse;
        /* Whatsapp on Right usually, Top on Left? Or Space them out */
        /* Let's assume standard row with space-between: Top (if first) Left, WA (if second) Right? 
           Actually let's just use space-between and ensure they sit on corners. 
        */
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 0;
        pointer-events: none;
        /* Allow clicks through the empty space */
    }

    .btn-float {
        pointer-events: auto;
        /* Restore clicks */
        width: 50px;
        height: 50px;
        font-size: 22px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p.lead {
        font-size: 0.95rem;
    }

    .btn-hd,
    .btn-hd-outline {
        width: 100%;
        margin-bottom: 15px;
        display: block;
    }

    .d-flex.gap-3,
    .d-flex.gap-5 {
        flex-direction: column;
        gap: 1rem !important;
    }

    /* Stats in Hero */
    .mt-5.d-flex {
        justify-content: center;
        margin-top: 2rem !important;
    }

    .mt-5.d-flex div {
        text-align: center;
    }

    /* Blog Mobile Optimizations */
    .author-profile {
        flex-direction: column;
        text-align: center;
    }

    .author-img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .share-btn-lg {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 5px;
    }

    .toc-container {
        padding: 15px;
    }

    blockquote {
        font-size: 1rem;
        padding: 15px 15px 15px 25px;
    }

    blockquote::before {
        font-size: 3rem;
        top: -5px;
    }
}

/* --- New Standard Blog Styles --- */

/* TOC */
.toc-container {
    background: #f8f9fa;
    padding: 20px;
    border-left: 5px solid var(--primary-orange);
    margin-bottom: 30px;
    border-radius: 4px;
}

.toc-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.toc-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    display: block;
    /* Default open */
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.toc-list.collapsed {
    display: none;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.toc-list a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.toc-list ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

/* Blockquote */
blockquote {
    border-left: 4px solid var(--primary-orange);
    padding: 20px 20px 20px 30px;
    background: #fff8f0;
    font-size: 1.2rem;
    font-style: italic;
    margin: 30px 0;
    color: #555;
    position: relative;
}

blockquote::before {
    content: '\201C';
    font-family: serif;
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

/* Read Also (Baca Juga) */
.read-also {
    background: var(--dark-gray);
    color: white;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    border-left: 5px solid var(--primary-orange);
}

.read-also h5 {
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-size: 1rem;
}

.read-also ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.read-also li {
    margin-bottom: 8px;
}

.read-also a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-also a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Author Profile */
.author-profile {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    padding: 30px;
    border-radius: 12px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    border: 3px solid var(--primary-orange);
}

.author-info h4 {
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.accordion-button:not(.collapsed) {
    background-color: #fff8f0;
    color: var(--primary-orange);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 126, 0, 0.25);
}

/* --- Unified Social Button Style --- */
/* Replaces old .author-profile a and .share-btn-lg */

.btn-social-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background-color: #000000 !important;
    /* Pure Black */
    color: #ffffff !important;
    /* Pure White */
    font-size: 1.2rem !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    /* Bouncy pop */
    margin: 5px !important;
    position: relative;
    z-index: 5;
}

/* Ensure no ghost elements */
.btn-social-icon::before,
.btn-social-icon::after {
    display: none !important;
    content: none !important;
}

/* Inner Icon Color */
.btn-social-icon i {
    color: inherit !important;
    background: transparent !important;
}

/* Hover States */
.btn-social-icon:hover {
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
    color: #ffffff !important;
}

/* Brand Colors on Hover */
.btn-social-icon:hover .fa-instagram {
    background: transparent;
}

/* Insta uses gradient usually, but keep simple */
.btn-social-icon:hover .fa-twitter {
    background: transparent;
}

/* Share Specific Hovers if classes are present */
.btn-social-icon.share-fb:hover {
    background-color: #3b5998 !important;
}

.btn-social-icon.share-tw:hover {
    background-color: #1da1f2 !important;
}

.btn-social-icon.share-wa:hover {
    background-color: #25D366 !important;
}

.btn-social-icon.share-li:hover {
    background-color: #0077b5 !important;
}

/* General Container Cleanups */
.author-profile {
    align-items: flex-start;
    /* Align text better */
}

.share-buttons-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    padding: 30px 20px;
    margin: 40px 0;
}

/* Image Description */
.img-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
    font-style: italic;
    display: block;
}

/* Related Articles Bottom */
.related-articles {
    background: #f9f9f9;
    padding: 60px 0;
}

/* Footer Social Icons - Fix for Proportionality */
footer .d-flex.gap-3 a {
    text-decoration: none;
}

footer .d-flex.gap-3 i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    display: inline-block;
    /* Ensure square dimensions */
}

footer .d-flex.gap-3 i:hover {
    background: var(--primary-orange);
    transform: rotate(360deg);
}

/* --- FINAL FIXES FOR MOBILE & ARTIFACTS --- */

/* --- FINAL CORRECTED FIX --- */
/* This class ensures social buttons are ALWAYS black circles */

.force-black-circle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    /* Removed margin to let flex-gap handle neatness */
    margin: 0 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    text-decoration: none !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.3s ease !important;
}

.force-black-circle:hover {
    transform: translateY(-3px) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
}

.force-black-circle i {
    color: white !important;
    font-size: 1.4rem !important;
    background: transparent !important;
}

/* Specific Brands */
.force-black-circle.share-fb:hover {
    background-color: #3b5998 !important;
}

.force-black-circle.share-tw:hover {
    background-color: #1da1f2 !important;
}

.force-black-circle.share-wa:hover {
    background-color: #25D366 !important;
}

.force-black-circle.share-li:hover {
    background-color: #0077b5 !important;
}

/* Refined Author Profile Layout */
.author-profile {
    display: flex;
    flex-direction: row;
    /* Default Row for Desktop */
    align-items: center;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: left;
    gap: 30px;
}

.author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
    flex-shrink: 0;
}

/* Social Row Container */
.author-social-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: flex-start;
    /* Left align on desktop */
}

/* Mobile Optimization for Neatness */
@media (max-width: 768px) {
    .author-profile {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .author-social-row {
        justify-content: center;
        /* Center on mobile */
        width: 100%;
    }

    .force-black-circle {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
}

/* Share Buttons Neatness */
.share-row-neat {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    /* Consistent spacing */
    margin-top: 20px;
}

/* Floating Button Specifics */
.btn-float.fab-wa {
    background-color: #25D366 !important;
}

.btn-float.fab-top {
    background-color: #000000 !important;
}

/* Kill Pseudo-elements globally for these to prevent artifacts */
.force-black-circle::before,
.force-black-circle::after,
.btn-float::before,
.btn-float::after {
    display: none !important;
    content: none !important;
}