/* ==========================================
   UNIVERSAL CAR RENTAL
   STYLE.CSS - PART 2A
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050816;
    color:#ffffff;
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0d1326;
}

::-webkit-scrollbar-thumb{
    background:#00c6ff;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#00e0ff;
}

/* Selection */

::selection{
    background:#00c6ff;
    color:#fff;
}

/* Links */

a{
    text-decoration:none;
    color:white;
}

/* Images */

img{
    max-width:100%;
    display:block;
}

/* Buttons */

button{
    cursor:pointer;
    transition:.4s;
}

/* =======================
   PRELOADER
======================= */

#loader{
    position:fixed;
    inset:0;
    background:#050816;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    border:6px solid rgba(255,255,255,.15);
    border-top:6px solid #00c6ff;
    animation:spin 1s linear infinite;
}

#loader h2{
    margin-top:25px;
    color:#00c6ff;
    letter-spacing:3px;
    font-size:24px;
}

/* =======================
   HEADER
======================= */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    backdrop-filter:blur(15px);
    background:rgba(0,0,0,.30);
}

nav{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:28px;
    font-weight:bold;
    color:#00c6ff;
}

.logo span{
    color:white;
}

.logo i{
    font-size:34px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links li a{
    font-size:17px;
    transition:.4s;
    position:relative;
}

.nav-links li a:hover{
    color:#00c6ff;
}

.nav-links li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#00c6ff;
    transition:.4s;
}

.nav-links li a:hover::after{
    width:100%;
}

.nav-buttons{
    display:flex;
    align-items:center;
    gap:20px;
}

.book-btn{
    padding:12px 26px;
    background:#00c6ff;
    color:#000;
    border-radius:40px;
    font-weight:600;
    transition:.4s;
}

.book-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 20px #00c6ff;
}

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* =======================
   HERO
======================= */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.hero video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.hero-content{
    position:relative;
    text-align:center;
    z-index:5;
    width:90%;
}

.hero-content h3{
    font-size:28px;
    letter-spacing:5px;
    color:#00c6ff;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:90px;
    font-weight:800;
    line-height:1.1;
}

.hero-content h1 span{
    color:#00c6ff;
}

.hero-content p{
    margin:30px auto;
    max-width:800px;
    font-size:22px;
    color:#dddddd;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:40px;
}

.hero-buttons button{
    padding:18px 40px;
    border:none;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
}

.hero-buttons button:first-child{
    background:#00c6ff;
    color:#000;
}

.hero-buttons button:first-child:hover{
    transform:translateY(-6px);
    box-shadow:0 0 30px #00c6ff;
}

.secondary{
    background:transparent;
    border:2px solid #00c6ff !important;
    color:white;
}

.secondary:hover{
    background:#00c6ff;
    color:#000;
}

.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    font-size:35px;
    color:#00c6ff;
    animation:bounce 2s infinite;
}

/* =======================
   SECTION
======================= */

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:15px;
}

.section-title p{
    color:#bbbbbb;
    font-size:18px;
}

/* =======================
   BOOKING
======================= */

.booking{
    background:#081224;
}

.booking h2{
    text-align:center;
    font-size:46px;
}

.booking p{
    text-align:center;
    color:#bbbbbb;
    margin-top:10px;
}

.booking-card{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    padding:35px;
    border-radius:20px;
}

.input-box{
    display:flex;
    flex-direction:column;
}

.input-box label{
    margin-bottom:12px;
    color:#00c6ff;
    font-size:15px;
}

.input-box input,
.input-box select{
    height:55px;
    border:none;
    outline:none;
    border-radius:10px;
    padding:0 15px;
    background:#111b2e;
    color:white;
    font-size:15px;
}

.search-btn{
    align-self:end;
    height:55px;
    border:none;
    border-radius:12px;
    background:#00c6ff;
    color:black;
    font-size:16px;
    font-weight:700;
}

.search-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px #00c6ff;
}

/* =======================
   FEATURES
======================= */

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    background:#050816;
}

.feature-card{
    background:#0d1326;
    padding:40px 25px;
    text-align:center;
    border-radius:20px;
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 0 30px rgba(0,198,255,.4);
}

.feature-card i{
    font-size:45px;
    color:#00c6ff;
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:15px;
}

.feature-card p{
    color:#bbbbbb;
    line-height:1.7;
}

/* ==========================================
   CAR SECTION
========================================== */

.cars,
.cars-more{
    background:#050816;
}

.car-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:40px;
}

.car-card{
    background:#0d1326;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
    position:relative;
}

.car-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,198,255,.25);
}

.car-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.car-card:hover img{
    transform:scale(1.08);
}

.car-info{
    padding:25px;
}

.car-info h3{
    font-size:24px;
    margin-bottom:12px;
    color:#ffffff;
}

.car-info p{
    color:#bfbfbf;
    line-height:1.8;
    margin-bottom:20px;
}

.car-info button{
    width:100%;
    height:48px;
    border:none;
    border-radius:50px;
    background:#00c6ff;
    color:#000;
    font-weight:700;
    font-size:16px;
}

.car-info button:hover{
    background:#00e0ff;
    box-shadow:0 0 20px #00c6ff;
}

/* ==========================================
   ABOUT SECTION
========================================== */

.about{
    background:#081224;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:25px;
}

.about-image img{
    width:100%;
    border-radius:25px;
    transition:.6s;
}

.about-image:hover img{
    transform:scale(1.08);
}

.about-text h3{
    font-size:42px;
    margin-bottom:20px;
    color:#00c6ff;
}

.about-text p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:20px;
}

.about-text ul{
    margin-top:25px;
    list-style:none;
}

.about-text ul li{
    margin:15px 0;
    color:white;
    font-size:18px;
}

/* ==========================================
   GLASS EFFECT
========================================== */

.booking-card,
.feature-card,
.car-card{
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
}

/* ==========================================
   COMMON BUTTON EFFECT
========================================== */

button,
.book-btn{
    transition:.35s ease;
}

button:hover,
.book-btn:hover{
    transform:translateY(-4px);
}

/* ==========================================
   IMAGE HOVER
========================================== */

.gallery img,
.about img,
.car-card img{
    transition:.5s ease;
}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-us{
    background:#050816;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:50px;
}

.why-card{
    background:#0d1326;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.06);
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,198,255,.25);
}

.why-card i{
    font-size:50px;
    color:#00c6ff;
    margin-bottom:20px;
}

.why-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.why-card p{
    color:#bfbfbf;
    line-height:1.8;
}

/* ==========================================
   COUNTERS
========================================== */

.counter-section{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

    padding:80px 8%;

    background:linear-gradient(135deg,#00c6ff,#0072ff);

}

.counter-box{

    background:rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px;

    text-align:center;

    backdrop-filter:blur(15px);

    transition:.4s;

}

.counter-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.counter-box h2{

    font-size:52px;

    color:#fff;

    margin-bottom:10px;

}

.counter-box p{

    color:#f5f5f5;

    font-size:18px;

}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{

    background:#081224;

}

.testimonial-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:50px;

}

.testimonial{

    background:#0d1326;

    padding:35px;

    border-radius:20px;

    transition:.4s;

    border:1px solid rgba(255,255,255,.05);

}

.testimonial:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,198,255,.25);

}

.testimonial p{

    color:#d8d8d8;

    line-height:2;

    font-size:17px;

}

.testimonial h4{

    margin-top:25px;

    color:#00c6ff;

}

/* ==========================================
   CALL TO ACTION
========================================== */

.cta{

    background:linear-gradient(135deg,#00c6ff,#0072ff);

    text-align:center;

    padding:100px 8%;

}

.cta h2{

    font-size:48px;

    margin-bottom:20px;

    color:white;

}

.cta p{

    max-width:700px;

    margin:auto;

    color:#f4f4f4;

    line-height:1.8;

    margin-bottom:40px;

}

.cta button{

    padding:18px 45px;

    border:none;

    border-radius:50px;

    background:white;

    color:#0072ff;

    font-size:18px;

    font-weight:700;

    transition:.4s;

}

.cta button:hover{

    transform:scale(1.05);

    box-shadow:0 0 30px rgba(255,255,255,.5);

}
/* ==========================================
   GALLERY
========================================== */

.gallery{

    background:#050816;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-top:50px;

}

.gallery-grid img{

    width:100%;

    height:240px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:.5s;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

}

.gallery-grid img:hover{

    transform:scale(1.05) rotate(.5deg);

    box-shadow:0 20px 45px rgba(0,198,255,.35);

}

/* ==========================================
   CONTACT
========================================== */

.contact{

    background:#081224;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    margin-top:50px;

}

.contact-info{

    background:#0d1326;

    padding:40px;

    border-radius:20px;

}

.contact-info h3{

    color:#00c6ff;

    font-size:34px;

    margin-bottom:25px;

}

.contact-info p{

    margin:20px 0;

    color:#d6d6d6;

    line-height:1.8;

}

.contact-info i{

    color:#00c6ff;

    width:30px;

}

.contact-form{

    background:#0d1326;

    padding:40px;

    border-radius:20px;

    display:flex;

    flex-direction:column;

    gap:20px;

}
.contact-form label{

    color:#00c6ff;

    margin-top:8px;

    margin-bottom:5px;

    font-size:15px;

    font-weight:600;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border-radius:10px;

    border:none;

    background:#17203a;

    color:#fff;

    font-size:16px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:none;

    outline:none;

    border-radius:12px;

    background:#17203a;

    color:#fff;

    font-size:16px;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    padding:16px;

    border:none;

    border-radius:50px;

    background:#00c6ff;

    color:#000;

    font-size:17px;

    font-weight:bold;

}

.contact-form button:hover{

    box-shadow:0 0 25px #00c6ff;

}

/* ==========================================
   MAP
========================================== */

.map-section{

    background:#050816;

}

.map{

    margin-top:50px;

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.4);

}

.map iframe{

    width:100%;

    border:none;

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#03060f;

    padding:80px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:40px;

}

.footer-box h3{

    color:#00c6ff;

    margin-bottom:20px;

}

.footer-box p{

    color:#c8c8c8;

    line-height:1.8;

    margin-bottom:10px;

}

.footer-box a{

    display:block;

    color:#c8c8c8;

    margin:12px 0;

    transition:.3s;

}

.footer-box a:hover{

    color:#00c6ff;

    padding-left:8px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#0d1326;

    color:white;

    font-size:18px;

    transition:.4s;

}

.social-icons a:hover{

    background:#00c6ff;

    color:#000;

    transform:translateY(-6px);

}

footer hr{

    border:none;

    height:1px;

    background:#1b2849;

    margin:50px 0 20px;

}

footer .copyright{

    text-align:center;

    color:#999;

}

/* ==========================================
   FLOATING WHATSAPP
========================================== */

.whatsapp{

    position:fixed;

    right:25px;

    bottom:95px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.4);

    z-index:999;

    transition:.4s;

}

.whatsapp:hover{

    transform:scale(1.12);

}

/* ==========================================
   SCROLL TO TOP
========================================== */

#topBtn{

    position:fixed;

    right:25px;

    bottom:20px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#00c6ff;

    color:#000;

    font-size:20px;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:.4s;

}

#topBtn:hover{

    transform:translateY(-6px);

    box-shadow:0 0 25px #00c6ff;

}


/* =========================
POPUP
========================= */

.popup{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.7);

display:none;

justify-content:center;

align-items:center;

z-index:99999;

backdrop-filter:blur(5px);

}

.popup-content{

width:420px;

max-width:90%;

background:#0d1326;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 0 40px rgba(0,198,255,.3);

animation:popup .35s;

}

.popup-content h2{

color:#00c6ff;

margin-bottom:20px;

}

.popup-content p{

line-height:1.8;

color:white;

margin-bottom:25px;

}

.popup-content button{

padding:14px 40px;

border:none;

border-radius:40px;

background:#00c6ff;

color:black;

font-weight:bold;

cursor:pointer;

font-size:16px;

}

.popup-content button:hover{

background:#00e5ff;

}

@keyframes popup{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}