/* =========================
   FINAL ROCKET FOOTER STYLE
========================= */

.fr-footer{
    margin-top:1px;
    background:linear-gradient(180deg,#0f172a,#020617);
    color:#cbd5f1;
    font-family:system-ui;
}

/* CTA STRIP */
.fr-cta{
    background:linear-gradient(135deg,#ff6b35,#ff8c42);
    padding:50px 20px;
    text-align:center;
    color:#fff;
}

.fr-cta-inner{
    max-width:700px;
    margin:auto;
}

.fr-cta h2{
    font-size:28px;
    margin-bottom:10px;
}

.fr-cta p{
    opacity:.9;
    margin-bottom:20px;
}

/* FORM */
.fr-cta-form{
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
}

.fr-cta-form input{
    padding:12px 14px;
    border:none;
    border-radius:8px;
    min-width:240px;
    outline:none;
}

.fr-cta-form button{
    background:#000;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.2s;
}

.fr-cta-form button:hover{
    background:#111;
}

/* MAIN */
.fr-main{
    padding:60px 20px;
}

.fr-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

/* CARD STYLE */
.fr-card{
    background:rgba(255,255,255,0.03);
    padding:20px;
    border-radius:14px;
    backdrop-filter:blur(6px);
    transition:.3s;
}

.fr-card:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,0.06);
}

/* BRAND */
.fr-logo{
    height:45px;
    margin-bottom:10px;
}

.fr-brand p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
}

/* LINKS */
.fr-card h4{
    color:#fff;
    margin-bottom:12px;
    font-size:15px;
}

.fr-card a{
    display:block;
    color:#94a3b8;
    text-decoration:none;
    margin-bottom:8px;
    font-size:14px;
    transition:.2s;
}

.fr-card a:hover{
    color:#fff;
    padding-left:4px;
}

/* SOCIAL */
.fr-social{
    display:flex;
    gap:10px;
}

.fr-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1e293b;
    border-radius:8px;
    color:#fff;
    transition:.2s;
}

.fr-social a:hover{
    background:#de3a3a;
}

/* BOTTOM */
.fr-bottom{
    text-align:center;
    padding:20px;
    font-size:13px;
    border-top:1px solid rgba(255,255,255,0.05);
    color:#ffffff;
}
/* BRAND NAME (TEXT LOGO) */
.fr-brand-name{
    font-size:22px;
    font-weight:800;
    letter-spacing:.5px;
    margin-bottom:10px;

    /* gradient text effect */
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    /* fallback */
    color:#fff;
}