/* ====================================
   GOOGLE FONT
==================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ====================================
   GLOBAL
==================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F7F9FC;
    color:#1F2937;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.catalog-page{
    padding:60px 0;
}

/* ====================================
   CONTAINER
==================================== */

.catalog-page .container-fluid{
    max-width:1400px;
    margin:auto;
}

/* ====================================
   SIDEBAR
==================================== */

.filter-card{

    background:#ffffff;

    border-radius:24px;

    padding:30px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.05);

    position:sticky;

    top:110px;

}

/* ====================================
   FILTER HEADER
==================================== */

.filter-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.filter-header h4{

    font-size:24px;

    font-weight:700;

    color:#0F172A;

}

.filter-header a{

    font-size:14px;

    color:#003963;

    font-weight:600;

}

/* ====================================
   FILTER GROUP
==================================== */

.filter-group{

    margin-bottom:30px;

}

.filter-group label{

    display:block;

    margin-bottom:14px;

    font-size:15px;

    font-weight:600;

    color:#334155;

}

/* ====================================
   SEARCH BOX
==================================== */

.search-box{

    position:relative;

}

.search-box i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#94A3B8;

    font-size:16px;

}

.search-box input{

    height:46px;

    border-radius:14px;

    border:1px solid #E5E7EB;

    padding-left:40px;

    font-size:15px;

    transition:.3s;

    box-shadow:none;

}

.search-box input:focus{

    border-color:#003963;

    box-shadow:none;

}

/* ====================================
   CHECKBOX
==================================== */

.form-check{

    margin-bottom:15px;

    display:flex;

    align-items:center;

}

.form-check-input{

    width:18px;

    height:18px;

    cursor:pointer;

    border:1px solid #CBD5E1;

}

.form-check-input:checked{

    background:#003963;

    border-color:#003963;

}

.form-check-label{

    margin-left:10px;

    font-size:15px;

    color:#475569;

    cursor:pointer;

}

/* ====================================
   TRANSMISSION
==================================== */

.transmission-btn{

    display:flex;

    gap:12px;

}

.transmission-btn .btn{

    flex:1;

    height:50px;

    border-radius:14px;

    border:1px solid #D1D5DB;

    background:#fff;

    color:#334155;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.transmission-btn .btn:hover{

    background:#003963;

    color:#fff;

}

.transmission-btn .btn.active{

    background:#003963;

    color:#fff;

    border-color:#003963;

}

/* ====================================
   CATALOG HEADER
==================================== */

.catalog-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

    flex-wrap:wrap;

    gap:20px;

}

.catalog-title h1{

    font-size:36px;

    font-weight:700;

    color:#0F172A;

    margin:0;

}

.catalog-title span{

    color:#64748B;

    font-size:24px;

    font-weight:500;

}

/* ====================================
   SORT BOX
==================================== */

.sort-box{

    display:flex;

    align-items:center;

    gap:12px;

}

.sort-box small{

    color:#64748B;

    font-size:14px;

    font-weight:500;

}

.sort-btn{

    display:flex;

    align-items:center;

    gap:10px;

    height:48px;

    padding:0 22px;

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:14px;

    font-size:14px;

    font-weight:600;

    color:#334155;

    transition:.3s;

}

.sort-btn:hover{

    border-color:#003963;

    color:#003963;

}

.sort-btn i{

    font-size:12px;

}

/* ====================================
   GRID
==================================== */

.row.g-4{

    --bs-gutter-x:26px;

    --bs-gutter-y:26px;

}

/* ====================================
   CARD MOBIL
==================================== */

.car-card{

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    position:relative;

    box-shadow:

        0 8px 25px rgba(15,23,42,.05);

    transition:.35s;

    border:1px solid #EEF2F7;

    height:100%;

}

.car-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 18px 45px rgba(15,23,42,.12);

}

/* ====================================
   STATUS BADGE
==================================== */

.status-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#E9F9EF;

    color:#16A34A;

    font-size:13px;

    font-weight:600;

    padding:8px 16px;

    border-radius:999px;

    z-index:20;

}

/* ====================================
   IMAGE AREA
==================================== */

.car-image{

    height:230px;

    background:#F8FAFC;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    padding:25px;

}

.car-image img{

    width:100%;

    max-width:270px;

    transition:.35s;

}

.car-card:hover .car-image img{

    transform:scale(1.05);

}

/* ====================================
   CONTENT
==================================== */

.car-content{

    padding:24px;

}

.car-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:10px;

}

.car-top h4{

    margin:0;

    font-size:14px;

    font-weight:500;

    color:#64748B;

}

.car-top h3{

    margin-top:4px;

    margin-bottom:0;

    font-size:22px;

    font-weight:700;

    color:#0F172A;

    line-height:1.3;

}

.tagline{

    font-size:14px;

    color:#94A3B8;

    margin-bottom:20px;

}

/* ====================================
   PRICE
==================================== */

.price{

    text-align:right;

    line-height:1.2;

}

.price span{

    font-size:13px;

    color:#64748B;

    font-weight:500;

}

.price h4{

    margin:2px 0;

    font-size:24px;

    font-weight:700;

    color:#003963;

}

.price small{

    font-size:13px;

    color:#94A3B8;

}

/* ====================================
   FEATURE LIST
==================================== */

.feature-list{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:24px;

}

.feature-list span{

    display:flex;

    align-items:center;

    gap:8px;

    background:#F8FAFC;

    border:1px solid #E2E8F0;

    border-radius:12px;

    padding:10px 14px;

    font-size:13px;

    font-weight:500;

    color:#475569;

    transition:.3s;

}

.feature-list span:hover{

    background:#EEF6FF;

    border-color:#003963;

    color:#003963;

}

/* ====================================
   FEATURE ICON
==================================== */

.feature-list i{

    color:#003963;

    font-size:15px;

}

/* ====================================
   BUTTON BOOK
==================================== */

.btn-book{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    height:52px;

    background:#003963;

    color:#fff;

    border-radius:14px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.btn-book:hover{

    background:#00518D;

    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(0,57,99,.25);

}

.btn-disabled{
    width:100%;
    height:58px;
    background:#E5E7EB;
    color:#6B7280;
    border:none;
    border-radius:16px;
    font-size:17px;
    font-weight:600;
    cursor:not-allowed;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.btn-disabled:hover{
    background:#E5E7EB;
    color:#6B7280;
}

/* ====================================
   CARD ANIMATION
==================================== */

.car-card{

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.car-card:hover .btn-book{

    background:#004D85;

}

.car-card:hover .status-badge{

    background:#DCFCE7;

}

.car-card:hover .feature-list span{

    background:#F1F5F9;

}

/* ====================================
   IMAGE EFFECT
==================================== */

.car-image{

    position:relative;

}

.car-image::after{

    content:"";

    position:absolute;

    bottom:15px;

    left:50%;

    transform:translateX(-50%);

    width:70%;

    height:18px;

    background:rgba(0,0,0,.08);

    filter:blur(12px);

    border-radius:50%;

    z-index:0;

}

.car-image img{

    position:relative;

    z-index:2;

}

/* ====================================
   CARD BORDER EFFECT
==================================== */

.car-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#003963;

    transform:scaleX(0);

    transition:.35s;

    transform-origin:left;

}

.car-card:hover::before{

    transform:scaleX(1);

}

/* ====================================
   TRANSITIONS
==================================== */

.status-badge,
.feature-list span,
.btn-book,
.car-image img{

    transition:.3s;

}

/* ====================================
   PAGINATION
==================================== */

.pagination-wrapper{

    display:flex;

    justify-content:center;

    margin-top:50px;

}

.pagination{

    gap:12px;

}

.pagination .page-link{

    width:46px;

    height:46px;

    border-radius:12px;

    border:none;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#FFFFFF;

    color:#64748B;

    font-weight:600;

    font-size:15px;

    box-shadow:0 4px 12px rgba(15,23,42,.05);

    transition:.3s;

}

.pagination .page-link:hover{

    background:#003963;

    color:#fff;

}

.pagination .page-item.active .page-link{

    background:#003963;

    color:#fff;

    box-shadow:0 10px 20px rgba(0,57,99,.25);

}

/* ====================================
   FLOATING WHATSAPP
==================================== */

.floating-wa{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    box-shadow:0 10px 25px rgba(37,211,102,.35);

    z-index:999;

    transition:.3s;

}

.floating-wa:hover{

    color:#fff;

    transform:scale(1.08);

    box-shadow:0 15px 35px rgba(37,211,102,.45);

}

/* ====================================
   SCROLLBAR
==================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#003963;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#EEF2F7;

}

/* ====================================
   RESPONSIVE
==================================== */

@media (max-width:1200px){

    .catalog-title h1{

        font-size:30px;

    }

    .car-image{

        height:210px;

    }

}

@media (max-width:992px){

    .filter-card{

        position:static;

        margin-bottom:30px;

    }

    .catalog-header{

        flex-direction:column;

        align-items:flex-start;

    }

    .sort-box{

        width:100%;

        justify-content:space-between;

    }

    .sort-btn{

        width:220px;

        justify-content:center;

    }

}

@media (max-width:768px){

    .catalog-page{

        padding:35px 0;

    }

    .catalog-title h1{

        font-size:26px;

    }

    .catalog-title span{

        font-size:18px;

    }

    .filter-card{

        padding:22px;

    }

    .car-image{

        height:200px;

    }

    .car-content{

        padding:20px;

    }

    .car-top{

        flex-direction:column;

        gap:10px;

    }

    .price{

        text-align:left;

    }

    .feature-list{

        gap:8px;

    }

    .feature-list span{

        width:100%;

        justify-content:center;

    }

}

@media (max-width:576px){

    .container-fluid{

        padding-left:15px !important;

        padding-right:15px !important;

    }

    .catalog-title h1{

        font-size:22px;

    }

    .sort-box{

        flex-direction:column;

        align-items:stretch;

    }

    .sort-btn{

        width:100%;

    }

    .pagination{

        gap:8px;

    }

    .pagination .page-link{

        width:40px;

        height:40px;

        font-size:14px;

    }

    .floating-wa{

        width:56px;

        height:56px;

        right:18px;

        bottom:18px;

        font-size:28px;

    }

}

/* ====================================
   SMOOTH ANIMATION
==================================== */

.car-card,
.filter-card,
.sort-btn,
.btn-book,
.pagination .page-link{

    transition:all .3s ease;

}