/* ============================================================
   Axion Plumbing — Site Enhancements
   Top bar · Mobile sticky · WhatsApp · Google Reviews
   ============================================================ */

/* ── Emergency top bar ──────────────────────────────────────── */
.axion-topbar {
    background: #d9230f;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    padding: 8px 16px;
}

body.admin-bar .axion-topbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .axion-topbar {
        top: 46px;
    }
}

.axion-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.axion-topbar-msg {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.axion-topbar-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    transition: background 0.18s;
}

.axion-topbar-phone:hover {
    background: rgba(255,255,255,0.28);
    color: #fff;
}

@media (max-width: 575px) {
    .axion-topbar {
        font-size: 12px;
        padding: 7px 12px;
    }
    .axion-topbar-msg {
        font-size: 11px;
    }
}

/* ── Mobile sticky bar ──────────────────────────────────────── */
.axion-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: #121A22;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

@media (max-width: 991px) {
    .axion-sticky-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.axion-sticky-bar__call,
.axion-sticky-bar__book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    transition: background 0.18s;
    letter-spacing: 0.02em;
}

.axion-sticky-bar__call {
    background: #121A22;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.axion-sticky-bar__call:hover {
    background: #1e2d3d;
    color: #fff;
}

.axion-sticky-bar__book {
    background: #107CDF;
    color: #fff;
}

.axion-sticky-bar__book:hover {
    background: #0d6bc7;
    color: #fff;
}

/* Push page content up so sticky bar doesn't cover footer */
@media (max-width: 991px) {
    body {
        padding-bottom: 56px;
    }
}

/* ── WhatsApp floating button ───────────────────────────────── */
.axion-whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9996;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.axion-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37,211,102,0.55);
    color: #fff;
}

@media (max-width: 991px) {
    .axion-whatsapp-btn {
        bottom: 72px;
        right: 14px;
        width: 48px;
        height: 48px;
    }
}

/* ── Google Reviews section ─────────────────────────────────── */
.axion-google-reviews {
    padding: 70px 0;
    background: #f8fafc;
}

.axion-gr-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    text-align: center;
}

.axion-gr-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e3eaf1;
    border-radius: 50px;
    padding: 8px 20px 8px 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.axion-gr-badge svg {
    flex-shrink: 0;
}

.axion-gr-badge-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #121A22;
    line-height: 1.2;
}

.axion-gr-badge-text span {
    font-size: 12px;
    color: #687693;
}

.axion-gr-stars {
    display: flex;
    gap: 3px;
}

.axion-gr-stars svg {
    fill: #FBBC04;
}

.axion-gr-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.axion-gr-card {
    background: #fff;
    border: 1px solid #e3eaf1;
    border-radius: 12px;
    padding: 22px 20px 18px;
    position: relative;
}

.axion-gr-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.axion-gr-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.axion-gr-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axion-gr-info {
    flex: 1;
}

.axion-gr-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #121A22;
    line-height: 1.3;
}

.axion-gr-info span {
    font-size: 11px;
    color: #9aabb8;
}

.axion-gr-google-icon {
    position: absolute;
    top: 14px;
    right: 14px;
}

.axion-gr-card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.axion-gr-card-stars svg {
    fill: #FBBC04;
}

.axion-gr-card p {
    font-size: 13px;
    color: #687693;
    line-height: 1.65;
    margin: 0;
}

.axion-gr-cta {
    text-align: center;
}

.axion-gr-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #107CDF;
    color: #107CDF;
    border-radius: 6px;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}

.axion-gr-cta a:hover {
    background: #107CDF;
    color: #fff;
}

@media (max-width: 991px) {
    .axion-gr-cards {
        grid-template-columns: 1fr 1fr;
    }
    .axion-gr-cards .axion-gr-card:last-child {
        display: none;
    }
}

@media (max-width: 575px) {
    .axion-gr-cards {
        grid-template-columns: 1fr;
    }
    .axion-gr-cards .axion-gr-card:last-child {
        display: block;
    }
    .axion-google-reviews {
        padding: 50px 0;
    }
}
