/* ==========================
   LEISURE TRAVELS INDIA
   VEHICLE.CSS - PART 1
========================== */

:root{
    --gold:#D4AF37;
    --black:#0b0b0b;
    --dark:#141414;
    --white:#ffffff;
    --gray:#cfcfcf;
    --radius:16px;
    --shadow:0 10px 30px rgba(212,175,55,.15);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--black);
    color:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

    padding:90px 0;

}

.hero-content{

    flex:1;

}

.tag{

display:inline-block;

padding:8px 18px;

border:1px solid var(--gold);

border-radius:30px;

color:var(--gold);

margin-bottom:20px;

font-size:14px;

letter-spacing:1px;

}

.hero h1{

font-size:58px;

line-height:1.15;

margin-bottom:20px;

}

.hero h1 span{

color:var(--gold);

}

.hero p{

font-size:18px;

color:var(--gray);

margin-bottom:35px;

max-width:650px;

}

.hero-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.btn{

padding:15px 28px;

border-radius:10px;

font-weight:bold;

transition:.3s;

display:inline-flex;

align-items:center;

justify-content:center;

}

.btn-primary{

background:var(--gold);

color:#000;

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:var(--shadow);

}

.btn-outline{

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

color:var(--gold);

}

.btn-outline:hover{

background:var(--gold);

color:#000;

}

/* ================= FLOATING CAR ================= */

.hero-image{

flex:1;

display:flex;

justify-content:center;

align-items:center;

position:relative;

}

.hero-image::before{

content:"";

position:absolute;

width:340px;

height:340px;

background:radial-gradient(circle,
rgba(212,175,55,.35),
transparent 70%);

filter:blur(20px);

border-radius:50%;

z-index:-1;

animation:glow 3s infinite alternate;

}

.hero-image img{

width:100%;

max-width:560px;

animation:float 4s ease-in-out infinite;

filter:drop-shadow(0 0 18px rgba(212,175,55,.35));

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

@keyframes glow{

from{

transform:scale(.9);

opacity:.5;

}

to{

transform:scale(1.1);

opacity:1;

}

}

/* ================= FEATURES ================= */

.hero-features{

display:grid;

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

gap:15px;

margin:35px 0;

}

.hero-features div{

background:var(--dark);

padding:15px;

border-left:4px solid var(--gold);

border-radius:10px;

}

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

@media(max-width:992px){

.hero{

flex-direction:column-reverse;

text-align:center;

padding:70px 0;

}

.hero p{

margin:auto auto 30px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

grid-template-columns:1fr;

}

.hero h1{

font-size:42px;

}

.hero-image img{

max-width:420px;

}

}

@media(max-width:600px){

.hero{

padding:50px 0;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.btn{

width:100%;

}

}
/*==========================
 VEHICLE.CSS PART 2
==========================*/

/* SECTION */

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    font-size:38px;
    color:var(--gold);
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:var(--gray);
    max-width:700px;
    margin:0 auto 50px;
}

/*==========================
 SPECIFICATION CARDS
==========================*/

.spec-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.spec-card{
    background:var(--dark);
    border:1px solid rgba(212,175,55,.15);
    border-radius:var(--radius);
    padding:30px;
    transition:.35s;
    text-align:center;
}

.spec-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:var(--shadow);
}

.spec-card h3{
    color:var(--gold);
    margin-bottom:12px;
}

.spec-card p{
    color:var(--gray);
}

/*==========================
 FARE TABLE
==========================*/

.table-wrap{
    overflow-x:auto;
}

table{
    width:100%;
    border-collapse:collapse;
    background:var(--dark);
    border-radius:var(--radius);
    overflow:hidden;
}

th{
    background:var(--gold);
    color:#000;
    padding:18px;
}

td{
    padding:16px;
    border-bottom:1px solid rgba(255,255,255,.08);
    text-align:center;
}

tr:hover{
    background:#1b1b1b;
}

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

.cta{

    background:linear-gradient(135deg,#111,#1b1b1b);

    padding:60px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(212,175,55,.2);

}

.cta h2{

color:var(--gold);

font-size:36px;

margin-bottom:15px;

}

.cta p{

color:var(--gray);

margin-bottom:30px;

}

/*==========================
 FAQ
==========================*/

.faq-item{

background:var(--dark);

border-radius:12px;

margin-bottom:15px;

overflow:hidden;

border:1px solid rgba(255,255,255,.06);

}

.faq-question{

padding:20px;

cursor:pointer;

font-weight:600;

display:flex;

justify-content:space-between;

align-items:center;

}

.faq-question span{

color:var(--gold);

font-size:22px;

}

.faq-answer{

display:none;

padding:0 20px 20px;

color:var(--gray);

}

.faq-item.active .faq-answer{

display:block;

}

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

footer{

background:#070707;

margin-top:80px;

padding:60px 0 30px;

border-top:1px solid rgba(212,175,55,.15);

}

.footer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:40px;

}

.footer-grid h3{

color:var(--gold);

margin-bottom:18px;

}

.footer-grid p,
.footer-grid a{

color:var(--gray);

font-size:15px;

line-height:1.8;

}

.footer-grid a:hover{

color:var(--gold);

}

.copyright{

margin-top:40px;

padding-top:20px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

color:#888;

font-size:14px;

}

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

@media(max-width:768px){

.section{

padding:60px 0;

}

.section-title{

font-size:30px;

}

.cta{

padding:35px 20px;

}

.cta h2{

font-size:28px;

}

}