/* ==================================================
   FAST CASH V2
================================================== */

:root{
    --blue:#0B2E63;
    --blue-dark:#08234b;
    --yellow:#F4C400;
    --white:#ffffff;
    --text:#1f2937;
    --grey:#f5f7fb;
}

body{
    font-family:'Segoe UI',Arial,sans-serif;
    color:var(--text);
}

/* remove old header spacing */
.menu-area{
    margin:0;
    padding:0;
}

/* Top header */
.top-menu-area{

    background:#fff;

    border-radius:16px;

    margin:20px auto;

    width:96%;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Layout */
.menu-full-width{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 40px;
}

/* Logo */
.logo img{
    height:72px;
    width:auto;
}

/* Navigation */
.dropdown-main{
    display:flex;
    align-items:center;
    gap:40px;
    margin:0;
    padding:0;
    list-style:none;
}

.dropdown-main>li>a{
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    color:#222;
    text-decoration:none;
    transition:.25s;
}

.dropdown-main>li>a:hover{
    color:var(--blue);
}

/* Facebook */
.social__links{
    margin:0;
    padding:0;
    list-style:none;
}

.social__links a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--blue);
    color:#fff;
    transition:.25s;
}

.social__links a:hover{
    background:var(--yellow);
    color:var(--blue);
}

/* Dropdown */
.main__dropdown-menu{
    border-radius:12px;
    border:none;
    box-shadow:0 12px 40px rgba(0,0,0,.12);
}

/* Mobile */
@media(max-width:991px){

.menu-full-width{
    padding:15px;
}

.logo img{
    height:72px;
}

.dropdown-main{
    gap:18px;
}

.dropdown-main>li>a{
    font-size:13px;
}

}
/* ---------- TOP BAR ---------- */

.fc-topbar{
    background:#0B2E63;
    color:#fff;
    height:42px;
    display:flex;
    align-items:center;
    font-size:14px;
}

.fc-topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.fc-left,
.fc-center,
.fc-right{
    font-weight:600;
}

@media(max-width:991px){

.fc-center{
    display:none;
}

.fc-topbar{
    font-size:12px;
}

}
/* ==========================
   HERO SECTION
========================== */

.fastcash-hero{

    background:#0d2f6f;

    color:#fff;

    padding:90px 0;

}

.hero-tag{

    display:inline-block;

    background:#f5b301;

    color:#000;

    padding:8px 18px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.fastcash-hero h1{

    font-size:56px;

    font-weight:800;

    margin-bottom:20px;

    color:#fff;

}

.fastcash-hero p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:35px;

    color:#e7e7e7;

}

.hero-image{

    max-width:100%;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.fc-btn{

    display:inline-block;

    background:#f5b301;

    color:#000;

    padding:15px 32px;

    border-radius:8px;

    font-weight:700;

    margin-right:15px;

    text-decoration:none;

}

.fc-btn:hover{

    background:#ffd447;

    color:#000;

}

.fc-btn-outline{

    display:inline-block;

    border:2px solid #fff;

    color:#fff;

    padding:15px 32px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

}

.fc-btn-outline:hover{

    background:#fff;

    color:#0d2f6f;

}
/* ===================================
   CATEGORY GRID
=================================== */

.fc-categories{
    padding:90px 0;
    background:#f7f9fc;
}

.fc-section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.fc-section-title span{
    color:#f4b400;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.fc-section-title h2{
    font-size:42px;
    color:#163b74;
    margin:10px 0 15px;
    font-weight:800;
}

.fc-section-title p{
    color:#666;
    font-size:17px;
}

.fc-category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.fc-category-card{
    display:flex;
    flex-direction:column;
    height:100%;

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:#222;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.fc-category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.fc-category-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    display:block;
    transition:.35s ease;
}

.fc-category-card:hover img{
    transform:scale(1.06);
}

.fc-category-card h3{
    color:#10396b;
    font-size:24px;
    margin:22px 25px 10px;
    font-weight:700;
}

.fc-category-card p{
    margin:0 25px 30px;
    color:#666;
    line-height:1.7;
    font-size:16px;
    flex-grow:1;
}

@media(max-width:1100px){
    .fc-category-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .fc-category-grid{
        grid-template-columns:1fr;
    }
}
/* ============================
   HOME CATEGORIES
============================ */

.fc-categories{
    padding:80px 0;
    background:#f7f8fb;
}

.fc-section-title{
    text-align:center;
    margin-bottom:50px;
}

.fc-section-title span{
    display:inline-block;
    background:#f4c400;
    color:#0b2e63;
    padding:8px 18px;
    border-radius:40px;
    font-weight:700;
    font-size:13px;
    margin-bottom:15px;
}

.fc-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2e63;
    margin-bottom:15px;
}

.fc-section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
}

.fc-category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.fc-category-card{
    display:block;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.fc-category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.fc-category-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.45s;
}

.fc-category-card:hover img{
    transform:scale(1.08);
}

.fc-category-card h3{
    color:#0b2e63;
    font-size:22px;
    margin:20px 20px 10px;
    font-weight:700;
}

.fc-category-card p{
    margin:0 20px 25px;
    color:#666;
    line-height:1.6;
}

@media(max-width:1200px){
    .fc-category-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:900px){
    .fc-category-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .fc-category-grid{
        grid-template-columns:1fr;
    }

    .fc-section-title h2{
        font-size:32px;
    }
}
/* ==========================
   WHY CHOOSE FAST CASH
========================== */

.fc-why{
    background:#10396b;
    padding:90px 0;
    color:#fff;
}

.fc-why .fc-section-title h2{
    color:#fff;
}

.fc-why .fc-section-title p{
    color:rgba(255,255,255,.85);
}

.fc-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:55px;
}

.fc-why-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.3s;
}

.fc-why-card:hover{
    transform:translateY(-8px);
    background:#ffffff;
    color:#222;
}

.fc-icon{
    font-size:50px;
    margin-bottom:20px;
}

.fc-why-card h3{
    font-size:24px;
    margin-bottom:15px;
    font-weight:700;
}

.fc-why-card p{
    line-height:1.8;
    color:inherit;
}

@media(max-width:991px){

    .fc-why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .fc-why-grid{
        grid-template-columns:1fr;
    }

}
/* =====================================
   STORE SECTION
===================================== */

.fc-stores{

    padding:90px 0;
    background:#fff;

}

.fc-store-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:55px;

}

.fc-store-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;

}

.fc-store-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.fc-store-card img{

    width:100%;
    height:230px;
    object-fit:cover;

}

.fc-store-content{

    padding:25px;

}

.fc-store-content h3{

    color:#10396b;
    margin-bottom:18px;
    font-size:28px;
    font-weight:700;

}

.fc-store-content p{

    color:#666;
    line-height:1.7;
    margin-bottom:15px;

}

.fc-store-buttons{

    margin-top:20px;

}

.fc-btn-outline{

    display:inline-block;
    background:#F4C400;
    color:#10396b;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;

}

.fc-btn-outline:hover{

    background:#10396b;
    color:#fff;

}

@media(max-width:1200px){

    .fc-store-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:700px){

    .fc-store-grid{

        grid-template-columns:1fr;

    }

}
/* STORE SECTION */

.fc-store-section{
    padding:80px 0;
    background:#f8f9fb;
}

.fc-store-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:50px;
}

.fc-store-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.fc-store-card:hover{
    transform:translateY(-8px);
}

.fc-store-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.fc-store-card h3{
    padding:20px 20px 10px;
    color:#0B2E63;
}

.fc-store-card p{
    padding:0 20px;
    color:#666;
    min-height:60px;
}

.fc-store-card a{
    display:inline-block;
    margin:20px;
    padding:12px 20px;
    background:#F4C400;
    color:#0B2E63;
    text-decoration:none;
    font-weight:700;
    border-radius:6px;
}

.fc-store-card a:hover{
    background:#0B2E63;
    color:#fff;
}
/* ==========================================
   PRODUCTS FOR SALE PAGE
========================================== */

.fc-sale-intro{
    padding:90px 0;
    background:#fff;
    text-align:center;
}

.fc-section-tag{
    display:inline-block;
    background:#F4C400;
    color:#0B2E63;
    padding:10px 22px;
    border-radius:40px;
    font-weight:700;
    margin-bottom:25px;
    letter-spacing:1px;
}

.fc-sale-intro h2{
    font-size:48px;
    font-weight:800;
    color:#0B2E63;
    margin-bottom:20px;
}

.fc-sale-intro p{
    max-width:900px;
    margin:0 auto;
    line-height:1.9;
    font-size:18px;
    color:#666;
}

.fc-features{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:40px;
}

.fc-features div{
    background:#fff;
    padding:16px 24px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    font-weight:600;
}

.fc-store-section{
    padding:80px 0;
    background:#f8f9fb;
}

.fc-store-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.fc-store-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.fc-store-card:hover{
    transform:translateY(-10px);
}

.fc-store-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.fc-store-card h3{
    color:#0B2E63;
    font-size:28px;
    margin:20px 20px 10px;
}

.fc-store-card p{
    margin:0 20px 20px;
    color:#666;
    line-height:1.7;
    flex-grow:1;
}

.fc-store-card a{
    margin:20px;
    display:inline-block;
    text-align:center;
    padding:14px;
    background:#F4C400;
    color:#0B2E63;
    border-radius:8px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.fc-store-card a:hover{
    background:#0B2E63;
    color:#fff;
}

@media(max-width:1200px){
    .fc-store-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .fc-store-grid{
        grid-template-columns:1fr;
    }

    .fc-sale-intro h2{
        font-size:36px;
    }
}
/* ==========================================
   FAST CASH FUN
========================================== */

.fc-comic-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

.fc-comic-grid a{
    display:block;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.fc-comic-grid a:hover{
    transform:translateY(-6px);
}

.fc-comic-grid img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

@media(max-width:991px){
    .fc-comic-grid{
        grid-template-columns:1fr;
    }
}
.fc-comic-title{
    padding:15px;
    margin:0;
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#0B2E63;
    background:#fff;
}
/* ===========================
   Navigation
=========================== */

.main-menu .dropdown-main > li > a{
    color:#1d3557;
    font-weight:600;
    font-size:16px;
    transition:.3s;
    padding:28px 18px;
    position:relative;
}

.main-menu .dropdown-main > li > a:hover{
    color:#ffc107;
}

.main-menu .dropdown-main > li > a:after{
    content:"";
    position:absolute;
    left:18px;
    bottom:18px;
    width:0;
    height:3px;
    background:#ffc107;
    transition:.3s;
    border-radius:10px;
}

.main-menu .dropdown-main > li > a:hover:after{
    width:calc(100% - 36px);
}