:root{
  --bg:#f6f8fc;
  --card:#ffffff;
  --border:#e5e7eb;
  --text:#0f172a;
  --muted:#64748b;
  --primary:#ffe600;
  --primary-dark:#f4db00;
  --radius:24px;
  --shadow:0 10px 30px rgba(15,23,42,.06);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Inter,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{
  text-decoration:none;
  color:inherit;
}

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

/* HERO */

.hero{
  padding:5rem 0 3rem;
  position:relative;
}

.hero-content{
  position:relative;
  z-index:2;
}

.provider-row{
  display:grid;
  grid-template-columns:1.2fr 420px;
  gap:2rem;
  align-items:center;
}

.provider-meta h1{
  font-size:3rem;
  line-height:1.05;
  margin:1.25rem 0 .9rem;
  color:#0f172a;
}

.provider-meta p{
  color:#64748b;
  font-size:1rem;
  line-height:1.7;
  max-width:680px;
}

.provider-logo{
  width:88px;
  height:88px;
  border-radius:24px;
  object-fit:cover;
  border:1px solid #e2e8f0;
  background:#fff;
  padding:.5rem;
}

.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.5rem;
}

.hero-chip{
  height:42px;
  padding:0 1rem;
  border-radius:999px;
  background:#fff;
  border:1px solid #e2e8f0;
  display:flex;
  align-items:center;
  gap:.55rem;
  font-size:.9rem;
  color:#334155;
}

/* BOOKING CARD */

.booking-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  overflow:hidden;
  box-shadow:
    0 10px 30px rgba(15,23,42,.06);
}

.booking-banner{
  height:200px;
  position:relative;
  background-size:cover;
  background-position:center;
}

.booking-banner-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(15,23,42,.10),
      rgba(15,23,42,.72)
    );
}

.booking-banner-content{
  position:absolute;
  left:1.5rem;
  right:1.5rem;
  bottom:1.5rem;
  z-index:2;
  color:#fff;
}

.booking-badge{
  display:inline-flex;
  align-items:center;
  height:50px;
  padding:0 1.9rem;
  border-radius: 14px;
  background:rgb(255, 255, 255);
  backdrop-filter:blur(10px);
  font-size:.98rem;
  color: #000;
  font-weight: bold;
}

.booking-banner-content h3{
  font-size:1.55rem;
  margin-bottom:.35rem;
}

.booking-banner-content p{
  font-size:.92rem;
  opacity:.9;
}

.booking-body{
  padding:1.5rem;
}

#bookingForm{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:.45rem;
}

.form-group label{
  font-size:.88rem;
  font-weight:600;
  color:#334155;
}

.input{
  height:52px;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:0 1rem;
  background:#f8fafc;
  font-size:.95rem;
  outline:none;
  transition:.2s ease;
}

.input:focus{
  border-color:#ffcf33;
  background:#fff;
}

.submit-btn{
  margin-top:.5rem;
  height:54px;
  border:none;
  border-radius:16px;
  background:#ffcf33;
  color:#111827;
  font-weight:700;
  font-size:.95rem;
  cursor:pointer;
  transition:.2s ease;
}

.submit-btn:hover{
  transform:translateY(-1px);
}

@media(max-width:980px){

  .provider-row{
    grid-template-columns:1fr;
  }

  .provider-meta h1{
    font-size:2.25rem;
  }

  .booking-card{
    width:100%;
  }
}

@media(max-width:640px){

  .hero{
    padding:2rem 0;
  }

  .provider-meta h1{
    font-size:1.9rem;
  }

  .booking-banner{
    height:150px;
  }

  .booking-banner-content h3{
    font-size:1.25rem;
  }

  .booking-body{
    padding:1.1rem;
  }

  .provider-logo{
    width:72px;
    height:72px;
    border-radius:20px;
  }

  .hero-chip{
    width:100%;
    justify-content:flex-start;
  }
}

/* BOOKING */

.booking-card{
  width:480px;
  flex-shrink:0;
  background:white;
  border-radius:28px;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.booking-card h3{
  font-size:1.2rem;
  margin-bottom:6px;
}

.booking-card p{
  color:var(--muted);
  font-size:.92rem;
  margin-bottom:22px;
}

.form-group{
  margin-bottom:14px;
}

.form-group label{
  display:block;
  font-size:.85rem;
  margin-bottom:8px;
  font-weight:600;
}

.input{
  width:100%;
  height:52px;
  border-radius:16px;
  border:1px solid var(--border);
  padding:0 16px;
  font-size:.94rem;
  background:white;
  outline:none;
}

.input:focus{
  border-color:var(--primary);
}

.submit-btn{
  width:100%;
  height:54px;
  border:none;
  border-radius:18px;
  background:var(--primary);
  color:#111827;
  font-weight:700;
  cursor:pointer;
  margin-top:10px;
  font-size:.95rem;
}

.submit-btn:hover{
  background:var(--primary-dark);
}

/* SECTION */

.section{
  padding:72px 0;
}

.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:26px;
  gap:20px;
}

.section-head h2{
  font-size:1.8rem;
}

.section-head p{
  color:var(--muted);
  margin-top:6px;
}

/* ROUTES */

.routes-grid{
  display:grid;
  gap:18px;
}

.route-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  box-shadow:var(--shadow);
}

.route-left{
  flex:1;
  min-width:0;
}

.route-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
  flex-wrap:wrap;
}

.route-price{
  background:rgba(255,207,51,.16);
  color:#9a6700;
  padding:10px 14px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:700;
}

.route-status{
  padding:10px 14px;
  border-radius:999px;
  background:#ecfdf3;
  color:#16a34a;
  font-size:.82rem;
  font-weight:600;
}

.route-path{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.city{
  font-size:1.08rem;
  font-weight:700;
}

.route-line{
  width:48px;
  height:2px;
  background:#dbe4ef;
  position:relative;
}

.route-line::after{
  content:"";
  position:absolute;
  right:-1px;
  top:-3px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#dbe4ef;
}

.route-bottom{
  display:flex;
  align-items:center;
  gap:18px;
  margin-top:18px;
  flex-wrap:wrap;
}

.meta{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:.9rem;
}

.route-btn{
  height:50px;
  border:none;
  padding:0 22px;
  border-radius:16px;
  background:#111827;
  color:white;
  font-weight:600;
  cursor:pointer;
  white-space:nowrap;
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.info-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.info-card h4{
  margin-bottom:16px;
  font-size:1rem;
}

.info-card p{
  color:var(--muted);
  line-height:1.8;
}

.stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.stat-box{
  background:#f8fafc;
  border-radius:18px;
  padding:18px;
}

.stat-box span{
  display:block;
  color:var(--muted);
  font-size:.82rem;
  margin-bottom:8px;
}

.stat-box strong{
  font-size:1rem;
}

.loading{
  padding:120px 20px;
  text-align:center;
  color:var(--muted);
}

@media(max-width:980px){

  .provider-row{
    flex-direction:column;
    align-items:stretch;
  }

  .booking-card{
    width:100%;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:700px){

  .hero-content{
    padding:72px 0 48px;
  }

  .provider-meta h1{
    font-size:2.5rem;
  }

  .route-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .route-btn{
    width:100%;
  }

  .section{
    padding:56px 0;
  }
}

.listing-footer{
  margin-top:4rem;
  background:#fff;
  border-top:1px solid #e2e8f0;
}

.footer-content{
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1.25rem 0;
  flex-wrap:wrap;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:.9rem;
}

.footer-brand img{
  width:42px;
  height:42px;
  border-radius:12px;
  object-fit:cover;
}

.footer-brand strong{
  display:block;
  font-size:.95rem;
  color:#0f172a;
}

.footer-brand span{
  display:block;
  font-size:.82rem;
  color:#64748b;
  margin-top:.15rem;
}

.footer-right{
  display:flex;
  align-items:center;
  gap:1.25rem;
  flex-wrap:wrap;
}

.footer-right a{
  text-decoration:none;
  color:#64748b;
  font-size:.88rem;
  transition:.2s ease;
}

.footer-right a:hover{
  color:#0f172a;
}

.footer-bottom{
  border-top:1px solid #e2e8f0;
  padding:1rem;
  text-align:center;
  font-size:.82rem;
  color:#94a3b8;
  background:#f8fafc;
}

@media(max-width:768px){

  .footer-content{
    flex-direction:column;
    align-items:flex-start;
    padding:1.1rem 0;
  }

  .footer-right{
    width:100%;
    justify-content:flex-start;
  }

  .footer-bottom{
    font-size:.78rem;
  }
}