/* ===== Aman-style Mobile Sticky Contact Buttons ===== */
.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: flex;
    gap: 0;
    padding: 10px; /* outer padding for breathing room */
    justify-content: center;
    background: transparent; /* let buttons sit above page */
    pointer-events: auto;
}

/* common button styles */
.contact-button {
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1 1 0;
    min-height: 56px;                /* comfortable touch target */
    padding: 12px 16px;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    border-radius: 12px 12px 0 0;    /* rounded top corners matching aman site */
    box-shadow: 0 10px 30px rgba(11, 42, 73, 0.15);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    border: 2px solid rgba(255,255,255,0.06);
    margin: 0 8px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* icon */
.button-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 auto;
    color: rgba(255,255,255,0.96);
}

/* label */
.button-text {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.2px;
    text-transform: none;
    color: rgba(255,255,255,0.96);
}

/* Divider — visually thin, sits between buttons (but keeps rounded button edges) */
.button-divider {
    width: 1px;
    background: rgba(11,42,73,0.06);
    margin: 0 2px;
    align-self: stretch;
    border-radius: 1px;
}

/* Specific button colors to match Aman Security theme */
.call-button {
    background: linear-gradient(180deg, #0b2a49 0%, #0f3a5f 100%); /* deep navy */
    border-left: 4px solid #f4b400; /* subtle gold accent on left for brand feel */
}

/* active / pressed state */
.call-button:active { transform: translateY(1px) scale(.995); box-shadow: 0 6px 18px rgba(11,42,73,0.14); }

/* WhatsApp keeps recognizable green, but styled to match */
.whatsapp-button {
    background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
    border-right: 4px solid rgba(0,0,0,0.06);
}

.whatsapp-button:active { transform: translateY(1px) scale(.995); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }

/* hover/focus accessibility */
.contact-button:hover,
.contact-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(11,42,73,0.18);
    outline: none;
}

/* make SVG inherit button color */
.contact-button svg { color: inherit; width: 22px; height: 22px; }

/* subtle breathing animation on whole bar */
@keyframes amanPulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(1px); }
    100% { transform: translateY(0); }
}
.mobile-contact-bar { animation: amanPulse 6s ease-in-out infinite; }

/* safe-area bottom support for iPhone notch */
@supports (padding: max(0px)) {
    .contact-button { padding-bottom: calc(max(12px, env(safe-area-inset-bottom))); }
}

/* layout tweak for very small screens (stack if needed) */
@media (max-width: 420px) {
    .contact-button { font-size: 14px; padding: 12px; min-height: 54px; margin: 0 6px; }
    .button-text { white-space: nowrap; }
}

/* If you want full-width two-button look without side-gap, remove margins */
.mobile-contact-bar--edge-to-edge .contact-button { margin: 0; border-radius: 0; }
