/*==================================================
RATES PAGE
Jerucas Transportation
==================================================*/


/*=========================================
HERO
=========================================*/

.hero-small{

    min-height:55vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:100px 0 80px;

    background:
    linear-gradient(
        rgba(0,0,0,.82),
        rgba(0,0,0,.65)
    ),
    url("rates-hero.jpg");

    background-size:cover;

    background-position:center;

}

.hero-content{

    max-width:900px;

    margin:auto;

}

.hero-small h1{

    color:#fff;

    font-size:clamp(3rem,6vw,5rem);

    margin-bottom:20px;

}

.hero-small .hero-text{

    color:#ececec;

    font-size:1.15rem;

    line-height:1.8;

    max-width:750px;

    margin:auto;

}



/*=========================================
FARE ESTIMATOR
=========================================*/

.fare-card{

    max-width:1200px;

    margin:70px auto;

    background:#fff;

    border-radius:30px;

    padding:45px;

    box-shadow:

    0 25px 70px rgba(0,0,0,.08);

}



.fare-grid{

    display:grid;

    grid-template-columns:

    repeat(2,1fr);

    gap:30px;

    margin-bottom:25px;

}



.fare-grid label{

    display:flex;

    flex-direction:column;

    font-weight:700;

    color:#222;

    gap:10px;

}



.fare-grid select{

    padding:18px;

    border-radius:14px;

    border:1px solid #ddd;

    font-size:1rem;

    transition:.30s;

    background:#fff;

}



.fare-grid select:hover{

    border-color:var(--gold);

}



.fare-grid select:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:

    0 0 0 4px

    rgba(212,175,55,.15);

}

.fare-grid input{
     width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:13px;
  font:inherit;
  background:#fafafa;
}


/*=========================================
RESULT
=========================================*/

.estimate-result{

    background:

    linear-gradient(

        135deg,

        #111,

        #1d1d1d

    );

    border-radius:24px;

    padding:45px;

    text-align:center;

    color:#fff;

}



.estimate-result h3{

    color:#fff;

    margin-bottom:20px;

}



#price{

    font-size:4rem;

    color:var(--gold);

    font-weight:800;

    margin:20px 0;

}



.estimate-result p{

    color:#ddd;

    line-height:2;

    margin-bottom:35px;

}



/*=========================================
POPULAR ROUTES
=========================================*/

.routes-grid{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin-top:60px;

}



.route-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:

    0 20px 60px rgba(0,0,0,.08);

    transition:.35s;

    border-top:

    5px solid var(--gold);

}



.route-card:hover{

    transform:

    translateY(-10px);

    box-shadow:

    0 30px 80px rgba(0,0,0,.15);

}



.route-card h3{

    margin-bottom:12px;

    color:#222;

}



.route-card span{

    display:block;

    color:#777;

    margin-bottom:15px;

}



.route-card h2{

    font-size:2.4rem;

    color:var(--gold);

    margin-bottom:25px;

}



.route-card a{

    display:inline-block;

    padding:14px 30px;

    border-radius:50px;

    background:var(--gold);

    color:#111;

    font-weight:700;

    transition:.30s;

}



.route-card a:hover{

    background:#111;

    color:#fff;

}
/*==================================================
OUR FLEET
==================================================*/

.fleet-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:70px;

}



.fleet-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    transition:.35s cubic-bezier(.22,.61,.36,1);

}



.fleet-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 90px rgba(0,0,0,.15);

}



.fleet-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    display:block;

}



.fleet-content{

    padding:30px;

}



.fleet-content h3{

    margin-bottom:20px;

    color:#111;

    font-size:1.7rem;

}



.fleet-content ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}



.fleet-content li{

    padding:10px 0;

    border-bottom:1px solid #ececec;

    color:#555;

}



.btn-outline{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    border:2px solid var(--gold);

    color:var(--gold-dark);

    font-weight:700;

    transition:.30s;

}



.btn-outline:hover{

    background:var(--gold);

    color:#111;

}



/*==================================================
WHAT'S INCLUDED
==================================================*/

.included-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:60px;

}



.included-item{

    background:#fff;

    padding:35px;

    border-radius:22px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.30s;

}



.included-item:hover{

    transform:translateY(-6px);

}



.included-item h3{

    color:var(--gold-dark);

    margin-bottom:18px;

    font-size:1.25rem;

}



.included-item p{

    color:#555;

    line-height:1.8;

}



/*==================================================
EXTRAS
==================================================*/

.extras-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin-top:60px;

}



.extra-card{

    position:relative;

    overflow:hidden;

    background:linear-gradient(

        145deg,

        #111,

        #1b1b1b

    );

    color:#fff;

    padding:35px;

    border-radius:24px;

    transition:.35s;

}



.extra-card::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    border-radius:50%;

    top:-60px;

    right:-60px;

    background:rgba(212,175,55,.08);

}



.extra-card:hover{

    transform:translateY(-8px);

}



.extra-card h3{

    color:#fff;

    margin-bottom:15px;

}



.extra-card p{

    color:#d5d5d5;

    line-height:1.8;

    margin-bottom:25px;

}



.extra-card span{

    display:inline-block;

    background:var(--gold);

    color:#111;

    padding:10px 18px;

    border-radius:50px;

    font-weight:700;

}



/*==================================================
HOVER EFFECTS
==================================================*/

.route-card,

.fleet-card,

.included-item,

.extra-card{

    transition:

        transform .35s,

        box-shadow .35s;

}



.route-card:hover,

.fleet-card:hover,

.included-item:hover,

.extra-card:hover{

    box-shadow:

    0 30px 80px rgba(0,0,0,.15);

}



/*==================================================
SECTION SPACING
==================================================*/

.section{

    padding:25px 20px;

}



.section-heading{

    max-width:850px;

    margin:0 auto 50px;

    text-align:center;

}



.section-heading h2{

    margin-bottom:15px;

}



.section-heading p{

    color:#666;

    line-height:1.8;

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.fare-grid{

    grid-template-columns:1fr;

}



.fleet-card img{

    height:220px;

}

}



@media(max-width:768px){

.fleet-grid,

.routes-grid,

.extras-grid,

.included-grid{

    grid-template-columns:1fr;

}



.fare-card{

    padding:30px;

}



#price{

    font-size:3rem;

}

}



@media(max-width:576px){

.section{

    padding:70px 20px;

}



.route-card,

.extra-card,

.included-item{

    padding:25px;

}



.fleet-content{

    padding:25px;

}



.hero-small{

    padding:140px 20px 80px;

}

}

/*==================================================
TRANSFER SUMMARY
==================================================*/

.transfer-summary{

    max-width:1200px;

    margin:80px auto;

    background:linear-gradient(
        135deg,
        #111,
        #1d1d1d
    );

    color:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,.18);

}



.summary-header{

    padding:35px 45px;

    border-bottom:1px solid rgba(255,255,255,.08);

}



.summary-header h2{

    color:#fff;

    margin-bottom:10px;

}



.summary-header p{

    color:#ccc;

}



.summary-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:50px;

    padding:45px;

}



.summary-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}



.summary-item{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:22px;

}



.summary-item span{

    display:block;

    color:#aaa;

    font-size:.9rem;

    margin-bottom:8px;

}



.summary-item strong{

    color:#fff;

    font-size:1.1rem;

}



.summary-price{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

}



.summary-price small{

    color:#bbb;

    margin-bottom:10px;

}



.summary-price h2{

    color:var(--gold);

    font-size:4rem;

    margin:15px 0;

}



.summary-price p{

    color:#ddd;

    margin-bottom:30px;

}



/*==================================================
INCLUDED LIST
==================================================*/

.included-list{

    margin-top:35px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}



.included-list div{

    background:#fff;

    border-radius:15px;

    padding:18px;

    font-weight:600;

    color:#444;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

}



/*==================================================
FAQ
==================================================*/

.faq{

    max-width:950px;

    margin:90px auto;

}



.faq-item{

    background:#fff;

    border-radius:18px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:
    0 12px 35px rgba(0,0,0,.07);

}



.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:24px 28px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:1.05rem;

    font-weight:700;

    color:#222;

}



.faq-question:hover{

    background:#fafafa;

}



.faq-icon{

    font-size:1.5rem;

    color:var(--gold);

    transition:.3s;

}



.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

    background:#fcfcfc;

}



.faq-answer p{

    padding:0 28px 28px;

    color:#555;

    line-height:1.9;

}



/*==================================================
BOOK CTA
==================================================*/

.book-cta{

    background:linear-gradient(
        135deg,
        #111,
        #000
    );

    color:#fff;

    text-align:center;

    border-radius:30px;

    padding:90px 50px;

    margin:100px auto;

    max-width:1200px;

    position:relative;

    overflow:hidden;

}



.book-cta::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    right:-120px;

    top:-120px;

    background:rgba(212,175,55,.05);

}



.book-cta::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    left:-100px;

    bottom:-100px;

    background:rgba(212,175,55,.04);

}



.book-cta h2{

    position:relative;

    color:#fff;

    margin-bottom:20px;

    font-size:clamp(2.5rem,5vw,4rem);

}



.book-cta p{

    position:relative;

    color:#ddd;

    max-width:700px;

    margin:0 auto 40px;

    line-height:1.8;

}



.book-cta .btn{

    position:relative;

}



/*==================================================
LOADING
==================================================*/

.loading{

    opacity:.5;

    pointer-events:none;

}



.fade{

    animation:fade .35s ease;

}



@keyframes fade{

    from{

        opacity:0;

        transform:translateY(15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.summary-grid{

grid-template-columns:1fr;

}

.summary-info{

grid-template-columns:1fr;

}

.included-list{

grid-template-columns:1fr;

}

}



@media(max-width:768px){

.summary-header{

padding:30px;

}

.summary-grid{

padding:30px;

}

.summary-price h2{

font-size:3rem;

}

.book-cta{

padding:70px 30px;

}

}



@media(max-width:576px){

.summary-item{

padding:18px;

}

.book-cta h2{

font-size:2.2rem;

}

.book-cta{

border-radius:20px;

}

}