/* ============ TOKENS ============ */
:root{
  --navy: #0f1e3d;
  --navy-light: #16295a;
  --gold: #f5a927;
  --gold-dark: #e6971a;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --text-dark: #1c2438;
  --text-gray: #6b7280;
  --border: #e5e8ef;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(15,30,61,0.10);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,h2,h3,h4{ font-family: var(--font-head); color: var(--navy); }

a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family: var(--font-body); cursor:pointer; border:none; }
input,select,textarea{ font-family: var(--font-body); }

.invalid{ outline: 2px solid #e74c3c; }
.required-msg{ color: #e74c3c; font-size: 12px; margin-left: 8px; }

.eyebrow{
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.eyebrow.light{ color: var(--gold); }
.center{ text-align:center; }

.section-title{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.section-subtitle{
  color: var(--text-gray);
  margin-bottom: 40px;
}

/* ============ PLACEHOLDER BOXES ============ */
.placeholder-box{
  background: repeating-linear-gradient(45deg, #eef1f6, #eef1f6 10px, #e4e8f0 10px, #e4e8f0 20px);
  border: 2px dashed #c7cede;
  border-radius: var(--radius);
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
  color: #8791a8;
  font-size: 13px;
  text-align:center;
  min-height: 120px;
}
.placeholder-box::before{
  content: attr(data-label);
  padding: 8px 14px;
  background: rgba(255,255,255,0.85);
  border-radius: 6px;
  font-weight: 500;
}

/* ============ BUTTONS ============ */
.btn{
  display: inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active{ transform: scale(0.97); }

.btn-primary{
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover{ background: var(--gold-dark); box-shadow: 0 6px 16px rgba(245,169,39,0.35); }

.btn-outline{
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover{ background: rgba(255,255,255,0.12); }

.btn-dark{
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover{ background: var(--navy-light); }

.btn-outline-dark{
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 12px 22px;
}
.btn-outline-dark:hover{ background: var(--navy); color: var(--white); }

.full-width{ width: 100%; }

/* ============ HEADER ============ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 14px 0;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
}
.logo{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-shrink:0;
}
.logo-icon{
  font-size: 32px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-icon img{
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  border-radius:50%;
}
.logo-text{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-text span{
  .footer-brand p{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
  }
  display:block;
  color: var(--gold);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
}

.main-nav{
  display:flex;
  gap: 32px;
  flex: 1;
  justify-content:center;
}
  .footer-bottom span{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
    display: block;
  }
.nav-link{
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 14.5px;
  padding: 6px 0;
  position: relative;
  transition: color .15s ease;
}
.nav-link:hover{ color: var(--gold); }
.nav-link.active{ color: var(--gold); }

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
}
.hamburger span{
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Mobile icon-only Book Now / Call buttons (shown in the mobile nav bar) */
.mobile-icon-actions{
  display: none;
  align-items: left;
  gap: 8px;
  flex-shrink: 0;
}
.mobile-icon-btn{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: var(--gold);
  color: var(--navy);
  flex-shrink: 0;
  transition: transform .15s ease, background .15s ease;
}
.mobile-icon-btn:active{ transform: scale(0.93); }
.mobile-icon-btn.call-icon-btn{
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

/* ============ HERO ============ */
.hero{
  position: relative;
  background: var(--navy);
  padding-top: 20px;
  overflow: hidden;
}
.hero-media{
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
  /* ensure the hero has visible height when using a background image */
  min-height: 300px;
  background-image: url('Media/background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* override placeholder visuals for the hero background so image shows */
.hero-media.placeholder-box{ background: none; border: none; }
.hero-media::before{ content: none; }
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,30,61,0.92) 20%, rgba(15,30,61,0.55) 60%, rgba(15,30,61,0.25) 100%);
}
.hero-inner{
  position: relative;
  z-index: 2;
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  flex-wrap: wrap;
}
.hero-content{
  max-width: 560px;
  padding-top: 20px;
}
.hero-title{
  font-size: 48px;
  line-height: 1.15;
  color: var(--white);
  font-weight: 800;
  margin: 14px 0 18px;
}
.hero-title .accent{ color: var(--gold); }
.hero-subtext{
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 18px;
}
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px;
  border:  #f5a927;
  border-radius: 999px;
  color: #f5a927;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 24px;
}
.hero-buttons{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Estimation card */
.estimate-card{
  background: var(--white);
  border-radius: 14px;
  padding: 18px 18px;
  width: 400px;
  /* nudge the card slightly to the right for visual balance */
  margin-left: 10px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.estimate-card h3{
  font-size: 17px;
  margin-bottom: 4px;
}
.estimate-sub{
  color: var(--text-gray);
  font-size: 12.5px;
  margin-bottom: 18px;
}
.input-group{
  position: relative;
  margin-bottom: 14px;
}
.input-row{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.input-row .input-group{
  flex: 1 1 170px;
  min-width: 170px;
}
.date-time-row{
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-bottom: 12px;
}
.date-time-row .input-group{
  flex: 1 1 0;
  min-width: 0;
}
.date-time-row .input-group:first-child{
  flex: 0 1 128px;
}
.date-time-row .input-group:first-child input{
  padding: 10px 8px;
  font-size: 12.5px;
}
.date-time-row .time-inputs{
  gap: 10px;              
}
.date-time-row .time-inputs input{
  flex: 0 0 50px;          
  padding: 12px 6px;      
  font-size: 12px;        
}
.date-time-row .time-inputs select{
  flex: 0 0 64px;           
  padding: 10px 4px;        
  font-size: 12px;         
}
.pickup-row{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.pickup-row .input-group{
  flex: 1 1 100%;
  min-width: 0;
}
.input-group label{
  display:block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.input-group input,
.input-group select{
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-dark);
  background: var(--off-white);
}
.time-inputs{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  width: 100%;
}
.time-inputs input{
  flex: 0 0 58px;
  padding: 10px 10px;
  text-align: center;
}
.time-inputs select{
  flex: 0 0 90px;
}
.time-separator{
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
}
.input-group input:focus,
.input-group select:focus{
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.estimate-note{
  text-align:center;
  color: var(--text-gray);
  font-size: 11.5px;
  margin-top: 12px;
}

/* Trip type toggle (Round Trip / One Way) */
.trip-type-toggle{
  display: flex;
  gap: 8px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 4px;
}
.trip-type-btn{
  flex: 1 1 0;
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 9px 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-gray);
  transition: background .15s ease, color .15s ease;
}
.trip-type-btn.active{
  background: var(--navy);
  color: var(--white);
}
.trip-type-btn:hover:not(.active){ background: rgba(15,30,61,0.06); }

/* Selectable vehicle cards inside the estimate form */
.vehicle-select-group{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.vehicle-select-card{
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 8px 6px 10px;
  text-align: center;
  cursor: pointer;
  background: var(--off-white);
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.vehicle-select-card:hover{ transform: translateY(-2px); border-color: var(--gold); }
.vehicle-select-card.selected{
  border-color: var(--gold);
  background: #fff8ea;
  box-shadow: 0 4px 14px rgba(245,169,39,0.25);
}
.vs-img{
  height: 46px;
  margin-bottom: 6px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: hidden;
  border-radius: 6px;
}
.vs-img img{ width: 100%; height: 100%; object-fit: contain; }
.vs-name{
  display:block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}
.vs-price{
  display:block;
  font-size: 11px;
  color: var(--text-gray);
  margin-top: 2px;
}
.vs-check{
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.vehicle-select-card.selected .vs-check{ display: flex; }

.vehicles-more-link{
  text-align: center;
  margin-top: 8px;
}

/* Feature strip */
.feature-strip{
  position: relative;
  z-index: 2;
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.feature-strip-inner{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 24px;
}
.feature-item{
  display:flex;
  align-items:center;
  gap: 14px;
  flex: 1 1 200px;
}
.feature-icon{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink:0;
}
.feature-item strong{
  color: var(--white);
  font-size: 14px;
  display:block;
  margin-bottom: 2px;
}
.feature-item p{
  color: rgba(255,255,255,0.65);
  font-size: 12.5px;
}

/* ============ VEHICLES ============ */
.vehicles-section{
  padding: 60px 0 50px;
  background: var(--white);
}
.vehicle-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 26px;
}
.vehicle-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.vehicle-card:hover{ transform: translateY(-6px); }
.vehicle-img{
  /* fixed slot for vehicle images so all cards align */
  height: 180px;
  min-height: 120px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--off-white);
  display:block;
}
.vehicle-card .btn + .btn{
  margin-top: 10px;
}
.vehicle-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vehicle-card h3{
  font-size: 19px;
  margin-bottom: 6px;
}
.vehicle-specs{
  color: var(--text-gray);
  font-size: 12.5px;
  margin-bottom: 10px;
}
.vehicle-price{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
}

/* ============ HOW IT WORKS ============ */
.how-it-works{
  background: linear-gradient(180deg, #eef3fb 0%, #e2eaf7 100%);
  padding: 44px 0;
}
.testimonials-section{
  background: linear-gradient(180deg, #eef3fb 0%, #e2eaf7 100%);
  padding: 44px 0;
}
.how-it-works-banner{
  display:flex;
  align-items: stretch;
  gap: 22px;
}
.how-it-works-steps-col{
  flex: 1 1 56%;
  display:flex;
  flex-direction: column;
  justify-content: center;
}
.how-it-works-heading{
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 2px 0 22px;
}
.steps{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 6px;
}
.step{
  flex: 1 1 0;
  text-align: center;
  min-width: 0;
}
.step-circle{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 30, 61, 0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 12px;
  position: relative;
}
.step-icon{ font-size: 22px; color: var(--navy); }
.step-number{
  position: absolute;
  top: -6px;
  right: -6px;
  background: #1264e0;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 6px 14px rgba(18, 100, 224, 0.35);
}
.step h4{ font-size: 13.5px; margin: 0 0 6px; color: #0f1e3d; font-weight: 700; }
.step p{ color: #5b6b8d; font-size: 11.5px; line-height: 1.5; margin: 0; }
.step-arrow{
  color: rgba(15, 30, 61, 0.4);
  font-size: 15px;
  margin-top: 24px;
  flex-shrink: 0;
}

/* CTA card */
.journey-card{
  flex: 0 1 240px;
  background: linear-gradient(180deg, #10203f 0%, #16294f 100%);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.journey-card-title{
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.accent-gold{ color: var(--gold); }
.journey-card-copy{
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin: 0;
  font-size: 12.5px;
}
.journey-btn{
  width: fit-content;
  padding: 10px 18px;
  border-radius: 8px;
  background: #f0932b;
  color: #ffffff;
  font-size: 13px;
  margin-top: 4px;
}
.journey-btn:hover{ background: #d97f1c; }
.journey-btn span{ font-size: 16px; }

/* Image */
.how-it-works-img{
  flex: 0 1 300px;
  border-radius: 16px;
  overflow: hidden;
  min-height: unset;
}
.how-it-works-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-grid{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.testimonial-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  max-width: 300px;
  min-width: 240px;
}
.stars{ color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 15px; }
.testimonial-text{
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 18px;
  min-height: 70px;
}
.testimonial-author{
  display:flex;
  align-items:center;
  gap: 12px;
}
.avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  min-height: unset;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong{ font-size: 13.5px; }
.testimonial-author p{ color: var(--text-gray); font-size: 12px; }



/* ============ ROUTES WE COVER ============ */
.routes-section{
  padding: 50px 0;
  background: var(--white);
}
.routes-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.route-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 14px;
  padding: 20px 10px;
  border-radius: 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.route-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: var(--white);
}
.route-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 24px;
}
.route-card h4{
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ============ CONTACT ============ */
.contact-section{
  background: var(--off-white);
  padding: 30px 0;
}
.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}
.contact-form,
.contact-info,
.map-box{
  height: 100%;
}
.contact-form{
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form textarea{
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13.5px;
  resize: vertical;
  background: var(--off-white);
}
.contact-form textarea:focus{ outline:none; border-color: var(--gold); background: var(--white); }

.contact-info{
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  gap: 20px;
}
.info-item{
  display:flex;
  gap: 16px;
  align-items:flex-start;
}
.info-icon{ font-size: 18px; margin-top: 2px; }
.info-item strong{ display:block; font-size: 15.5px; margin-bottom: 2px; }
.info-item p{ color: var(--text-gray); font-size: 15px; }

  .map-box{
    background: var(--white);
    padding: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 250px;
    width: 460px;
  }
  .map-box iframe{
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    min-height: 320px;
  }

/* ============ FOOTER ============ */
.site-footer{
  background: linear-gradient(90deg, rgba(15,30,61,0.95) 0%, rgba(15,30,61,0.80) 60%, rgba(15,30,61,0.40) 100%), url('Media/footer background.jpeg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 18px;
  padding-bottom: 0;
  position: relative;
}
.footer-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand{
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 380px;
  flex: 0 0 auto;
}
.footer-brand .logo{
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .logo-text{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 1px;
}
.footer-brand .logo-text span{
  display:block;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
}
.footer-brand p{
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  margin: 0;
  max-width: 360px;
  white-space: nowrap;
}
.footer-spacer{
  flex: 1;
  min-height: 120px;
}

.footer-inner{
  padding-top: 14px;
  padding-bottom: 14px;
}
.footer-col{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4{
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}
.footer-col-quicklinks h4::before{ content: '🔗'; font-size: 16px; }
.footer-quicklinks-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 8px;
  column-gap: 22px;
}
.footer-col a, .footer-col span{
  display:flex;
  align-items: center;
  color: rgba(255,255,255,0.80);
  font-size: 13.5px;
  margin: 0;
  transition: color .2s ease;
  line-height: 1.4;
}
.footer-col a::before,
.footer-col span::before{
  content: '›';
  margin-right: 6px;
  color: var(--gold);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}
.footer-col a:hover{ color: var(--gold); }

.footer-bottom{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom span{
  display: inline-block;
  margin: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 12px;
}

/* ============ BACK TO TOP ============ */
#backToTop{
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 90;
  transition: opacity .2s ease, transform .2s ease;
}
#backToTop.show{ display:flex; }
#backToTop:hover{ transform: translateY(-3px); }

/* ============ CALL BUTTON ============ */
.call-fab{
  position: fixed;
  display:flex;
  bottom: 84px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:var(--gold);
  color: var(--white);
  font-size: 18px;
  box-shadow: var(--shadow);
  align-items:center;
  justify-content:center;
  z-index: 92;
  text-decoration: none;
  transition: transform .2s ease;
}
.call-fab:hover{ transform: translateY(-3px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px){
  .contact-grid{ grid-template-columns: 1fr 1fr; }
  .map-box{ grid-column: 1 / -1; }
  .hero-title{ font-size: 40px; }
}

@media (max-width: 900px){
  .main-nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 20px 14px;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .main-nav.open{ max-height: 300px; }
  .hamburger{ display:flex; }
  .book-now-btn{ display:none; }
  .header-inner{ position: relative; }

  .hero-inner{
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-content{
    max-width: 100%;
    padding-top: 0;
  }
  .hero-buttons{
    justify-content: center;
  }
  .estimate-card{
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }
  .input-row{
    flex-direction: column;
  }
  .pickup-row{
    flex-direction: column;
    gap: 10px;
  }
  .pickup-row .input-group{
    flex: 1 1 0;
    min-width: 0;
  }
  .time-inputs{
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .time-inputs input{
    flex: 0 0 46px;
    min-width: 46px;
  }
  .time-inputs select{
    flex: 0 0 72px;
    min-width: 72px;
  }
  .how-it-works-banner{
    flex-wrap: wrap;
  }
  .how-it-works-steps-col{ flex: 1 1 100%; order: 1; }
  .journey-card{ flex: 1 1 260px; order: 2; }
  .how-it-works-img{ flex: 1 1 260px; order: 3; min-height: 220px; }

  .vehicle-grid{ grid-template-columns: 1fr 1fr; }
  .routes-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px){
  .hero-title{ font-size: 32px; }
  .hero-subtext{ font-size: 15px; }
  .hero-buttons{ flex-direction: column; gap: 12px; }
  .section-title{ font-size: 24px; }

  .estimate-card{
    padding: 22px;
  }
  .input-row{
    gap: 10px;
  }
  .vs-name{ font-size: 11px; }
  .vs-price{ font-size: 10px; }
  .vs-img{ height: 38px; }
  .trip-type-btn{ font-size: 11.5px; padding: 8px 6px; }
  .time-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
  }

  .time-inputs input {
    width: 46px;
    min-width: 46px;
    padding: 8px 6px;
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: none;
    font-size: 12px;
    background: var(--off-white);
    color: var(--text-dark);
    flex: 0 0 46px;
  }

  /* Ensure time input placeholder color on mobile matches desktop */
  .time-inputs input::placeholder{
    color: var(--text-dark);
    opacity: 1;
    background: var(--off-white);
  }

  .time-inputs select {
    width: 72px;
    min-width: 72px;
    padding: 8px 6px;
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: none;
    background: var(--off-white);
    font-size: 12px;
    flex: 0 0 72px;
  }

  /* Pickup (From / To) placeholders: small and in the same row */
  .pickup-row{
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .pickup-row .input-group{
    flex: 1 1 0;
    min-width: 0;
  }
  .pickup-row .input-group label{
    font-size: 10.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pickup-row .input-group select{
    padding: 8px 6px;
    font-size: 11px;
  }

  /* Taxi fleet: 2 small cards per row, full car image fitted in the space */
  .vehicle-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .vehicle-card{
    padding: 10px;
  }
  .vehicle-img{
    height: 90px;
    margin-bottom: 10px;
    background: var(--off-white);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .vehicle-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .vehicle-card h3{ font-size: 15px; margin-bottom: 3px; }
  .vehicle-specs{ font-size: 10.5px; margin-bottom: 6px; }
  .vehicle-price{ font-size: 16px; margin-bottom: 8px; }
  .vehicle-card .btn{ font-size: 12px; padding: 9px 10px; }
  .vehicle-card .btn + .btn{ margin-top: 8px; }

  .routes-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }

  .steps{ flex-direction: column; align-items:center; gap: 18px; }
  .step{ max-width: 220px; }
  .step-arrow{ display: none; }
  .journey-card{ text-align: center; align-items: center; }
  .journey-card-copy{ text-align: center; }

  /* Features: 2 per row, gap tightened */
  .feature-strip-inner{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 10px;
    padding: 18px 20px;
  }
  .feature-item{
    flex: 1 1 calc(50% - 10px);
    gap: 8px;
  }
  .feature-icon{
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .feature-item strong{ font-size: 12.5px; }
  .feature-item p{ font-size: 11px; }

  /* Testimonials: 2 per row */
  .testimonial-grid{
    gap: 12px;
  }
  .testimonial-card{
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 6px);
    min-width: 0;
    padding: 12px;
  }
  .testimonial-text{ font-size: 12px; min-height: 85px; margin-bottom: 12px; }
  .stars{ font-size: 12px; margin-bottom: 8px; }
  .avatar{ width: 34px; height: 34px; font-size: 12px; }
  .testimonial-author strong{ font-size: 12px; }
  .testimonial-author p{ font-size: 11px; }

  /* Footer: stack on small screens */
  .footer-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 30px;
  }
  .footer-brand{
    max-width: 100%;
  }
    .footer-col h4{
    margin-bottom: 2px;
    gap: 8px;
  }
   .footer-col a, .footer-col span{
    font-size: 13px;
    line-height: 1.35;
  }

  .footer-spacer{
    display: none;
  }
  .footer-inner{ padding-top: 10px; padding-bottom: 10px; }
  .footer-quicklinks-row{ column-gap: 16px; row-gap: 8px; }

  .footer-bottom{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

/* ============ SUB-PAGE BANNER (Vehicles / Services pages) ============ */
.page-banner{
  background: linear-gradient(180deg, rgba(15,30,61,0.97) 0%, rgba(15,30,61,0.90) 100%), url('Media/background.jpeg');
  background-size: cover;
  background-position: center;
  padding: 54px 0 46px;
}
.page-banner-title{
  color: var(--white);
  font-size: 38px;
  font-weight: 800;
  margin: 6px 0 14px;
}
.page-banner-sub{
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
}

/* ============ FARE / BILLING CARDS (vehicles.html) ============ */
.fare-section{
  background: var(--off-white);
  padding: 50px 0 60px;
}
.fare-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.fare-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fare-card-img{
  height: 170px;
  background: var(--off-white);
}
.fare-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fare-card-body{
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fare-card-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.fare-card-head h3{ font-size: 20px; }
.fare-card-price{
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--gold-dark);
  white-space: nowrap;
}
.fare-card-price small{ font-size: 12px; font-weight: 600; color: var(--text-gray); }

.billing-details{
  margin: 14px 0 4px;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.billing-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  gap: 10px;
}
.billing-row span{ color: var(--text-gray); }
.billing-row strong{ color: var(--navy); font-weight: 700; white-space: nowrap; }

.sample-calc{
  background: #fff8ea;
  border: 1px solid #f5dfa8;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 12px 0 16px;
}
.sample-calc-title{
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.sample-calc-line{
  font-size: 12px;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.sample-calc-total{
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-dark);
  margin-top: 6px;
}
.sample-calc-note{
  font-size: 10.5px;
  color: var(--text-gray);
  margin-top: 6px;
}
.fare-card-actions{ display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

.fare-info-box{
  background: var(--navy);
  border-radius: 16px;
  padding: 30px 32px;
  margin-top: 44px;
  color: var(--white);
}
.fare-info-box h3{ color: var(--gold); font-size: 19px; margin-bottom: 12px; }
.fare-formula{
  font-size: 13.5px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.fare-info-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fare-info-list li{
  list-style: none;
  padding-left: 22px;
  position: relative;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.fare-info-list li::before{
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ============ SERVICES FLOWCHART (services.html) ============ */
.flow-section{
  background: var(--white);
  padding: 54px 0 64px;
}
.flowchart{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-node{
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  text-align: center;
  width: 100%;
}
.flow-root{
  max-width: 260px;
  background: var(--navy);
  border-color: var(--navy);
}
.flow-root h3{ color: var(--white); font-size: 16px; margin: 6px 0 2px; }
.flow-root p{ color: rgba(255,255,255,0.7); font-size: 11.5px; }
.flow-root .flow-icon{ font-size: 26px; }

.flow-line-vertical{
  width: 2px;
  height: 34px;
  background: var(--gold);
}
.flow-line-horizontal{
  height: 2px;
  width: 88%;
  max-width: 980px;
  background: var(--gold);
}
.flow-branches{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 1100px;
  margin-top: 0;
}
.flow-branch{
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.flow-stub{
  width: 2px;
  height: 22px;
  background: var(--gold);
}
.flow-arrow{
  color: var(--gold-dark);
  font-size: 12px;
  margin-bottom: 6px;
}
.service-node{
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-node:hover{ transform: translateY(-6px); box-shadow: 0 14px 30px rgba(15,30,61,0.18); }
.service-node .flow-icon{ font-size: 26px; margin-bottom: 8px; }
.service-node h4{ font-size: 14.5px; margin-bottom: 8px; }
.service-node p{ font-size: 11.5px; color: var(--text-gray); line-height: 1.5; }

.flow-line-bottom{ margin-top: 4px; }
.flow-cta{ margin-top: 4px; }

.flow-cta-buttons{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
/* ============ RESPONSIVE ============ */

/* ---------- LARGE LAPTOP ---------- */
@media (max-width: 1200px){

  .container{
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-nav{
    gap: 24px;
  }

  .hero-inner{
    gap: 28px;
  }

  .hero-content{
    max-width: 500px;
  }

  .hero-title{
    font-size: 44px;
  }

  .estimate-card{
    width: 340px;
    margin-left: 0;
  }

  .vehicle-grid{
    gap: 20px;
  }

  .how-it-works-banner{
    gap: 18px;
  }

  .how-it-works-img{
    flex: 0 1 280px;
  }

  .journey-card{
    flex: 0 1 230px;
  }

  .contact-grid{
    gap: 20px;
  }

  .map-box{
    width: 100%;
  }

  .footer-inner{
    gap: 30px;
  }

  .footer-bottom{
    gap: 60px;
  }
}


/* ---------- TABLET / SMALL LAPTOP ---------- */
@media (max-width: 1024px){

  .container{
    padding-left: 20px;
    padding-right: 20px;
  }

  /* HEADER */
  .site-header{
    padding: 12px 0;
  }

  .main-nav{
    gap: 20px;
  }

  .nav-link{
    font-size: 13.5px;
  }

  /* HERO */
  .hero-inner{
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-content{
    max-width: 100%;
    padding-top: 10px;
  }

  .hero-title{
    font-size: 40px;
  }

  .estimate-card{
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  /* FEATURES */
  .feature-strip-inner{
    gap: 18px;
    padding: 20px;
  }

  .feature-item{
    flex: 1 1 220px;
  }

  /* VEHICLES */
  .vehicle-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* HOW IT WORKS */
  .how-it-works-banner{
    flex-wrap: wrap;
    gap: 24px;
  }

  .how-it-works-steps-col{
    flex: 1 1 100%;
  }

  .how-it-works-img{
    flex: 1 1 calc(55% - 12px);
    min-height: 250px;
  }

  .journey-card{
    flex: 1 1 calc(45% - 12px);
  }

  /* ROUTES */
  .routes-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* CONTACT */
  .contact-grid{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .map-box{
    grid-column: 1 / -1;
    width: 100%;
    min-height: 300px;
  }

  .map-box iframe{
    min-height: 300px;
  }

  /* FOOTER */
  .footer-top{
    gap: 20px;
  }

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

  .footer-brand p{
    white-space: normal;
    max-width: 100%;
  }

  .footer-inner{
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .footer-bottom{
    gap: 40px;
    flex-wrap: wrap;
  }
}


/* ---------- MOBILE NAV START ---------- */
@media (max-width: 900px){

  .site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-inner{
    position: relative;
  }

  .main-nav{
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;
    padding: 0 20px;

    background: var(--navy);

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transition:
      max-height .30s ease,
      opacity .20s ease,
      padding .20s ease,
      visibility .20s ease;

    box-shadow: 0 10px 20px rgba(0,0,0,.15);
  }

  .main-nav.open{
    max-height: 420px;
    padding: 10px 20px 18px;
    opacity: 1;
    visibility: visible;
  }

  .nav-link{
    width: 100%;
    padding: 11px 0;
    font-size: 14px;
  }

  .hamburger{
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 6px;
  }

  .hamburger span{
    width: 24px;
    height: 2px;
  }

  .book-now-btn{
    display: none;
  }

  /* HERO */
  .hero{
    padding-top: 0;
  }

  .hero-inner{
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .hero-title{
    font-size: 36px;
  }

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

  .estimate-card{
    max-width: 100%;
  }

  /* FEATURES */
  .feature-strip-inner{
    justify-content: center;
  }

  .feature-item{
    flex: 1 1 calc(50% - 18px);
  }

  /* HOW IT WORKS */
  .steps{
    gap: 12px;
  }

  .step-arrow{
    display: none;
  }

  .step-circle{
    width: 60px;
    height: 60px;
  }

  /* CONTACT */
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .map-box{
    grid-column: auto;
    width: 100%;
  }

  /* FOOTER */
  .footer-top{
    flex-direction: column;
  }

  .footer-brand{
    max-width: 100%;
  }

  .footer-spacer{
    display: none;
  }

  .footer-inner{
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}


/* ---------- MOBILE ---------- */
@media (max-width: 768px){

  .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  /* HEADER */
  .logo-icon img{
    width: 36px;
    height: 36px;
  }

  .logo-text{
    font-size: 13px;
  }

  .logo-text span{
    font-size: 9px;
    letter-spacing: 2px;
  }

  /* HERO */
  .hero-media{
    min-height: 100%;
    background-position: center;
  }

  .hero-overlay{
    background:
      linear-gradient(
        180deg,
        rgba(15,30,61,.93) 0%,
        rgba(15,30,61,.80) 55%,
        rgba(15,30,61,.70) 100%
      );
  }

  .hero-inner{
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 25px;
  }

  .hero-content{
    padding-top: 0;
  }

  .hero-title{
    font-size: 31px;
    line-height: 1.2;
    margin-top: 10px;
  }

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

  .hero-badge{
    margin-bottom: 16px;
  }

  .hero-buttons{
    gap: 10px;
  }

  .hero-buttons .btn{
    width: 100%;
  }

  /* ESTIMATE */
  .estimate-card{
    padding: 20px;
    border-radius: 12px;
  }

  .input-row,
  .date-time-row{
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  .input-row .input-group,
  .date-time-row .input-group{
    width: 100%;
    min-width: 0;
  }

  .date-time-row .input-group:first-child{
    flex: 1 1 auto;
  }

  .pickup-row{
    gap: 12px;
  }

  .time-inputs{
    width: 100%;
  }

  .time-inputs input{
    flex: 1 1 auto;
    min-width: 0;
  }

  .time-inputs select{
    flex: 1 1 auto;
    min-width: 0;
  }

  /* FEATURES */
  .feature-strip-inner{
    flex-direction: column;
    gap: 18px;
    padding: 20px 16px;
  }

  .feature-item{
    width: 100%;
    flex: 1 1 auto;
  }

  /* SECTION HEADINGS */
  .section-title{
    font-size: 27px;
  }

  .section-subtitle{
    font-size: 13px;
    margin-bottom: 28px;
  }

  /* VEHICLES */
  .vehicles-section{
    padding: 45px 0 40px;
  }

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

  .vehicle-img{
    height: 200px;
  }

  /* HOW IT WORKS */
  .how-it-works,
  .testimonials-section{
    padding: 38px 0;
  }

  .how-it-works-banner{
    flex-direction: column;
    gap: 20px;
  }

  .how-it-works-heading{
    font-size: 22px;
    margin-bottom: 18px;
  }

  .steps{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 12px;
  }

  .step-circle{
    width: 62px;
    height: 62px;
  }

  .step h4{
    font-size: 13px;
  }

  .step p{
    font-size: 11px;
  }

  .how-it-works-img{
    width: 100%;
    min-height: 230px;
    flex: none;
  }

  .journey-card{
    width: 100%;
    flex: none;
    padding: 22px;
  }

  /* TESTIMONIALS */
  .testimonial-grid{
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card{
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* ROUTES */
  .routes-section{
    padding: 40px 0;
  }

  .routes-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
  }

  .route-card{
    padding: 16px 8px;
    gap: 10px;
  }

  .route-icon{
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .route-card h4{
    font-size: 12px;
  }

  /* CONTACT */
  .contact-section{
    padding: 35px 0;
  }

  .contact-form,
  .contact-info{
    padding: 20px;
  }

  .info-item{
    gap: 12px;
  }

  .info-item p{
    font-size: 13px;
    word-break: break-word;
  }

  .map-box{
    min-height: 250px;
  }

  .map-box iframe{
    min-height: 280px;
  }

  /* FOOTER */
  .site-footer{
    padding-top: 25px;
    background-attachment: scroll;
  }

  .footer-brand{
    gap: 14px;
  }

  .footer-brand .logo{
    gap: 10px;
  }

  .footer-brand .logo-text{
    font-size: 16px;
  }

  .footer-brand .logo-text span{
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .footer-brand p{
    font-size: 11.5px;
    white-space: normal;
    max-width: 100%;
  }

  .footer-inner{
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 18px;
  }

  .footer-col{
    gap: 12px;
  }

  .footer-col h4{
    font-size: 15px;
  }

  .footer-col a,
  .footer-col span{
    font-size: 13px;
  }

  .footer-bottom{
    flex-direction: column;
    gap: 6px;
    padding: 14px 10px;
    text-align: center;
  }

  .footer-bottom span{
    white-space: normal;
    font-size: 11px;
    max-width: 100%;
  }

  /* FLOATING BUTTONS */
  #backToTop{
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 18px;
  }

  .call-fab{
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 68px;
  }
}


/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px){

  .container{
    padding-left: 14px;
    padding-right: 14px;
  }

  /* HEADER */
  .logo-text{
    font-size: 12px;
  }

  .logo-text span{
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .logo-icon img{
    width: 34px;
    height: 34px;
  }

  /* HERO */
  .hero-inner{
    padding-top: 24px;
    padding-bottom: 25px;
  }

  .hero-title{
    font-size: 27px;
  }

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

  .hero-badge{
    font-size: 11px;
  }

  /* BUTTONS */
  .btn{
    padding: 11px 18px;
    font-size: 13px;
  }

  /* ESTIMATE */
  .estimate-card{
    padding: 17px;
  }

  .estimate-card h3{
    font-size: 16px;
  }

  .estimate-sub{
    font-size: 11.5px;
  }

  .input-group input,
  .input-group select{
    font-size: 13px;
    padding: 9px 10px;
  }

  .time-inputs{
    gap: 6px;
  }

  .time-inputs input{
    padding: 9px 6px;
  }

  .time-inputs select{
    padding: 9px 6px;
  }

  /* FEATURES */
  .feature-icon{
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .feature-item strong{
    font-size: 13px;
  }

  .feature-item p{
    font-size: 11.5px;
  }

  /* SECTIONS */
  .section-title{
    font-size: 24px;
  }

  .section-subtitle{
    font-size: 12px;
  }

  /* VEHICLES */
  .vehicle-img{
    height: 175px;
  }

  .vehicle-card{
    padding: 14px;
  }

  .vehicle-card h3{
    font-size: 17px;
  }

  .vehicle-price{
    font-size: 18px;
  }

  /* HOW IT WORKS */
  .steps{
    grid-template-columns: 1fr 1fr;
    gap: 18px 8px;
  }

  .step-circle{
    width: 56px;
    height: 56px;
  }

  .step-icon{
    font-size: 19px;
  }

  .step-number{
    width: 20px;
    height: 20px;
    font-size: 9px;
  }

  .step h4{
    font-size: 12px;
  }

  .step p{
    font-size: 10.5px;
  }

  .how-it-works-img{
    min-height: 190px;
  }

  .journey-card-title{
    font-size: 17px;
  }

  .journey-card-copy{
    font-size: 11.5px;
  }

  /* ROUTES */
  .routes-grid{
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .route-card{
    padding: 14px 6px;
  }

  .route-icon{
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .route-card h4{
    font-size: 11.5px;
  }

  /* CONTACT */
  .contact-form,
  .contact-info{
    padding: 16px;
  }

  .info-item strong{
    font-size: 14px;
  }

  .info-item p{
    font-size: 12px;
  }

  .map-box iframe{
    min-height: 240px;
  }

  /* FOOTER */
  .footer-col h4{
    font-size: 14px;
  }

  .footer-col a,
  .footer-col span{
    font-size: 12px;
  }

  .footer-bottom span{
    font-size: 10px;
  }
}


/* ---------- VERY SMALL DEVICES ---------- */
@media (max-width: 360px){

  .container{
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-title{
    font-size: 24px;
  }

  .estimate-card{
    padding: 14px;
  }

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

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

  .footer-inner{
    gap: 20px;
  }
}


/* ---------- ACCESSIBILITY / TOUCH ---------- */
@media (hover: none){

  .vehicle-card:hover,
  .route-card:hover,
  #backToTop:hover,
  .call-fab:hover{
    transform: none;
  }
}


/* ---------- PREVENT HORIZONTAL OVERFLOW ---------- */
@media (max-width: 1024px){

  html,
  body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .header-inner,
  .hero-inner,
  .feature-strip-inner,
  .footer-inner,
  .footer-top{
    max-width: 100%;
  }

  .footer-brand p,
  .footer-bottom span{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .map-box,
  .map-box iframe{
    max-width: 100%;
  }
}


/* =====================================================================
   FINAL MOBILE OVERRIDES
   Consolidated, authoritative rules for small / medium / large phones
   (placed last so they win over the earlier, conflicting breakpoints
   above). Covers: mobile nav icon actions, 2-per-row grids (features,
   taxi fleet, testimonials), vertical "how it works" flowchart, the
   vehicles page fare cards, and the services page flowchart.
   ===================================================================== */

/* ---- Mobile icon-only Book Now / Call buttons in the nav bar ---- */
@media (max-width: 900px){
  .mobile-icon-actions{
    display: flex;
    margin-left: auto;
  }
  .header-inner{
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
  }
  .hamburger{
    margin-left: 0;
  }
}
@media (max-width: 480px){
  .mobile-icon-btn{
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .mobile-icon-actions{
    gap: 6px;
  }
}

/* ---- Shared mobile layout rules for small / medium / large phones ---- */
@media (max-width: 900px){

  /* Feature strip: Safe & Reliable / Best Prices / 24x7 / Wide Coverage
     -> 2 per row */
  .feature-strip-inner{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 10px;
  }
  .feature-item{
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  /* Our Taxi Fleet (home page) -> 2 cards per row */
  .vehicle-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .vehicle-card{
    padding: 12px;
  }
  .vehicle-img{
    height: 120px;
    margin-bottom: 10px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vehicle-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .vehicle-card h3{ font-size: 15px; margin-bottom: 3px; }
  .vehicle-specs{ font-size: 10.5px; margin-bottom: 6px; }
  .vehicle-price{ font-size: 16px; margin-bottom: 8px; }
  .vehicle-card .btn{ font-size: 12px; padding: 9px 8px; }
  .vehicle-card .btn + .btn{ margin-top: 6px; }

  /* How It Works -> vertical flowchart with visible down-arrows */
  .steps{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .step{
    max-width: 280px;
    width: 100%;
  }
  .step-arrow{
    display: block;
    margin: 2px 0 8px;
    font-size: 16px;
    color: rgba(15, 30, 61, 0.45);
    transform: rotate(90deg);
  }

  /* Testimonials -> 2 cards per row */
  .testimonial-grid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .testimonial-card{
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 6px);
    min-width: 0;
    width: auto;
    padding: 14px;
  }
  .testimonial-text{
    font-size: 12px;
    min-height: 92px;
    margin-bottom: 12px;
  }

  /* Vehicles page (vehicles.html) fare cards -> one after another, vertical */
  .fare-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Services page (services.html) flowchart -> stacked vertically */
  .flow-branches{
    flex-direction: column;
    align-items: center;
    gap: 22px;
    max-width: 380px;
    margin: 0 auto;
  }
  .flow-branch{ width: 100%; }
  .flow-node{ width: 100%; }
  .flow-line-horizontal{ display: none; }
  .flow-stub{ height: 20px; }
  .service-node{ min-height: unset; }

  .page-banner{ padding: 40px 0 34px; }
  .page-banner-title{ font-size: 26px; }
  .page-banner-sub{ font-size: 13px; }
}

/* Tablet-width transitional step for the fare cards, before they stack */
@media (min-width: 901px) and (max-width: 1100px){
  .fare-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Extra tightening for smaller phones (still 2 / row, less padding) ---- */
@media (max-width: 380px){
  .feature-item{
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
  .testimonial-card{
    padding: 10px;
  }
  .vehicle-img{
    height: 95px;
  }
}
