/* =========================
   FINAL CTA SECTION
========================= */

.astro-final-cta-wrapper{
    position: relative;
    overflow: hidden;
    padding: 70px 20px;
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(255,140,0,0.15), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255,215,0,0.15), transparent 35%),
        linear-gradient(135deg,#fff7ef,#ffffff,#fff5e6);
    font-family: 'Poppins', sans-serif;
}

/* GLOW ORBS */
.astro-final-cta-wrapper::before,
.astro-final-cta-wrapper::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,140,0,0.08);
    filter: blur(80px);
    z-index: 0;
    animation: astroFloat 8s ease-in-out infinite;
}

.astro-final-cta-wrapper::before{
    top: -100px;
    left: -80px;
}

.astro-final-cta-wrapper::after{
    bottom: -100px;
    right: -80px;
    animation-delay: 4s;
}

/* CONTAINER */
.astro-final-cta-container{
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,140,0,0.15);
    border-radius: 35px;
    padding: 55px 40px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.8);
    animation: astroFadeUp 1s ease;
}

/* TOP BADGE */
.astro-final-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,140,0,0.12);
    color: #ff8c00;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    animation: astroPulse 2s infinite;
}

/* TITLE */
.astro-final-cta-container h2{
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}

.astro-final-cta-container h2 span{
    background: linear-gradient(90deg,#ff8c00,#ffb300,#ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.astro-final-cta-container p{
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 680px;
    margin: 0 auto 28px;
}

/* TRUST */
.astro-final-trust{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.astro-final-trust span{
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,140,0,0.12);
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.astro-final-trust span:hover{
    transform: translateY(-5px);
    border-color: rgba(255,140,0,0.35);
    box-shadow: 0 10px 25px rgba(255,140,0,0.15);
}

/* BUTTON WRAP */
.astro-final-buttons{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
}

/* BUTTON BASE */
.astro-btn{
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    z-index: 1;
}

/* SHINE EFFECT */
.astro-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );
    transition: 0.6s;
    z-index: -1;
}

.astro-btn:hover::before{
    left: 120%;
}

/* CALL BUTTON */
.astro-btn.call{
    background: linear-gradient(135deg,#ff8c00,#ffb300,#ffd700);
    color: #111;
    box-shadow: 0 12px 30px rgba(255,140,0,0.35);
}

/* WHATSAPP BUTTON */
.astro-btn.whatsapp{
    background: linear-gradient(135deg,#1ebe5d,#25D366);
    color: #fff;
    box-shadow: 0 12px 30px rgba(37,211,102,0.28);
}

/* BUTTON HOVER */
.astro-btn:hover{
    transform: translateY(-6px) scale(1.05);
}

/* URGENCY */
.astro-final-urgency{
    margin-top: 30px !important;
    color: #d35400 !important;
    font-weight: 600;
    font-size: 14px !important;
    animation: astroBlink 2s infinite;
}

/* FLOATING STARS */
.astro-floating-star{
    position: absolute;
    color: rgba(255,140,0,0.25);
    font-size: 22px;
    animation: astroFloatStar 5s linear infinite;
    pointer-events: none;
}

.star1{ top: 10%; left: 8%; }
.star2{ top: 20%; right: 10%; animation-delay: 2s; }
.star3{ bottom: 15%; left: 12%; animation-delay: 1s; }
.star4{ bottom: 10%; right: 14%; animation-delay: 3s; }

/* =========================
   ANIMATIONS
========================= */

@keyframes astroFadeUp{
    from{
        opacity: 0;
        transform: translateY(50px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes astroFloat{
    0%,100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-25px);
    }
}

@keyframes astroPulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.04);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes astroBlink{
    0%,100%{
        opacity: 1;
    }
    50%{
        opacity: 0.55;
    }
}

@keyframes astroFloatStar{
    0%{
        transform: translateY(0px) rotate(0deg);
    }
    50%{
        transform: translateY(-15px) rotate(10deg);
    }
    100%{
        transform: translateY(0px) rotate(0deg);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .astro-final-cta-wrapper{
        padding: 50px 15px;
    }

    .astro-final-cta-container{
        padding: 40px 25px;
        border-radius: 28px;
    }

    .astro-final-cta-container h2{
        font-size: 34px;
    }

    .astro-final-cta-container p{
        font-size: 14px;
        line-height: 1.7;
    }

    .astro-final-buttons{
        flex-direction: column;
    }

    .astro-btn{
        width: 100%;
    }

}