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

body{
  font-family:'Inter',sans-serif;
  background:#fff;
  color:#111;
}

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

.routes-hero{
  width:min(1200px,92%);
  margin:100px auto 120px;

  display:grid;
  grid-template-columns:1fr 480px;
  gap:60px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  padding:10px 18px;
  border-radius:999px;
  border: 1px solid #d3d3d3;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:28px;
}

.routes-hero h1{
  font-size:3.5rem;
  line-height:1;
  letter-spacing:-3px;
  margin-bottom:24px;
}

.routes-hero p{
  color:#666;
  line-height:1.9;
  max-width:640px;
}

/* =========================================
   BOOKING CARD
========================================= */

.booking-card{
  border:1px solid #ececec;
  border-radius:34px;
  padding:34px;
  background:#fff;
  box-shadow:0 20px 50px rgba(0,0,0,0.04);
}

.booking-head{
  display:flex;
  gap:18px;
  align-items:center;
  margin-bottom:34px;
}

.booking-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:#fff7b2;

  display:flex;
  align-items:center;
  justify-content:center;
}

.booking-icon i{
  font-size:1.4rem;
}

.booking-head h3{
  margin-bottom:6px;
}

.booking-head span{
  color:#666;
}

.input-group{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:20px;
}

.input-group label{
  font-weight:600;
  font-size:0.95rem;
}

.input-wrapper{
  position:relative;
}

.input-wrapper i{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  color:#777;
}

.input-wrapper input,
.input-wrapper select{
  width:100%;
  height:58px;
  border-radius:18px;
  border:1px solid #e7e7e7;
  padding:0 18px 0 50px;
  font-size:1rem;
  font-family:'Inter',sans-serif;
}

.input-wrapper input:focus,
.input-wrapper select:focus{
  outline:none;
  border-color:#ffe600;
}

.input-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.search-btn{
  width:100%;
  height:60px;
  border:none;
  border-radius:18px;
  background: #f1f1f1;;
  color:#909090;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  font-size:1rem;
  font-weight:600;
  cursor:pointer;

  margin-top:10px;
}

.search-btn:hover{
   background:#111;
  color:#fff; 
}

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

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

.section-heading{
  margin-bottom:50px;
}

.section-heading span{
  color:#666;
  font-weight:600;
}

.section-heading h2{
  font-size:3rem;
  margin-top:14px;
  letter-spacing:-2px;
}

/* =========================================
   ROUTES GRID
========================================= */

.routes-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.route-card{
  border:1px solid #ececec;
  border-radius:30px;
  overflow:hidden;
  background:#fff;
}

.route-banner{
  height:200px;
  background:linear-gradient(135deg,#ffe600,#fff6a1);
}

.route-banner-two{
  background:linear-gradient(135deg,#111,#2b2b2b);
}

.route-banner-three{
  background:linear-gradient(135deg,#c9c9c9,#f5f5f5);
}

.route-content{
  padding:28px;
}

.route-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:18px;
}

.route-badge{
  padding:10px 14px;
  border-radius:999px;
  background:#fff7b2;
  font-size:0.82rem;
  font-weight:600;
}

.route-price{
  font-weight:700;
}

.route-card h3{
  font-size:1.4rem;
  margin-bottom:16px;
}

.route-card p{
  color:#666;
  line-height:1.8;
}

.route-meta{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:24px 0;
}

.route-meta span{
  display:flex;
  align-items:center;
  gap:8px;
  color:#666;
  font-size:0.92rem;
}

.route-btn{
  width:100%;
  height:52px;
  border:none;
  border-radius:16px;
  background:#111;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

/* =========================================
   PROVIDERS
========================================= */

.providers-section{
  background:#fafafa;
  padding:100px 0;
  width:100%;
}

.providers-section .section-heading,
.providers-grid{
  width:min(1200px,92%);
  margin-inline:auto;
}

.providers-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.provider-card{
  background:#fff;
  border-radius:30px;
  padding:30px;
}

.provider-top{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:24px;
}

.provider-logo{
  width:62px;
  height:62px;
  border-radius:18px;
  background:#111;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:800;
}

.provider-logo.yellow{
  background:#ffe600;
  color:#111;
}

.provider-logo.dark{
  background:#2f2f2f;
}

.provider-top span{
  color:#666;
}

.provider-card p{
  color:#666;
  line-height:1.8;
}

.provider-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0;
}

.provider-tags span{
  padding:10px 14px;
  border-radius:999px;
  background:#f5f5f5;
  font-size:0.85rem;
}

.provider-btn{
  width:100%;
  height:52px;
  border:none;
  border-radius:16px;
  background:#111;
  color:#fff;
  font-weight:600;
}

/* =========================================
   STEPS
========================================= */

.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.step-card{
  border:1px solid #ececec;
  border-radius:28px;
  padding:34px;
}

.step-number{
  width:58px;
  height:58px;
  border-radius:18px;
  background:#fff7b2;

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:700;

  margin-bottom:24px;
}

.step-card h3{
  margin-bottom:14px;
}

.step-card p{
  color:#666;
  line-height:1.8;
}

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

.routes-cta{
  width:min(1200px,92%);
  margin:0 auto 120px;
flex-wrap: wrap;
  background:#111;
  border-radius:40px;

  padding:60px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.cta-content span{
  color:#ffe600;
  font-weight:600;
}

.cta-content h2{
  color:#fff;
  font-size:3rem;
  margin:18px 0;
  max-width: 600px;
  letter-spacing:-2px;
}

.cta-content p{
  color:#cfcfcf;
  line-height:1.8;
}

.cta-actions{
  display:flex;
  gap:16px;
}

.primary-btn,
.secondary-btn{
  height:56px;
  padding:0 24px;
  border-radius:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;
  font-weight:600;
}

.primary-btn{
  background:#ffe600;
  color:#111;
}

.secondary-btn{
  background:rgba(255,255,255,0.08);
  color:#fff;
}

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

.footer{
  border-top:1px solid #f1f1f1;
  padding:80px 0 30px;
}

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

  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
}

.footer-col p{
  color:#666;
  line-height:1.8;
  margin-top:16px;
}

.footer-col ul{
  list-style:none;
  margin-top:20px;
}

.footer-col ul li{
  margin-bottom:14px;
}

.footer-col ul a{
  text-decoration:none;
  color:#666;
}

.footer-bottom{
  width:min(1200px,92%);
  margin:50px auto 0;
  padding-top:24px;
  border-top:1px solid #f1f1f1;
}

.footer-bottom p{
  color:#777;
}

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

@media(max-width:1100px){

  .routes-hero,
  .routes-grid,
  .providers-grid,
  .steps-grid,
  .footer-container,
  .routes-cta{
    grid-template-columns:1fr;
    flex-direction:column;
  }

  .routes-hero{
    gap:40px;
  }
}

@media(max-width:700px){

  .routes-hero{
    margin-top:70px;
  }

  .routes-hero h1{
    font-size:3rem;
  }

  .section-heading h2,
  .cta-content h2{
    font-size:2.2rem;
  }

  .booking-card,
  .route-content,
  .provider-card,
  .step-card,
  .routes-cta{
    padding:24px;
  }

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

  .cta-actions{
    width:100%;
    flex-direction:column;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
  }
}