/*==================================================
ROOT
==================================================*/

:root{

--primary:#1696E8;
--primary-dark:#0F6DA8;

--secondary:#0D1B2A;

--white:#FFFFFF;

--light:#F7FAFC;

--gray:#64748B;

--border:#E5E7EB;

--text:#1F2937;


--shadow-sm:
0 8px 20px rgba(0,0,0,.05);

--shadow-md:
0 15px 40px rgba(0,0,0,.08);

--shadow-lg:
0 25px 60px rgba(0,0,0,.15);


--radius-lg:24px;

--radius-xl:40px;


}




/*==================================================
GLOBAL
==================================================*/


*{

margin:0;
padding:0;
box-sizing:border-box;

}


body{

font-family:'Poppins',sans-serif;

color:var(--text);

background:white;

}



.container{

max-width:1200px;

margin:auto;

padding:0 20px;

}



.section{

padding:100px 0;

}



img{

width:100%;

display:block;

object-fit:cover;

}



.section-header{

text-align:center;

max-width:750px;

margin:auto auto 60px;

}



.section-subtitle{

color:var(--primary);

font-weight:700;

letter-spacing:2px;

font-size:14px;

}



.section-header h2{

font-size:42px;

line-height:1.2;

color:var(--secondary);

margin:15px 0;

}



.section-header p{

color:var(--gray);

line-height:1.8;

}







/*==================================================
BUTTON
==================================================*/


.btn-primary{


display:inline-flex;

align-items:center;

gap:10px;

padding:15px 30px;

background:var(--primary);

color:white;

border-radius:999px;

text-decoration:none;

font-weight:600;

transition:.3s;


}


.btn-primary:hover{

background:var(--primary-dark);

}



.btn-outline{


display:inline-flex;

align-items:center;

padding:15px 30px;

border:2px solid var(--primary);

color:var(--primary);

border-radius:999px;

text-decoration:none;

font-weight:600;

}



/*==================================
FLOATING WHATSAPP
==================================*/

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 18px 45px rgba(37,211,102,.35);

    z-index:9999;

    transition:.35s ease;

    animation:waPulse 2s infinite;

}

.whatsapp-float:hover{

    transform:translateY(-6px) scale(1.08);

    background:#1EBE5B;

}

.whatsapp-float i{

    position:relative;

    z-index:2;

}

/*==================================
TOOLTIP
==================================*/

.wa-tooltip{

    position:absolute;

    right:82px;

    background:#fff;

    color:#1F2937;

    font-size:14px;

    font-weight:600;

    white-space:nowrap;

    padding:12px 18px;

    border-radius:50px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateX(15px);

    transition:.35s;

}

.wa-tooltip::after{

    content:"";

    position:absolute;

    right:-7px;

    top:50%;

    transform:translateY(-50%) rotate(45deg);

    width:14px;

    height:14px;

    background:#fff;

}

.whatsapp-float:hover .wa-tooltip{

    opacity:1;

    visibility:visible;

    transform:translateX(0);

}

/*==================================
PULSE
==================================*/

.whatsapp-float::before{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:50%;

    border:2px solid rgba(37,211,102,.45);

    animation:waRing 2s infinite;

}

@keyframes waRing{

    0%{

        transform:scale(.8);

        opacity:1;

    }

    100%{

        transform:scale(1.5);

        opacity:0;

    }

}

@keyframes waPulse{

    0%,100%{

        box-shadow:0 18px 45px rgba(37,211,102,.35);

    }

    50%{

        box-shadow:0 18px 55px rgba(37,211,102,.6);

    }

}

/*==================================
TABLET
==================================*/

@media(max-width:992px){

.whatsapp-float{

    width:62px;

    height:62px;

    right:22px;

    bottom:22px;

    font-size:30px;

}

}

/*==================================
PHONE
==================================*/

@media(max-width:576px){

.whatsapp-float{

    width:58px;

    height:58px;

    right:18px;

    bottom:18px;

    font-size:28px;

}

.wa-tooltip{

    display:none;

}

}



/*==================================================
HEADER
==================================================*/


#header{


position:fixed;

top:0;

width:100%;

z-index:999;

transition:.3s;


}



#header.sticky{

background:white;

box-shadow:var(--shadow-md);

}


.nav-right{

display:flex;

align-items:center;

}



.btn-book{

display:flex;

align-items:center;

gap:8px;

}



.btn-book i{

font-size:18px;

}
.navbar{


height:90px;

display:flex;

align-items:center;

justify-content:space-between;


}


.logo{


display:flex;

align-items:center;

gap:15px;

text-decoration:none;

}



.logo img{

width:55px;

}



.logo-text h2{

color:var(--secondary);

}



.logo-text span{

font-size:12px;

color:var(--gray);

}



.nav-menu{

display:flex;

gap:35px;

list-style:none;

}



.nav-menu a{

text-decoration:none;

color:var(--secondary);

font-weight:500;

}



.nav-menu a.active,

.nav-menu a:hover{

color:var(--primary);

}



.btn-book{


background:var(--primary);

padding:12px 25px;

border-radius:999px;

color:white;

text-decoration:none;


}



.menu-toggle{

display:none;

font-size:25px;

}










/*==================================================
HERO
==================================================*/


.rental-hero{


padding:170px 0 100px;

background:

linear-gradient(
135deg,
#F7FAFC,
white
);


}



.rental-wrapper{


display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;


}



.rental-content h1{


font-size:55px;

line-height:1.15;

font-weight:800;

color:var(--secondary);

margin:20px 0;


}



.rental-content p{


font-size:17px;

color:var(--gray);

line-height:1.8;


}




.rental-buttons{


display:flex;

gap:20px;

margin-top:35px;


}




.rental-stat{


display:flex;

gap:50px;

margin-top:50px;


}


.rental-stat strong{


font-size:32px;

color:var(--primary);

}



.rental-stat span{


display:block;

font-size:14px;

color:var(--gray);

}




.rental-image{


position:relative;


}



.rental-image img{


height:560px;

border-radius:var(--radius-xl);

box-shadow:var(--shadow-lg);

}



.floating-card{


position:absolute;

bottom:40px;

left:-30px;

background:white;

padding:20px;

border-radius:20px;

display:flex;

gap:15px;

box-shadow:var(--shadow-md);


}


.floating-card i{


width:55px;

height:55px;

display:flex;

align-items:center;

justify-content:center;

background:#E8F5FD;

border-radius:50%;

color:var(--primary);

font-size:22px;

}







/*==================================================
WHY RENTAL
==================================================*/


.why-rental{

background:var(--light);

}


.why-grid{


display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;


}



.why-card{


background:white;

padding:35px;

border-radius:25px;

text-align:center;

box-shadow:var(--shadow-sm);

transition:.3s;


}



.why-card:hover{


transform:translateY(-10px);

box-shadow:var(--shadow-md);


}


.why-card i{


font-size:35px;

color:var(--primary);

margin-bottom:20px;


}


.why-card h3{

color:var(--secondary);

margin-bottom:15px;

}


.why-card p{

color:var(--gray);

line-height:1.7;

}









/*==================================================
FLEET
==================================================*/


.fleet-grid{


display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;


}




.fleet-card{


background:white;

border-radius:25px;

overflow:hidden;

box-shadow:var(--shadow-sm);

transition:.35s;


}



.fleet-card:hover{


transform:translateY(-10px);

box-shadow:var(--shadow-md);


}



.fleet-card img{


height:260px;


}



.fleet-content{


padding:30px;

}



.fleet-content span{


background:#E8F5FD;

color:var(--primary);

padding:7px 18px;

border-radius:999px;

font-size:13px;

}



.fleet-content h3{


font-size:24px;

margin:20px 0;

color:var(--secondary);


}




.fleet-content ul{


list-style:none;

margin-bottom:25px;


}



.fleet-content li{


margin-bottom:12px;

color:var(--gray);


}



.fleet-content a{


display:block;

text-align:center;

background:var(--primary);

color:white;

padding:14px;

border-radius:999px;

text-decoration:none;


}









/*==================================================
PACKAGE
==================================================*/

/*==================================================
RENTAL PACKAGE
==================================================*/

.package-section{

    padding:100px 0;

    background:#F8FBFD;

}

.package-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.package-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    border:1px solid #E8EEF4;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.package-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.10);

}

.package-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:#EAF6FD;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:30px;

}

.package-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:var(--secondary);

}

.package-card p{

    color:#6B7280;

    line-height:1.8;

    margin-bottom:30px;

}

.package-card ul{

    list-style:none;

    margin-bottom:35px;

}

.package-card ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;

    color:#4B5563;

}

.package-card ul li i{

    color:#16A34A;

}

.package-btn{

    margin-top:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    height:54px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.package-btn:hover{

    background:var(--secondary);

}

/* Featured Card */

.package-card.featured{

    background:linear-gradient(135deg,#1696E8,#0B6BB5);

    color:#fff;

    transform:translateY(-15px);

}

.package-card.featured h3,

.package-card.featured p,

.package-card.featured li{

    color:#fff;

}

.package-card.featured .package-icon{

    background:rgba(255,255,255,.18);

    color:#fff;

}

.package-card.featured .package-btn{

    background:#fff;

    color:var(--primary);

}

.package-card.featured .package-btn:hover{

    background:#F5F5F5;

}

.package-badge{

    position:absolute;

    top:22px;

    right:22px;

    background:#FFD54A;

    color:#111827;

    padding:8px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.package-grid{

grid-template-columns:repeat(2,1fr);

}

.package-card.featured{

transform:none;

}

}

@media(max-width:768px){

.package-grid{

grid-template-columns:1fr;

}

.package-card{

padding:35px 30px;

}

.package-card h3{

font-size:24px;

}

}



/*==================================================
CTA
==================================================*/


.rental-cta{


background:

linear-gradient(
135deg,
#1696E8,
#0F6DA8
);

padding:90px 0;

text-align:center;

color:white;


}



.rental-cta h2{


font-size:45px;

margin-bottom:20px;


}


.rental-cta p{


margin-bottom:30px;


}








/*==================================================
FOOTER
==================================================*/


.footer{


background:#0D1B2A;

padding:35px 0;

text-align:center;

color:white;


}







/*==================================================
WHATSAPP
==================================================*/


.whatsapp{


position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

border-radius:50%;

background:#25D366;

color:white;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

z-index:999;


}









/*==================================================
RESPONSIVE TABLET
==================================================*/


@media(max-width:992px){



.rental-wrapper{


grid-template-columns:1fr;


}



.rental-content h1{

font-size:42px;

}



.why-grid{


grid-template-columns:repeat(2,1fr);


}



.fleet-grid{


grid-template-columns:repeat(2,1fr);


}



.package-grid{


grid-template-columns:1fr;


}



}










/*==================================================
RESPONSIVE MOBILE
==================================================*/


@media(max-width:600px){



.nav-menu{


position:absolute;

top:90px;

left:0;

width:100%;

background:white;

flex-direction:column;

padding:30px;

display:none;


}


.nav-menu.active{

display:flex;

}



.menu-toggle{

display:block;

}



.btn-book{

display:none;

}



.rental-hero{

padding-top:130px;

}



.rental-content h1{


font-size:32px;


}



.rental-buttons{


flex-direction:column;


}



.rental-stat{


flex-direction:column;

gap:20px;


}



.rental-image img{


height:350px;


}



.floating-card{


left:10px;

}



.why-grid,
.fleet-grid{


grid-template-columns:1fr;


}



.section-header h2{


font-size:30px;


}



.rental-cta h2{


font-size:32px;


}



}

/*==================================================
HOW IT WORKS
==================================================*/


.rental-process{

background:#F7FAFC;

}



.process-grid{


display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;


}




.process-card{


background:white;

padding:40px 30px;

border-radius:25px;

text-align:center;

position:relative;

box-shadow:
0 15px 35px rgba(0,0,0,.06);

transition:.35s;


}



.process-card:hover{


transform:translateY(-10px);

box-shadow:
0 25px 50px rgba(0,0,0,.12);


}





.process-number{


position:absolute;

top:20px;

right:25px;


font-size:45px;

font-weight:800;

color:#E8F5FD;


}




.process-icon{


width:75px;

height:75px;

margin:20px auto 25px;


background:

rgba(22,150,232,.12);


display:flex;

align-items:center;

justify-content:center;


border-radius:50%;


font-size:30px;


color:#1696E8;


}




.process-card h3{


font-size:22px;

margin-bottom:15px;

color:#0D1B2A;


}




.process-card p{


color:#64748B;

line-height:1.8;

font-size:15px;


}






/* STEP CONNECTOR LINE DESKTOP */


@media(min-width:993px){


.process-card:not(:last-child)::after{


content:"";


position:absolute;


top:75px;


right:-35px;


width:40px;


height:2px;


background:#1696E8;


}


}







/*==================================================
RESPONSIVE PROCESS
==================================================*/


@media(max-width:992px){


.process-grid{


grid-template-columns:repeat(2,1fr);


}



}




@media(max-width:600px){


.process-grid{


grid-template-columns:1fr;


}



.process-card:not(:last-child)::after{


display:none;


}



.process-card{


padding:35px 25px;


}



}
.process-card{


opacity:0;

transform:translateY(40px);


}



.process-card.show{


opacity:1;

transform:translateY(0);

transition:.7s ease;


}




/*==================================================
FOOTER
==================================================*/

.footer{
    background:#08131F;
    color:#fff;
    padding:90px 0 35px;
    position:relative;
    overflow:hidden;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:60px;
    margin-bottom:60px;
}

.footer-column{
    display:flex;
    flex-direction:column;
}

/*==================================================
LOGO
==================================================*/

.footer-logo{
    width:180px;
    height:auto;
    margin-bottom:25px;
}

/*==================================================
COMPANY
==================================================*/

.footer-column.company p{
    color:#B7C5D2;
    font-size:15px;
    line-height:1.9;
    margin-bottom:30px;
    max-width:380px;
}

/*==================================================
TITLE
==================================================*/

.footer-column h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
}

/*==================================================
MENU
==================================================*/

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:16px;
}

.footer-column ul li:last-child{
    margin-bottom:0;
}

.footer-column ul li a{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#B7C5D2;
    transition:.35s;
    font-size:15px;
}

.footer-column ul li a i{
    color:var(--primary);
    font-size:12px;
}

.footer-column ul li a:hover{
    color:#fff;
    transform:translateX(6px);
}

/*==================================================
CONTACT
==================================================*/

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-contact div{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.footer-contact i{
    color:var(--primary);
    width:18px;
    margin-top:4px;
    ;
}

.footer-contact span{
    color:#B7C5D2;
    line-height:1.8;
    font-size:15px;
}

/*==================================================
SOCIAL
==================================================*/

.footer-social{
    display:flex;
    gap:14px;
}

.footer-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.05);
    color:#fff;
    text-decoration:none;
    transition:.35s;
}

.footer-social a:hover{
    background:var(--primary);
    transform:translateY(-5px);
}

/*==================================================
BOTTOM
==================================================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-copy{
    color:#8C99A8;
    font-size:14px;
}

.footer-bottom-links{
    display:flex;
    gap:25px;
}

.footer-bottom-links a{
    text-decoration:none;
    color:#8C99A8;
    transition:.3s;
    font-size:14px;
}

.footer-bottom-links a:hover{
    color:#fff;
}

/*==================================================
RESPONSIVE
==================================================*/

/*============================
Laptop
============================*/

@media (max-width:1200px){

.footer-grid{

grid-template-columns:1.8fr 1fr 1fr 1.2fr;

gap:45px;

}

}

/*============================
Tablet
============================*/

@media (max-width:991px){

.footer{

padding:75px 0 30px;

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

gap:45px;

}

.footer-column.company p{

max-width:100%;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.footer-bottom-links{

justify-content:center;

}

}

/*============================
Mobile
============================*/

@media (max-width:768px){

.footer{

padding:65px 0 25px;

}

.footer-grid{

grid-template-columns:1fr;

gap:40px;

}

.footer-logo{

width:160px;

}

.footer-column h3{

font-size:20px;

margin-bottom:20px;

}

.footer-column.company p{

font-size:15px;

line-height:1.8;

}

.footer-column ul li{

margin-bottom:14px;

}

.footer-column ul li a{

font-size:15px;

}

.footer-contact{

gap:16px;

}

.footer-contact span{

font-size:15px;

}

.footer-social{

margin-top:5px;

}

.footer-social a{

width:44px;

height:44px;

}

.footer-bottom{

padding-top:25px;

}

.footer-bottom-links{

flex-wrap:wrap;

gap:15px;

justify-content:center;

}

}

/*============================
Small Mobile
============================*/

@media (max-width:576px){

.footer{

padding:55px 0 20px;

}

.footer-logo{

width:145px;

}

.footer-column h3{

font-size:19px;

}

.footer-column.company p{

font-size:14px;

}

.footer-column ul li a{

font-size:14px;

}

.footer-contact span{

font-size:14px;

}

.footer-social{

gap:12px;

}

.footer-social a{

width:42px;

height:42px;

font-size:15px;

}

.footer-copy{

font-size:13px;

line-height:1.7;

}

.footer-bottom-links{

flex-direction:column;

gap:10px;

}

.footer-bottom-links a{

font-size:13px;

}

}