/*====================================================
MSR DROP TAXI
STYLE.CSS - PART 1
Black + Yellow Premium Theme
====================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
ROOT
==========================*/

:root{

--primary:#FFC107;
--primary-dark:#E0A800;

--black:#111111;
--dark:#1B1B1B;

--white:#ffffff;

--light:#f8f9fa;

--gray:#777777;

--border:#ececec;

--shadow:0 10px 35px rgba(0,0,0,.12);

--radius:18px;

--transition:.35s ease;

}

/*==========================
RESET
==========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#fff;

color:#222;

line-height:1.7;

overflow-x:hidden;

}

img{
max-width:100%;
display:block;
}

a{

text-decoration:none;

transition:var(--transition);

}

ul{
list-style:none;
padding:0;
margin:0;
}

.container{

max-width:1280px;

}

/*==========================
TOP BAR
==========================*/

.topbar{

background:#111;

color:#fff;

padding:10px 0;

font-size:14px;

}

.topbar a{

color:#FFC107;

font-weight:600;

}

.topbar a:hover{

color:#fff;

}

/*==========================
HEADER
==========================*/

.main-header{

position:sticky;

top:0;

z-index:9999;

background:#fff;

box-shadow:0 5px 20px rgba(0,0,0,.06);

}

.navbar{

padding:18px 0;

}

.navbar-brand img{

height:60px;

}

.nav-link{

font-weight:600;

color:#222;

margin:0 10px;

position:relative;

}

.nav-link:hover{

color:#FFC107;

}

.nav-link::after{

content:"";

position:absolute;

bottom:-6px;

left:0;

width:0;

height:3px;

background:#FFC107;

transition:.3s;

border-radius:30px;

}

.nav-link:hover::after{

width:100%;

}

.btn-warning{

background:#FFC107;

border:none;

padding:12px 26px;

font-weight:700;

border-radius:50px;

transition:.35s;

}

.btn-warning:hover{

background:#111;

color:#fff;

transform:translateY(-3px);

}

/*==========================
HERO SECTION
==========================*/

.hero{

padding:90px 0;

background:

linear-gradient(rgba(0,0,0,.65),

rgba(0,0,0,.65)),

url("../img/hero.webp");

background-size:cover;

background-position:center;

color:#fff;

}

.hero h1{

font-size:54px;

font-weight:800;

line-height:1.2;

margin-bottom:20px;

}

.hero p{

font-size:18px;

opacity:.95;

margin-bottom:30px;

}

.hero-badge{

display:inline-block;

background:#FFC107;

color:#111;

padding:8px 18px;

border-radius:50px;

font-weight:700;

margin-bottom:20px;

}

/*==========================
BENTO INFO BOXES
==========================*/

.hero-box{

background:rgba(255,255,255,.08);

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.15);

padding:25px;

border-radius:20px;

margin-bottom:20px;

transition:.3s;

}

.hero-box:hover{

transform:translateY(-5px);

background:rgba(255,255,255,.12);

}

.hero-box h3{

font-size:18px;

font-weight:700;

margin-bottom:10px;

}

.hero-box span{

font-size:30px;

font-weight:800;

color:#FFC107;

}

/*==========================
BOOKING FORM
==========================*/


/*==========================
FEATURE CHIPS
==========================*/

.feature-list{

display:flex;

flex-wrap:wrap;

gap:15px;

margin-top:25px;

}

.feature-chip{

background:#fff;

color:#111;

padding:12px 18px;

border-radius:50px;

font-weight:600;

box-shadow:var(--shadow);

}

.feature-chip i{

color:#FFC107;

margin-right:8px;

}

/*==========================
FLOAT ANIMATION
==========================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

.float{

animation:float 4s infinite;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.hero{

padding:70px 0;

text-align:center;

}

.hero h1{

font-size:40px;

}

.booking-card{

margin-top:40px;

}

.nav-link{

margin:8px 0;

}

}

@media(max-width:767px){

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.booking-card{

padding:25px;

}

.hero-box{

padding:20px;

}

.btn-warning{

width:100%;

margin-top:15px;

}

.topbar{

text-align:center;

font-size:13px;

}

}
/*====================================================
STYLE.CSS - PART 2A
WHY CHOOSE US | STATS | CTA
====================================================*/

/*==========================
SECTION TITLE
==========================*/

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    background:#FFC107;
    color:#111;
    padding:8px 18px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
}

/*==========================
WHY CHOOSE US
==========================*/

.why-section{
    background:#f8f9fa;
}

.why-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    height:100%;
}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#FFC107;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:#111;

}

.why-card h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

/*==========================
FEATURE LIST
==========================*/

.feature-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-top:50px;

}

.feature-item{

background:#fff;

padding:20px;

border-radius:15px;

display:flex;

align-items:center;

gap:15px;

box-shadow:0 10px 20px rgba(0,0,0,.06);

transition:.3s;

}

.feature-item:hover{

transform:translateY(-5px);

}

.feature-item i{

font-size:24px;

color:#FFC107;

}

.feature-item h5{

margin:0;

font-size:18px;

font-weight:700;

}

.feature-item p{

margin:0;

font-size:14px;

color:#666;

}

/*==========================
STATISTICS
==========================*/

.stats{

background:#111;

color:#fff;

padding:80px 0;

}

.stat-box{

text-align:center;

padding:30px;

}

.stat-number{

font-size:52px;

font-weight:800;

color:#FFC107;

margin-bottom:10px;

}

.stat-title{

font-size:18px;

font-weight:600;

}

/*==========================
CALL TO ACTION
==========================*/

.cta{

padding:90px 0;

background:

linear-gradient(rgba(0,0,0,.82),

rgba(0,0,0,.82)),

url("../img/cta.webp");

background-size:cover;

background-position:center;

text-align:center;

color:#fff;

}

.cta h2{

font-size:46px;

font-weight:800;

margin-bottom:20px;

}

.cta p{

font-size:18px;

max-width:750px;

margin:auto;

margin-bottom:35px;

opacity:.9;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-call{

background:#FFC107;

color:#111;

padding:16px 36px;

font-weight:700;

border-radius:50px;

transition:.35s;

}

.btn-call:hover{

background:#fff;

color:#111;

transform:translateY(-4px);

}

.btn-whatsapp{

background:#25D366;

color:#fff;

padding:16px 36px;

font-weight:700;

border-radius:50px;

transition:.35s;

}

.btn-whatsapp:hover{

background:#1da851;

transform:translateY(-4px);

}

/*==========================
HOVER EFFECTS
==========================*/

.zoom{

transition:.4s;

}

.zoom:hover{

transform:scale(1.05);

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.section{

padding:70px 0;

}

.section-title h2{

font-size:34px;

}

.feature-grid{

grid-template-columns:1fr;

}

.cta h2{

font-size:34px;

}

}

@media(max-width:767px){

.section-title h2{

font-size:28px;

}

.section-title p{

font-size:15px;

}

.why-card{

padding:25px;

}

.stat-number{

font-size:38px;

}

.cta{

padding:70px 20px;

}

.cta h2{

font-size:28px;

}

.cta p{

font-size:15px;

}

.cta-buttons{

flex-direction:column;

}

.btn-call,

.btn-whatsapp{

width:100%;

text-align:center;

}

}
/* ===== Premium Floating Buttons ===== */

/* ===== Premium Floating Buttons ===== */

.call-float,
.whatsapp-float,
.back-to-top{

position:fixed !important;

width:70px !important;
height:70px !important;

display:flex !important;
align-items:center;
justify-content:center;

border-radius:50%;

font-size:30px !important;

text-decoration:none;

z-index:999999;

box-shadow:0 10px 30px rgba(0,0,0,.35);

transition:.3s;

}

.call-float{

left:20px;
bottom:20px;

background:#FFC107;
color:#000;

}

.whatsapp-float{

right:20px;
bottom:20px;

background:#25D366;
color:#fff;

}

.back-to-top{

right:20px;
bottom:105px;

background:#111;
color:#FFC107;

border:none;

cursor:pointer;

}

.call-float:hover,
.whatsapp-float:hover,
.back-to-top:hover{

transform:scale(1.1);

}

.call-float i,
.whatsapp-float i,
.back-to-top i{

font-size:32px !important;

}

@media(max-width:768px){

.call-float,
.whatsapp-float,
.back-to-top{

width:60px !important;
height:60px !important;

}

.call-float i,
.whatsapp-float i,
.back-to-top i{

font-size:28px !important;

}

}