/* Responsive CSS for Hero Badge */
.oraa-hero-badge-container {
    margin: 25px 0;
    display: inline-block;
    font-family: 'Segoe UI', sans-serif;
}

.oraa-trust-pill {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 50px;
    padding: 12px 25px;
    box-shadow: 0 10px 30px rgba(41, 59, 107, 0.12);
    border: 1px solid rgba(32, 203, 194, 0.3);
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oraa-trust-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(41, 59, 107, 0.18);
}

.oraa-review-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oraa-review-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.oraa-stars-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.oraa-review-count {
    color: #666666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.oraa-badge-divider {
    width: 2px;
    height: 35px;
    background: #f0f0f0;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .oraa-trust-pill {
        border-radius: 15px; /* Softer radius for stacked mobile view */
        padding: 15px 20px;
        justify-content: center;
    }
    .oraa-badge-divider {
        display: none; /* Hide divider on small screens */
    }
    .oraa-review-block {
        width: 100%;
        justify-content: center;
    }
}

/* Base Styles */
.oraa-sticky-contact {
    position: fixed;
    z-index: 99999;
}

.oraa-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 800;
    transition: all 0.3s ease;
}

.oraa-contact-icon {
    fill: currentColor;
    margin-right: 8px;
}

.oraa-btn-call {
    background: #293b6b;
    color: #ffffff;
}

.oraa-btn-wa {
    background: #25D366; /* Standard WhatsApp Green for conversion */
    color: #ffffff;
}

/* =========================================
   DESKTOP VIEW: Floating Pills Bottom-Right
   ========================================= */
@media (min-width: 769px) {
    .oraa-sticky-contact {
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-end;
    }

    .oraa-sticky-btn {
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 1.05rem;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        letter-spacing: 0.5px;
    }

    .oraa-contact-icon {
        width: 22px;
        height: 22px;
    }

    /* Hover Animations for Desktop */
    .oraa-btn-call:hover {
        background: #1a2543;
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(41, 59, 107, 0.3);
    }

    .oraa-btn-wa:hover {
        background: #20b858;
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    }
}

/* =========================================
   MOBILE VIEW: 50/50 Split Bottom Bar
   ========================================= */
@media (max-width: 768px) {
    .oraa-sticky-contact {
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        width: 100%;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    }

    .oraa-sticky-btn {
        flex: 1;
        padding: 18px 0;
        font-size: 1.1rem;
        border-radius: 0; /* Flat edges for flush bottom fit */
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .oraa-contact-icon {
        width: 24px;
        height: 24px;
    }
}