/* ===========================================================
   ONE WITH GOD MOTORS — PRODUCTION STYLE.CSS
   Version 2.0
   Theme: Green • Black • White • Gold
=========================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root{
  --green:#087A32;
  --green-light:#10A64B;
  --black:#050505;
  --white:#FFFFFF;
  --gold:#D8B548;
  --gray:#F5F7F8;
  --text:#2A2A2A;
  --shadow:0 12px 30px rgba(0,0,0,.15);
  --radius:18px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Poppins",sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#fff;
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

/* PRELOADER */

#loader{
  position:fixed;
  inset:0;
  background:#050505;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;
  transition:.6s;
}

.loaderBox{
  text-align:center;
  color:#fff;
}

.loaderBox img{
  width:110px;
  height:110px;
  border-radius:50%;
  background:#fff;
  padding:8px;
  margin:0 auto 15px;
}

.loaderBox h2{
  color:var(--gold);
  font-size:28px;
}

.loaderBox p{
  color:#ccc;
}

/* HEADER */

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#087A32;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 18px;
  box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.logoArea{
  display:flex;
  align-items:center;
  gap:12px;
}

.logoArea img{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fff;
  padding:4px;
}

.logoArea h2{
  color:#FFD34D;
  font-size:18px;
  margin:0;
}

.logoArea span{
  color:#fff;
  font-size:12px;
}

#navbar{
  display:flex;
  gap:22px;
}

#navbar a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  transition:.3s;
}

#navbar a:hover{
  color:var(--gold);
}

.bookNowBtn{
  background:var(--green-light);
  color:#fff;
  padding:10px 22px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
}

.menuBtn{
  display:none;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

/* HERO SECTION */

.hero{
  min-height:100vh;
  background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
             url("image/hero-bus.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:100px 20px 80px;
}

.heroLogo{
  width:120px;
  height:120px;
  border-radius:50%;
  background:#fff;
  padding:8px;
  margin-bottom:20px;
}

.hero h1{
  color:#FFD34D;
  font-size:48px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero p{
  color:#fff;
  max-width:700px;
  margin:0 auto 30px;
  font-size:18px;
  line-height:1.8;
}

.heroButtons{
  display:flex;
  gap:15px;
  justify-content:center;
  flex-wrap:wrap;
}

.heroButtons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}
/* ===========================================================
   PART 2 — BUTTONS, FLOATING BUTTONS, GLOBAL SECTIONS & ABOUT
=========================================================== */

/* BUTTONS */

.primaryBtn,
.secondaryBtn{
  padding:15px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  transition:.3s ease;
  display:inline-block;
}

.primaryBtn{
  background:var(--green-light);
  color:#fff;
}

.primaryBtn:hover{
  background:var(--green);
  transform:translateY(-3px);
}

.secondaryBtn{
  background:#fff;
  color:#087A32;
}

.secondaryBtn:hover{
  background:#D8B548;
  color:#000;
}

/* FLOATING BUTTONS */

.callButton,
.whatsappButton{
  position:fixed;
  right:18px;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  text-decoration:none;
  font-size:26px;
  z-index:999;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.callButton{
  bottom:100px;
  background:#087A32;
}

.whatsappButton{
  bottom:25px;
  background:#25D366;
}

/* GLOBAL SECTIONS */

section{
  padding:90px 7%;
}

.section-title{
  text-align:center;
  margin-bottom:55px;
}

.section-title span{
  color:var(--green-light);
  font-weight:700;
  letter-spacing:2px;
}

.section-title h2{
  font-size:38px;
  color:#087A32;
  margin:12px 0;
}

.section-title p{
  max-width:700px;
  margin:auto;
  color:#666;
}

/* ABOUT SECTION */

.about-section{
  background:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.about-content h3{
  color:#087A32;
  margin-bottom:18px;
  font-size:28px;
}

.about-content p{
  color:#555;
  margin-bottom:15px;
}

.about-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:25px;
}

.feature-card{
  background:#fff;
  padding:18px;
  border-radius:16px;
  box-shadow:var(--shadow);
  border-left:5px solid var(--green-light);
}

.feature-card h4{
  color:#087A32;
  margin-bottom:8px;
  font-size:18px;
}

.feature-card p{
  font-size:14px;
  color:#555;
}
/* ===========================================================
   PART 3 — STATS, FLEET, ROUTES & BOOKING SECTION
=========================================================== */

/* COMPANY STATS */

.stats-section{
  background:linear-gradient(135deg,#087A32,#10A64B);
  color:#fff;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  text-align:center;
}

.stat-box{
  background:rgba(255,255,255,.08);
  padding:30px 20px;
  border-radius:20px;
}

.stat-box h2{
  color:#FFD34D;
  font-size:38px;
  margin-bottom:10px;
}

/* LUXURY FLEET */

.fleet-section{
  background:#F8FBF8;
}

.fleet-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.fleet-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.3s;
}

.fleet-card:hover{
  transform:translateY(-8px);
}

.fleet-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.fleet-card h3{
  color:#087A32;
  padding:18px 20px 10px;
}

.fleet-card p{
  padding:0 20px 20px;
  color:#666;
}

/* ROUTES */

.routes-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:20px;
}

.route-card{
  background:#fff;
  border-left:6px solid #10A64B;
  border-radius:18px;
  padding:22px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.route-card h3{
  margin-bottom:10px;
  color:#111;
}

.route-card span{
  color:#087A32;
  font-size:24px;
  font-weight:700;
}

/* BOOKING SECTION */

.booking-section{
  background:#F4FFF7;
}

.booking-container{
  max-width:900px;
  margin:auto;
}

/* PREMIUM BOOKING FORM */

.booking-container{
  max-width:850px;
  margin:0 auto;
}

.booking-form{
  background:#FFFFFF;
  padding:30px;
  border-radius:24px;
  box-shadow:0 12px 35px rgba(8,122,50,.12);
  border:2px solid #EAF6EE;
}

.input-group{
  margin-bottom:18px;
}

.input-group label{
  display:block;
  font-weight:600;
  color:#087A32;
  margin-bottom:8px;
}

.input-group input,
.input-group select{
  width:100%;
  padding:16px;
  border:2px solid #DDEEDF;
  border-radius:14px;
  font-size:16px;
  background:#FAFFFB;
}

.input-group input:focus,
.input-group select:focus{
  border-color:#087A32;
  outline:none;
}

.fare-summary{
  background:#087A32;
  color:#fff;
  padding:20px;
  border-radius:18px;
  margin:25px 0;
}

.fare-item.total h2{
  color:#FFD34D;
  font-size:34px;
}

.submit-btn{
  width:100%;
  padding:18px;
  background:#087A32;
  color:#fff;
  border:none;
  border-radius:50px;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.submit-btn:hover{
  background:#0A9440;
}

.submit-btn:hover{
  background:#10A64B;
}
/* ===========================================================
   PART 4 — BENEFITS, REVIEWS, FAQ, CONTACT, FOOTER & MOBILE
   ONE WITH GOD MOTORS - FINAL CSS
=========================================================== */

/* BOOKING BENEFITS */

.benefits-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  background:#fff;
}

.benefit-card{
  background:#087A32;
  color:#fff;
  padding:28px;
  border-radius:18px;
  text-align:center;
  box-shadow:var(--shadow);
}

.benefit-card h3{
  color:#FFD34D;
  margin-bottom:12px;
}

/* TESTIMONIALS */

.reviews-section{
  background:#F8FBF8;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.review-card{
  background:#fff;
  padding:28px;
  border-radius:20px;
  box-shadow:var(--shadow);
  border-top:5px solid var(--green-light);
}

.stars{
  color:#FFD34D;
  font-size:22px;
  margin-bottom:12px;
}

.review-card h4{
  color:#087A32;
  margin-top:15px;
}

.review-card span{
  color:#777;
  font-size:14px;
}

/* FAQ */

.faq-container{
  max-width:900px;
  margin:auto;
}

.faq-item{
  background:#F8FBF8;
  border-left:5px solid var(--green-light);
  padding:22px;
  border-radius:16px;
  margin-bottom:18px;
}

.faq-item h3{
  color:#087A32;
  margin-bottom:10px;
}

/* CONTACT */

.contact-section{
  background:linear-gradient(135deg,#087A32,#10A64B);
  color:#fff;
}

.contact-section .section-title span,
.contact-section .section-title h2,
.contact-section .section-title p{
  color:#fff;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.contact-card{
  background:rgba(255,255,255,.08);
  padding:24px;
  border-radius:18px;
}

.contact-card h3{
  color:#FFD34D;
  margin-bottom:12px;
}

.contact-card a,
.contact-card p{
  color:#fff;
  text-decoration:none;
  word-break:break-word;
}

/* CALL TO ACTION */

.cta-section{
  background:#050505;
  color:#fff;
  text-align:center;
  padding:90px 20px 140px;
  position:relative;
  overflow:hidden;
}

.cta-section h2{
  color:#FFD34D;
  font-size:42px;
  margin-bottom:20px;
  line-height:1.2;
}

.cta-section p{
  max-width:700px;
  margin:0 auto 30px;
  font-size:18px;
  line-height:1.7;
}

.cta-section .primaryBtn{
  display:inline-block;
  padding:16px 34px;
  background:#087A32;
  color:#fff;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
}

.cta-section .primaryBtn:hover{
  background:#0A9440;
}

/* FOOTER */

.footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:70px 20px 40px;
}

.footer-logo{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#fff;
  padding:5px;
  margin:0 auto 20px;
}

.footer h2{
  color:#FFD34D;
}

.footer-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
  margin:25px 0;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
}

.footer-links a:hover{
  color:#FFD34D;
}

.footer-contact p{
  margin:6px 0;
  color:#DDD;
}

.copyright{
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:20px;
  color:#AAA;
}
.designer-credit{
  margin-top:12px;
  font-size:12px;
  color:#9A9A9A;
  text-align:center;
  opacity:0.8;
}

.designer-credit strong{
  color:#FFD34D;
  font-weight:500;
}
.footer{
  padding-bottom:120px;
}

.whatsapp-float,
.call-float,
.scroll-top{
  bottom:20px;
}

.scroll-top{
  left:20px;
}

.whatsapp-float{
  right:20px;
}

.call-float{
  right:90px;
}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

  /* Hero */
  .hero{
    min-height:85vh;
    padding:80px 18px 60px;
  }

  .heroLogo{
    width:90px;
    height:90px;
  }

  .hero h1{
    font-size:34px;
    line-height:1.2;
  }

  .hero p{
    font-size:16px;
    line-height:1.6;
  }

  /* CTA */
  .cta-section{
    padding:80px 18px 150px;
  }

  .cta-section h2{
    font-size:34px;
  }

  .cta-section p{
    font-size:16px;
  }

  /* Navigation */
  #navbar{
    display:none;
    position:absolute;
    top:85px;
    left:0;
    width:100%;
    background:#050505;
    flex-direction:column;
    padding:20px;
  }

  #navbar.active{
    display:flex;
  }

  .menuBtn{
    display:block;
  }

  .bookNowBtn{
    display:none;
  }

  section{
    padding:70px 20px;
  }

  /* Layout */
  .stats-section{
    grid-template-columns:1fr;
  }

  .contact-grid,
  .reviews-grid,
  .fleet-grid,
  .routes-grid{
    grid-template-columns:1fr;
  }

  /* Booking Form */
  .booking-form{
    padding:22px;
  }

  .fare-item{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}