/* ============================================================
   THE SHRINKERS — Structural Additions Only
   Uses the original Reliva theme color palette as-is.
   Only adds new elements: trust strip, floating buttons,
   personality test banner, and logo sizing.
   ============================================================ */

/* ---- Logo sizing ---- */
.main-header .navbar-brand img {
    max-height: 52px;
    width: auto;
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* ---- Click to Call Floating Button ---- */
.call-float {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(53, 42, 68, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(53, 42, 68, 0.5);
    color: #fff;
}

/* ---- Credential Trust Strip ---- */
.trust-strip {
    background: var(--primary-color);
    padding: 16px 0;
    margin-top: 5px;
    overflow: hidden;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.trust-strip-inner span {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--accent-font);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-strip-inner .divider {
    color: var(--accent-color);
    font-size: 8px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Personality Test CTA Banner ---- */
.personality-test-banner {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.personality-test-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(53, 42, 68, 0.05) 0%, transparent 50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.personality-test-banner h2 {
    color: var(--primary-color);
    font-family: var(--accent-font);
    font-size: 36px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.personality-test-banner p {
    color: var(--primary-color);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

/* Tablet */
@media (max-width: 991px) {
    .trust-strip-inner {
        gap: 24px;
    }

    .trust-strip-inner span {
        font-size: 12px;
    }

    .personality-test-banner {
        padding: 50px 0;
    }

    .personality-test-banner h2 {
        font-size: 28px;
    }

    .personality-test-banner p {
        font-size: 16px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .call-float {
        width: 48px;
        height: 48px;
        bottom: 78px;
        right: 16px;
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .main-header .navbar-brand img {
        max-height: 40px;
    }

    .trust-strip {
        padding: 12px 0;
    }

    .trust-strip-inner {
        gap: 20px;
    }

    .trust-strip-inner span {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .personality-test-banner {
        padding: 40px 0;
    }

    .personality-test-banner h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .personality-test-banner p {
        font-size: 15px;
        padding: 0 16px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 14px;
        right: 14px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .call-float {
        width: 44px;
        height: 44px;
        bottom: 72px;
        right: 14px;
        font-size: 16px;
    }
}
