*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  margin:0;
  background:#fcfbfb;
  color:#111827;
}

.header-left{
  display:flex;
  align-items:center;
  gap:15px;
}

.menu-icon{
  display:flex;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:6px 4px;
}

.menu-icon span{
  width:24px;
  height:3px;
  background:black;
  display:block;
  border-radius:999px;
  transition:0.2s ease;
}

.menu-icon:hover span{
  transform:scaleX(1.05);
}

.side-menu{
  position:fixed;
  top:0;
  left:-270px;
  width:260px;
  height:100%;
  background:#111827;
  color:white;
  padding-top:90px;
  transition:0.3s ease;
  z-index:9999;
  box-shadow:8px 0 24px rgba(0,0,0,0.15);
}

.side-menu a{
  display:block;
  padding:16px 24px;
  color:white;
  text-decoration:none;
  font-weight:600;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.side-menu a:hover{
  background:#374151;
}

.side-menu.open{
  left:0;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 40px;
  background:#f9fbfc;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
  display:flex;
  align-items:center;
  font-weight:bold;
  font-size:22px;
  color:#111827;
}

.logo img{
  width:40px;
  height:40px;
  margin-right:10px;
  object-fit:cover;
}

nav{
  display:flex;
  align-items:center;
  gap:10px;
}

nav a{
  text-decoration:none;
  color:#111827;
  padding:10px 18px;
  background:rgba(94,134,185,0.10);
  border-radius:8px;
  transition:0.3s;
  font-size:15px;
}

nav a:hover{
  background:#736940;
  color:white;
}

.hero{
  min-height:90vh;
  background-image:url("hero.jpg");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  background-attachment:fixed;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px 20px;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

.hero h1{
  margin:0 0 18px 0;
  font-size:52px;
  font-weight:800;
  color:white;
  text-shadow:0 4px 15px rgba(0,0,0,0.55);
  opacity:0;
  animation:fadeUp 0.9s ease forwards;
  animation-delay:0.15s;
}

.hero-subtext{
  max-width:680px;
  margin:0 auto 28px auto;
  font-size:16px;
  line-height:1.7;
  color:#e5e7eb;
  opacity:0;
  animation:fadeUp 1s ease forwards;
  animation-delay:0.35s;
}

.hero > .hero-content > button{
  background:#22c55e;
  color:white;
  padding:14px 30px;
  border:none;
  border-radius:10px;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  transition:transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  opacity:0;
  animation:fadeUp 1s ease forwards;
  animation-delay:0.55s;
}

.hero > .hero-content > button:hover{
  background:#16a34a;
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 12px 30px rgba(0,0,0,0.28);
}

.hero small{
  display:block;
  margin-top:14px;
  font-size:14px;
  color:#d1d5db;
  opacity:0;
  animation:fadeUp 1s ease forwards;
  animation-delay:0.75s;
}

.booking-box{
  display:none;
  position:relative;
  z-index:2;
  width:100%;
  max-width:380px;
  margin:30px auto 0 auto;
  padding:26px;
  border-radius:18px;
  background:rgba(255,255,255,0.16);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.25);
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

.booking-box input{
  width:100%;
  padding:13px 14px;
  margin:10px 0;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.35);
  background:rgba(255,255,255,0.20);
  color:white;
  outline:none;
  font-size:15px;
}

.booking-box input::placeholder{
  color:#f1f5f9;
}

.booking-box button{
  width:100%;
  margin-top:10px;
  padding:13px;
  background:#736940;
  color:white;
  border:none;
  border-radius:10px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.25s;
}

.booking-box button:hover{
  background:#cdb658;
  transform:translateY(-2px);
}

#bookingPrice{
  margin-top:14px;
  color:#ffffff;
  font-weight:600;
  font-size:15px;
}

.pickup-option-box{
  margin:12px 0 8px 0;
  text-align:left;
}

.pickup-option-box label{
  display:block;
  margin-bottom:8px;
  color:white;
  font-size:14px;
  font-weight:600;
}

.pickup-option-box select{
  width:100%;
  padding:13px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.35);
  background:rgba(255,255,255,0.95);
  color:#111827;
  outline:none;
  font-size:15px;
}

.pickup-option-box select option{
  color:#111827;
  background:white;
}

.hidden{
  display:none;
}

.pickup-details{
  margin-top:10px;
}

.pickup-details input{
  width:100%;
  padding:13px 14px;
  margin:10px 0;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.35);
  background:rgba(255,255,255,0.20);
  color:white;
  outline:none;
  font-size:15px;
}

.pickup-details input::placeholder{
  color:#f1f5f9;
}

.pickup-details input[type="time"]{
  background:rgba(255,255,255,0.95);
  color:#111827;
}

#companySection{
  position:relative;
  z-index:2;
  background:white;
  padding:22px;
  border-radius:14px;
  width:100%;
  max-width:420px;
  margin:25px auto 0 auto;
  box-shadow:0 10px 30px rgba(0,0,0,0.14);
}

#companySection h3{
  margin-top:0;
  margin-bottom:14px;
  color:#111827;
}

#company{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid #d1d5db;
  font-size:15px;
}

#priceDisplay{
  margin-top:14px;
  font-weight:700;
  color:#111827;
}

.stats-strip{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:18px;
  padding:30px 40px 10px 40px;
  background:#fcfbfb;
  margin-top:-35px;
  position:relative;
  z-index:3;
}

.stat-card{
  background:white;
  border-radius:14px;
  padding:24px 20px;
  text-align:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  transition:0.3s ease;
  transform:translateY(0);
}

.stat-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 32px rgba(0,0,0,0.12);
}

.stat-card h3{
  font-size:34px;
  font-weight:800;
  color:#111827;
  letter-spacing:1px;
  margin:0 0 10px 0;
  transition:transform 0.3s ease;
}

.stat-card:hover h3{
  transform:scale(1.04);
}
.stat-card p{
  margin:0;
  color:#4b5563;
  font-size:15px;
  font-weight:600;
}

.how-it-works{
  padding:70px 40px;
  text-align:center;
  background:#f9fafb;
}

.how-it-works h2{
  margin-bottom:40px;
  font-size:32px;
  color:#111827;
}

.steps-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  max-width:1000px;
  margin:auto;
}

.step-card{
  background:white;
  padding:30px;
  border-radius:14px;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  transition:0.3s;
}

.step-card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 28px rgba(0,0,0,0.12);
}

.step-number{
  width:50px;
  height:50px;
  background:#736940;
  color:white;
  font-size:20px;
  font-weight:bold;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px auto;
}

.step-card h3{
  margin-bottom:10px;
  color:#111827;
}

.step-card p{
  color:#4b5563;
  font-size:15px;
  line-height:1.6;
}

.featured-routes{
  padding:70px 40px;
  background:#ffffff;
  text-align:center;
}

.featured-routes h2{
  margin-bottom:12px;
  font-size:32px;
  color:#111827;
}

.featured-routes-subtext{
  max-width:700px;
  margin:0 auto 35px auto;
  color:#4b5563;
  line-height:1.7;
}

.featured-routes-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:24px;
}

.route-card{
  background:#f9fafb;
  padding:24px;
  border-radius:14px;
  text-align:left;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
  transition:0.25s ease;
  border:1px solid #eef2f7;
  cursor:pointer;
}

.route-card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 28px rgba(0,0,0,0.10);
}

.route-card h3{
  margin-top:0;
  margin-bottom:14px;
  color:#111827;
  font-size:20px;
}

.route-card p{
  margin:8px 0;
  color:#374151;
  line-height:1.5;
}

section{
  padding:60px 40px;
}

section h2{
  margin-top:0;
  font-size:32px;
  color:#111827;
}

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

.company-card{
  position:relative;
  background:white;
  padding:22px;
  text-align:center;
  border-radius:10px;
  box-shadow:0 3px 10px rgba(0,0,0,0.10);
  transition:0.3s;
  font-weight:600;
}

.company-card:hover{
  transform:scale(1.04);
  background:#736940;
  color:white;
}

.company-card h3{
  margin-top:0;
  margin-bottom:12px;
  font-size:20px;
  color:#111827;
}

.company-price,
.company-seats{
  margin:8px 0;
  font-size:15px;
  color:#374151;
  font-weight:600;
}

.company-card:hover h3,
.company-card:hover .company-price,
.company-card:hover .company-seats{
  color:white;
}

.recommended-badge{
  position:absolute;
  top:14px;
  right:14px;
  background:#22c55e;
  color:white;
  font-size:12px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
}

.select-company-btn{
  margin-top:14px;
  width:100%;
  border:none;
  background:black;
  color:white;
  padding:12px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  transition:0.25s ease;
}

.select-company-btn:hover{
  background:#736940;
  transform:translateY(-2px);
}

.company-card:hover .select-company-btn{
  background:white;
  color:#111827;
}

.company-card:hover .select-company-btn:hover{
  background:#f3f4f6;
}

#track input{
  width:100%;
  max-width:360px;
  padding:12px;
  border-radius:10px;
  border:1px solid #d1d5db;
  margin:12px 0;
}

#track button{
  display:inline-block;
  background:black;
  color:white;
  border:none;
  padding:12px 22px;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
  transition:all 0.25s ease;
}

#track button:hover{
  background:#736940;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

#track button:focus{
  outline:none;
  box-shadow:0 0 0 3px rgba(115,105,64,0.4);
}

#trackingResult{
  margin-top:14px;
  font-weight:600;
}

#about p{
  max-width:900px;
  line-height:1.8;
  color:#374151;
}

.site-footer{
  background:#0f172a;
  color:#e5e7eb;
  margin-top:80px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.site-footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:60px 20px 24px;
}

.site-footer-top{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:40px;
  align-items:start;
}

.footer-brand{
  max-width:420px;
}

.footer-brand-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.footer-brand-head img{
  width:44px;
  height:44px;
  object-fit:contain;
  display:block;
}

.footer-brand-head span{
  font-size:1.25rem;
  font-weight:700;
  color:#ffffff;
  letter-spacing:0.2px;
}

.footer-brand p{
  margin:0;
  line-height:1.8;
  color:#cbd5e1;
  font-size:0.97rem;
}

.footer-column h4{
  margin:0 0 18px;
  font-size:1rem;
  color:#ffffff;
  font-weight:700;
}

.footer-links-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-links-list a{
  color:#cbd5e1;
  text-decoration:none;
  transition:0.2s ease;
  font-weight:500;
}

.footer-links-list a:hover{
  color:#ffffff;
  transform:translateX(2px);
}

.footer-bottom{
  margin-top:36px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-bottom p{
  margin:0;
  color:#94a3b8;
  font-size:0.95rem;
}

.footer-bottom-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.footer-bottom-links a{
  color:#94a3b8;
  text-decoration:none;
  font-size:0.93rem;
  transition:0.2s ease;
}

.footer-bottom-links a:hover{
  color:#ffffff;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(24px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width: 900px){
  .hero h1{
    font-size:42px;
  }

  section{
    padding:50px 24px;
  }

  header{
    padding:18px 24px;
  }

  .site-footer-top{
    grid-template-columns:1fr;
    gap:28px;
  }

  .site-footer-inner{
    padding:48px 18px 22px;
  }

  .footer-bottom{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width: 768px){
  .hero{
    background-attachment:scroll;
    background-position:center;
  }

  header{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  nav{
    flex-wrap:wrap;
    gap:8px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero-subtext{
    font-size:15px;
  }

  .booking-box,
  #companySection{
    max-width:100%;
  }

  .stats-strip{
    padding:20px 24px 0 24px;
    margin-top:0;
  }
}

@media (max-width: 768px){
  .hero{
    background-attachment:scroll;
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
    min-height:80vh;
  }

  .hero > .hero-content > button{
    width:100%;
    max-width:280px;
  }

  .hero-subtext{
    font-size:14px;
  }

  .site-footer-inner{
    padding-left:16px;
    padding-right:16px;
  }

  .footer-bottom-links{
    gap:12px;
  }
}