/* =========================================
   RAJASTHAN AURA TOURS
   FLOATING CALL & WHATSAPP BUTTONS
========================================= */


/* =========================================
   FLOATING BUTTON CONTAINER
========================================= */

.floating-buttons {
    position: fixed;

    right: 18px;
    bottom: 24px;

    z-index: 9000;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* =========================================
   COMMON BUTTON STYLE
========================================= */

.floating-buttons a {
    min-width: 145px;
    height: 52px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 11px;

    border-radius: 50px;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.25);

    -webkit-tap-highlight-color: transparent;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================
   BUTTON ICON
========================================= */

.floating-buttons a i {
    flex-shrink: 0;

    width: 26px;

    font-size: 23px;

    line-height: 1;

    text-align: center;
}


/* =========================================
   BUTTON TEXT
========================================= */

.floating-buttons a span {
    display: inline-block;

    white-space: nowrap;
}


/* =========================================
   CALL BUTTON
========================================= */

.floating-buttons .call-btn {
    background: #0d6efd;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.floating-buttons .whatsapp-btn {
    background: #25D366;
}


/* =========================================
   DESKTOP HOVER
========================================= */

@media (hover: hover) {

    .floating-buttons a:hover {
        transform:
            translateY(-2px);

        box-shadow:
            0 7px 18px rgba(0, 0, 0, 0.30);
    }

}


/* =========================================
   KEYBOARD FOCUS
========================================= */

.floating-buttons a:focus-visible {
    outline:
        3px solid #ffffff;

    outline-offset: 3px;
}


/* =========================================
   TOUCH / ACTIVE PRESS
========================================= */

.floating-buttons a:active {
    transform:
        scale(0.96);
}


/* =========================================
   MOBILE - FINAL COMPACT SIZE
========================================= */

@media (max-width: 600px) {

    .floating-buttons {
        right:
            max(8px, env(safe-area-inset-right));

        bottom:
            max(12px, env(safe-area-inset-bottom));

        gap: 5px;
    }


    .floating-buttons a {
        width: 84px;
        min-width: 84px;
        height: 30px;

        padding: 0 7px;

        justify-content: flex-start;

        gap: 4px;

        border-radius: 25px;

        font-size: 9px;
        font-weight: 600;

        box-shadow:
            0 3px 8px rgba(0, 0, 0, 0.20);
    }


    .floating-buttons a i {
        width: 14px;

        font-size: 13px;

        text-align: center;
    }


    .floating-buttons a span {
        white-space: nowrap;
    }

}


/* =========================================
   REDUCED MOTION ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .floating-buttons a {
        transition: none;
    }


    .floating-buttons a:hover,
    .floating-buttons a:active {
        transform: none;
    }

}


/* =========================================
   END - FLOATING CALL & WHATSAPP BUTTONS
========================================= */