/*==================================================
PREMIUM FARE CALCULATOR
Bareilly Taxi Core v9.0
==================================================*/

.bt-fare-section{
    padding:90px 0;
    background:#F8FAFC;
    position:relative;
}

.bt-fare-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#ffffff 0%,#F8FAFC 100%);
    z-index:0;
}

.bt-fare-section .bt-container{
    position:relative;
    z-index:2;
}

/*=====================================
Section Header
=====================================*/

.bt-section-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 55px;
}

.bt-section-badge{
    display:inline-block;
    background:#0B5ED7;
    color:#fff;
    padding:10px 24px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.bt-section-title{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin:0 0 15px;
}

.bt-section-description{
    font-size:18px;
    color:#64748B;
    line-height:30px;
}

/*=====================================
Main Card
=====================================*/

.bt-fare-card{

    background:#fff;

    border-radius:22px;

    padding:45px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

/*=====================================
Grid
=====================================*/

.bt-fare-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

.bt-field{

    display:flex;

    flex-direction:column;

}

.bt-field label{

    font-size:15px;

    font-weight:700;

    color:#111827;

    margin-bottom:10px;

}

.bt-field input,
.bt-field select{

    width:100%;

    height:58px;

    padding:0 18px;

    border:1px solid #D8DEE9;

    border-radius:12px;

    background:#fff;

    font-size:15px;

    transition:.3s;

}

.bt-field input:focus,
.bt-field select:focus{

    outline:none;

    border-color:#0B5ED7;

    box-shadow:0 0 0 4px rgba(11,94,215,.12);

}/*=====================================
Action Buttons
=====================================*/

.bt-fare-action{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-top:35px;

    flex-wrap:wrap;

}

.bt-fare-action .bt-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:210px;

    height:56px;

    padding:0 28px;

    border:none;

    border-radius:12px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.30s ease;

    position:relative;

    overflow:hidden;

}

/* Shine Effect */

.bt-fare-action .bt-btn::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:120%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-20deg);

    transition:.6s;

}

.bt-fare-action .bt-btn:hover::after{

    left:120%;

}

/* Calculate */

.bt-primary{

    background:#0B5ED7;

    color:#fff;

}

.bt-primary:hover{

    background:#0848A5;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(11,94,215,.30);

}

/* Call */

.bt-call{

    background:#16A34A;

    color:#fff;

}

.bt-call:hover{

    background:#15803D;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(22,163,74,.30);

}

/* WhatsApp */

.bt-whatsapp{

    background:#25D366;

    color:#fff;

}

.bt-whatsapp:hover{

    background:#1EBE5D;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(37,211,102,.30);

}

/*=====================================
Result Cards
=====================================*/

.bt-result-box{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin-top:45px;

}

.bt-result-item{

    background:linear-gradient(135deg,#0B5ED7,#003C8F);

    color:#fff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    transition:.30s ease;

}

.bt-result-item:hover{

    transform:translateY(-5px);

}

.bt-result-item span{

    display:block;

    font-size:15px;

    color:rgba(255,255,255,.85);

    margin-bottom:12px;

}

.bt-result-item strong{

    display:block;

    font-size:40px;

    font-weight:800;

    color:#FFC107;

}/*=====================================
Input Hover
=====================================*/

.bt-field input:hover,
.bt-field select:hover{

    border-color:#0B5ED7;

}

/*=====================================
Card Animation
=====================================*/

.bt-fare-card{

    animation:btFareFade .6s ease;

}

@keyframes btFareFade{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=====================================
Focus Animation
=====================================*/

.bt-field input,
.bt-field select{

    transition:all .30s ease;

}

.bt-field input:focus,
.bt-field select:focus{

    transform:translateY(-2px);

}

/*=====================================
Tablet
=====================================*/

@media(max-width:991px){

.bt-fare-card{

padding:35px;

}

.bt-fare-grid{

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.bt-fare-action{

justify-content:center;

}

.bt-result-box{

grid-template-columns:repeat(2,1fr);

}

}

/*=====================================
Mobile
=====================================*/

@media(max-width:767px){

.bt-fare-section{

padding:70px 0;

}

.bt-section-header{

margin-bottom:35px;

}

.bt-section-title{

font-size:32px;

line-height:1.3;

}

.bt-section-description{

font-size:16px;

line-height:28px;

}

.bt-fare-card{

padding:22px;

border-radius:18px;

}

.bt-fare-grid{

grid-template-columns:1fr;

gap:18px;

}

.bt-fare-action{

flex-direction:column;

gap:15px;

}

.bt-fare-action .bt-btn{

width:100%;

min-width:100%;

height:54px;

}

.bt-result-box{

grid-template-columns:1fr;

gap:18px;

}

.bt-result-item{

padding:25px;

}

.bt-result-item strong{

font-size:30px;

}

}

/*=====================================
Large Desktop
=====================================*/

@media(min-width:1400px){

.bt-fare-card{

max-width:1250px;

}

}

/*=====================================
Utility
=====================================*/

.bt-hidden{

display:none;

}

.bt-text-center{

text-align:center;

}/*==================================================
FARE CALCULATOR BUTTON FIX
==================================================*/

.bt-fare-section .bt-fare-action{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    gap:18px !important;
    flex-wrap:wrap !important;
    margin-top:35px !important;
}

.bt-fare-section .bt-fare-action .bt-btn{

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:220px !important;
    height:56px !important;

    border-radius:12px !important;

    text-decoration:none !important;

    font-size:16px !important;

    font-weight:700 !important;

    border:none !important;

    cursor:pointer !important;

}

.bt-fare-section .bt-fare-action .bt-primary{

    background:#FFC107 !important;

    color:#111 !important;

}

.bt-fare-section .bt-fare-action .bt-call{

    background:#0B5ED7 !important;

    color:#fff !important;

}

.bt-fare-section .bt-fare-action .bt-whatsapp{

    background:#25D366 !important;

    color:#fff !important;

}

.bt-fare-section .bt-fare-action .bt-btn:hover{

    transform:translateY(-3px);

}