/* GoAlpha — One With God Motors */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5faff;
    color:#222;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* NAVBAR */

.navbar{
    background:#0066cc;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    position:sticky;
    top:0;
}

.logo h2{
    color:#00c853;
    font-size:28px;
}

.logo span{
    font-size:12px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:18px;
    font-weight:600;
}

/* HERO */

.hero{
    height:85vh;
    background:linear-gradient(rgba(0,70,140,.7),
    rgba(0,120,70,.6));
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content h1{
    font-size:46px;
    margin-bottom:15px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:25px;
}

.btn-primary{
    background:#00c853;
    color:white;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
}
/* BOOKING SECTION */

.quick-book{
    background:white;
    padding:50px 20px;
    text-align:center;
}

.quick-book h2{
    color:#0066cc;
    margin-bottom:20px;
}

.quick-book form{
    display:grid;
    gap:15px;
    max-width:600px;
    margin:auto;
}

.quick-book select,
.quick-book input{
    padding:15px;
    border:2px solid #00c853;
    border-radius:12px;
    font-size:16px;
}

.quick-book button{
    background:#0066cc;
    color:white;
    padding:15px;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:bold;
}

/* ABOUT */

.about{
    padding:60px 20px;
    text-align:center;
}

.about h2{
    color:#00c853;
    margin-bottom:15px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:20px;
    margin-top:30px;
}

.stat-box{
    background:#0066cc;
    color:white;
    padding:20px;
    border-radius:15px;
}

.stat-box h3{
    font-size:28px;
    color:#00ff88;
}

/* SERVICES */

.services{
    background:#eef7ff;
    padding:60px 20px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.service-card{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 4px 12px rgba(0,0,0,.1);
}
/* FLEET */

.fleet{
    padding:60px 20px;
    background:#ffffff;
    text-align:center;
}

.fleet-grid,
.destination-grid,
.price-grid,
.why-grid,
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}

.fleet-card,
.destination-card,
.price-card,
.why-card,
.testimonial-card{
    background:white;
    border-radius:16px;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    border-top:4px solid #00c853;
}

/* DESTINATIONS */

.destinations{
    background:#eef7ff;
    padding:60px 20px;
    text-align:center;
}

.destination-card{
    font-weight:600;
    color:#0066cc;
}

/* ROUTE PRICES */

.prices{
    padding:60px 20px;
    text-align:center;
}

.price-card span{
    display:block;
    margin-top:10px;
    color:#00c853;
    font-size:20px;
    font-weight:bold;
}

/* SCHEDULE TABLE */

.schedule{
    background:#f5faff;
    padding:60px 20px;
}

.schedule table{
    width:100%;
    border-collapse:collapse;
}

.schedule th{
    background:#0066cc;
    color:white;
    padding:14px;
}

.schedule td{
    padding:14px;
    border-bottom:1px solid #ddd;
}

/* TESTIMONIALS */

.testimonials{
    padding:60px 20px;
    background:#eef7ff;
    text-align:center;
}

.testimonial-card h4{
    color:#0066cc;
    margin-top:10px;
}
/* GALLERY */

.gallery{
    padding:60px 20px;
    background:#ffffff;
    text-align:center;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-top:30px;
}

.gallery-box{
    background:linear-gradient(135deg,#0066cc,#00c853);
    color:white;
    padding:40px 20px;
    border-radius:15px;
    font-weight:bold;
}

/* FAQ */

.faq{
    padding:60px 20px;
    background:#eef7ff;
}

.faq-item{
    background:white;
    padding:20px;
    border-radius:12px;
    margin-bottom:15px;
}

/* CONTACT */

.contact{
    padding:60px 20px;
    text-align:center;
}

.contact p{
    margin:10px 0;
}

/* WHATSAPP BUTTON */

.whatsapp-btn,
.floating-whatsapp{
    background:#00c853;
    color:white;
    text-decoration:none;
    border-radius:50px;
}

.whatsapp-btn{
    display:inline-block;
    padding:15px 30px;
    margin-top:20px;
}

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
}

/* FOOTER */

footer{
    background:#004080;
    color:white;
    text-align:center;
    padding:30px 20px;
}
/* HOVER EFFECTS */

.service-card:hover,
.fleet-card:hover,
.destination-card:hover,
.price-card:hover,
.why-card:hover,
.testimonial-card:hover{
    transform:translateY(-8px);
    transition:0.3s ease;
    box-shadow:0 12px 25px rgba(0,102,204,.25);
}

/* BUTTON HOVER */

.btn-primary:hover,
.quick-book button:hover,
.whatsapp-btn:hover{
    background:#009944;
    transition:0.3s;
}

/* SMOOTH SCROLL */

html{
    scroll-behavior:smooth;
}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

.navbar{
    flex-direction:column;
    gap:12px;
}

nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.hero{
    height:70vh;
    padding:20px;
}

.hero-content h1{
    font-size:32px;
}

.hero-content p{
    font-size:16px;
}

.quick-book form{
    width:100%;
}

.stats,
.service-grid,
.fleet-grid,
.destination-grid,
.price-grid,
.why-grid,
.gallery-grid,
.testimonial-grid{
    grid-template-columns:1fr;
}

.schedule table{
    font-size:14px;
}

.floating-whatsapp{
    width:55px;
    height:55px;
    font-size:24px;
}
}