/* ========================================
   STICKY ACTION BAR (Persistent CTA)
   ======================================== */

/* Main container - fixed at bottom */
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.12);
    border-top: 1px solid rgba(45, 94, 63, 0.1);

    /* iPhone Safe Area Support */
    padding-bottom: env(safe-area-inset-bottom);
}

.sticky-action-content {
    padding: 14px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* The Main Button */
.sticky-action-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 94, 63, 0.25);
    font-family: var(--font-heading);
}

.sticky-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 94, 63, 0.35);
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, #1a3821 100%);
}

.sticky-action-btn:active {
    transform: translateY(0);
}

/* Main text (Big, Bold) */
.sticky-action-main {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Subtext (Small, subtle) */
.sticky-action-sub {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

/* Body padding removed - gap fix */
body {
    padding-bottom: 0;
}

/* Hide old sticky CTA if present */
.sticky-cta {
    display: none !important;
}

/* Desktop version - make it slightly smaller but KEEP VISIBLE */
@media (min-width: 769px) {
    .sticky-action-content {
        padding: 12px 24px;
    }

    .sticky-action-btn {
        max-width: 500px;
        margin: 0 auto;
        padding: 14px 32px;
    }

    .sticky-action-main {
        font-size: 1.15rem;
    }

    .sticky-action-sub {
        font-size: 0.7rem;
    }

    /* Container adjustment */
    body {
        padding-bottom: 0;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {

    /* Move reviews badge up to avoid overlap */
    .reviews-badge {
        bottom: 100px !important;
    }

    .sticky-action-main {
        font-size: 1.2rem;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .sticky-action-content {
        padding: 12px 16px;
    }

    .sticky-action-btn {
        padding: 14px 20px;
    }

    .sticky-action-main {
        font-size: 1.1rem;
    }

    .sticky-action-sub {
        font-size: 0.7rem;
    }
}