/* =========================================================
   Airport24x7 — Custom Design System
   Palette: warm white / deep charcoal / copper accent
   ========================================================= */

:root{
  --bg: #faf7f3;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --dark: #14161c;
  --dark-alt: #1c1f28;
  --copper: #c8763a;
  --copper-light: #e39a63;
  --copper-dark: #a85f2c;
  --text: #23252b;
  --text-muted: #6b6f76;
  --text-on-dark-muted: #b9bcc4;
  --border: #e8e1d6;

  --font-heading: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 50px -20px rgba(20,22,28,0.18);
  --shadow-copper: 0 16px 34px -12px rgba(200,118,58,0.55);
}

*{box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4,h5,h6{
  font-family:var(--font-heading);
  font-weight:700;
  letter-spacing:-0.02em;
  color:var(--text);
}

a{ text-decoration:none; color:inherit; }
img{max-width:100%; display:block;}

::selection{ background:var(--copper); color:#fff; }

.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--dark); color:#fff; padding:.75rem 1.25rem;
  z-index:2000; border-radius:0 0 10px 0;
}
.skip-link:focus{ left:0; top:0; }

/* ---------- Utility / Section basics ---------- */
.section-py{ padding-block: clamp(3.5rem, 6vw, 6.5rem); }
.bg-soft{ background:var(--bg-soft); }
.section-dark{ background:var(--dark); position:relative; }

.kicker{
  display:inline-flex; align-items:center;
  font-family:var(--font-heading); font-weight:700; font-size:.8rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--copper-dark);
  background:rgba(200,118,58,0.1); padding:.4rem .9rem; border-radius:50px;
  margin-bottom:1rem;
}
.kicker-light{ color:var(--copper-light); background:rgba(227,154,99,0.14); }

.section-title{
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom:1.25rem;
  line-height:1.15;
}
.section-lead{ color:var(--text-muted); font-size:1.05rem; line-height:1.75; }

.text-copper{ color:var(--copper) !important; }
.text-muted-light{ color:var(--text-on-dark-muted); }

/* ---------- Buttons ---------- */
.btn{ font-family:var(--font-heading); font-weight:600; }
.btn-copper{
  background:linear-gradient(135deg, var(--copper-light), var(--copper-dark));
  color:#fff; border:none;
  box-shadow:var(--shadow-copper);
  transition:transform .25s ease, box-shadow .25s ease;
}
.btn-copper:hover{ transform:translateY(-2px); box-shadow:0 20px 40px -14px rgba(200,118,58,0.65); color:#fff; }
.btn-outline-light{ border-width:2px; }
.btn-outline-light:hover{ background:#fff; color:var(--dark); }
.btn-outline-copper{
  border:2px solid var(--copper); color:var(--copper-dark); background:transparent;
}
.btn-outline-copper:hover{ background:var(--copper); color:#fff; }
.btn-dark{ background:var(--dark); border:none; }
.btn-dark:hover{ background:var(--copper-dark); }

/* ---------- Topbar ---------- */
.topbar{
  background:var(--dark); color:var(--text-on-dark-muted);
  font-size:.85rem;
}
.topbar-links i{ color:var(--copper); }

/* ---------- Header ---------- */
.site-header{
  background:rgba(250,247,243,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .3s ease, padding .3s ease;
  z-index:1030;
}
.site-header.scrolled{ box-shadow:0 8px 30px -18px rgba(0,0,0,.25); }

.brand-mark{
  font-family:var(--font-heading); font-weight:800; font-size:1.6rem;
  color:var(--dark); letter-spacing:-.02em;
}
.brand-mark .dot{ color:var(--copper); }
.brand-logo{ height:58px; width:auto; display:block; }
.footer-logo{ height:63px; width:auto; display:block; }
.brand-sub{
  display:block; font-size:.68rem; font-weight:500; color:var(--text-muted);
  letter-spacing:.04em; margin-top:2px;
}
.navbar-brand{ display:flex; flex-direction:column; line-height:1.1; }

.navbar-nav .nav-link{
  font-family:var(--font-heading); font-weight:600; color:var(--text);
  padding:.5rem 1rem !important; position:relative;
}
.navbar-nav .nav-link::after{
  content:""; position:absolute; left:1rem; right:1rem; bottom:.25rem; height:2px;
  background:var(--copper); transform:scaleX(0); transition:transform .25s ease;
  transform-origin:left;
}
.navbar-nav .nav-link:hover::after{ transform:scaleX(1); }

.nav-phone{
  display:flex; align-items:center; gap:.6rem; color:var(--text); font-weight:700;
}
.nav-phone i{
  width:40px; height:40px; border-radius:50%; background:rgba(200,118,58,0.1);
  display:flex; align-items:center; justify-content:center; color:var(--copper);
}
.nav-phone small{ display:block; font-weight:500; color:var(--text-muted); font-size:.72rem; }

.navbar-toggler{ border:none; font-size:1.6rem; color:var(--dark); }
.navbar-toggler:focus{ box-shadow:none; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; }
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(115deg, rgba(15,16,20,.92) 20%, rgba(15,16,20,.72) 55%, rgba(15,16,20,.35) 100%);
}
.hero-title{
  font-size:clamp(2.2rem, 4.6vw, 3.6rem);
  line-height:1.1;
  margin-bottom:1.25rem;
  color:#fff;
}
.hero-lead{
  font-size:1.1rem; color:rgba(255,255,255,.82); max-width:520px; margin-bottom:1.75rem;
}
.avatar-stack{ display:flex; }
.avatar-stack img{
  width:42px; height:42px; border-radius:50%; border:3px solid var(--dark);
  object-fit:cover; margin-left:-14px;
}
.avatar-stack img:first-child{ margin-left:0; }
.hero-trust .stars i{ font-size:.85rem; }

.section-curve{
  position:absolute; left:0; right:0; bottom:-1px; height:70px;
  background:var(--bg);
  border-radius:52% 48% 0 0 / 100% 100% 0 0;
  z-index:1;
}
.section-curve--top-light{
  position:absolute; top:-1px; bottom:auto; left:0; right:0; height:60px;
  background:var(--bg); border-radius:0 0 52% 48% / 0 0 100% 100%;
}
.section-curve--bottom-light{
  position:absolute; bottom:-1px; top:auto; left:0; right:0; height:60px;
  background:var(--bg); border-radius:52% 48% 0 0 / 100% 100% 0 0;
}

/* ---------- Booking Card ---------- */
.booking-card{
  background:var(--surface);
  border-radius:var(--radius-lg);
  padding:1.75rem;
  box-shadow:var(--shadow-soft);
}
.booking-tabs{ background:var(--bg); border-radius:50px; padding:.35rem; }
.booking-tabs .nav-link{
  border-radius:50px; font-family:var(--font-heading); font-weight:600;
  color:var(--text-muted); font-size:.92rem; padding:.6rem .5rem;
}
.booking-tabs .nav-link.active{
  background:var(--dark); color:#fff;
}
.booking-form label{ font-weight:600; font-size:.85rem; color:var(--text); margin-bottom:.35rem;}
.input-icon{ position:relative; }
.input-icon i{
  position:absolute; left:14px; top:50%; transform:translateY(-50%);
  color:var(--copper); font-size:1rem; pointer-events:none;
}
.input-icon .form-control, .input-icon .form-select{ padding-left:2.4rem; }
.form-control, .form-select{
  border-radius:12px; border:1.5px solid var(--border); padding:.65rem .9rem;
  background:var(--bg); font-size:.94rem;
}
.form-control:focus, .form-select:focus{
  border-color:var(--copper); box-shadow:0 0 0 4px rgba(200,118,58,0.12); background:#fff;
}
.form-note{ font-size:.78rem; color:var(--text-muted); margin:.85rem 0 0; text-align:center; }
/* ---------- Highlight Strip ---------- */
.highlight-strip {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.highlight-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: .5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  height: 100%;
  position: relative;
}

.highlight-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 56%;
  width: 1px;
  background: var(--border);
}

.highlight-strip .row > div:last-child .highlight-item::after {
  display: none;
}

.highlight-item .highlight-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,118,58,0.1);
  color: var(--copper);
  font-size: 1.4rem;
}

.highlight-item strong {
  display: block;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.highlight-item span {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}


/* ---------- Tablet ---------- */
@media (max-width: 991.98px) {
  .highlight-panel {
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .highlight-item {
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
  }

  .highlight-item::after {
    display: none;
  }
}


/* ---------- Mobile ---------- */
@media (max-width: 575.98px) {

  .highlight-strip {
    padding: 1.5rem 0;
  }

  .highlight-panel {
    width: 100%;
  }

  .highlight-panel .row {
    margin-left: -6px;
    margin-right: -6px;
    row-gap: 12px !important;
  }

  .highlight-panel .row > div {
    width: 50%;
    padding-left: 6px;
    padding-right: 6px;
  }

  .highlight-item {
    width: 100%;
    min-height: 100px;
    padding: 1rem .8rem;
    gap: .65rem;
    align-items: center;
  }

  .highlight-item .highlight-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .highlight-item strong {
    font-size: .9rem;
  }

  .highlight-item span {
    font-size: .7rem;
    line-height: 1.3;
  }
}


/* ---------- Very Small Phones ---------- */
@media (max-width: 380px) {

  .highlight-panel .row > div {
    width: 100%;
  }

  .highlight-item {
    min-height: auto;
    padding: .9rem 1rem;
  }

  .highlight-item .highlight-icon {
    width: 44px;
    height: 44px;
  }

  .highlight-item strong {
    font-size: .95rem;
  }

  .highlight-item span {
    font-size: .75rem;
  }
}
/* ---------- About ---------- */
.about-media{ position:relative; }
.about-media img{ box-shadow:var(--shadow-soft); }
.about-badge{
  position:absolute; bottom:-1.25rem; right:-1rem;
  background:var(--dark); color:#fff; border-radius:var(--radius-md);
  padding:1rem 1.25rem; display:flex; align-items:center; gap:.8rem;
  box-shadow:var(--shadow-soft);
}
.about-badge i{ font-size:1.6rem; color:var(--copper); }
.about-badge strong{ display:block; font-family:var(--font-heading); }
.about-badge span{ font-size:.78rem; color:var(--text-on-dark-muted); }

.stat-block{ font-family:var(--font-heading); }
.stat-block .counter{ font-size:1.9rem; font-weight:800; color:var(--copper-dark); }
.stat-block small{ display:block; color:var(--text-muted); font-size:.8rem; font-weight:500; }

/* ---------- Steps ---------- */
.step-card{
  background:var(--surface); border-radius:var(--radius-md); padding:2rem 1.75rem;
  height:100%; border:1px solid var(--border); transition:transform .3s ease, box-shadow .3s ease;
}
.step-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); }
.step-num{
  display:inline-block; font-family:var(--font-heading); font-weight:800; font-size:1.6rem;
  color:var(--copper); margin-bottom:.6rem;
}
.step-card h5{ margin-bottom:.6rem; }
.step-card p{ color:var(--text-muted); margin:0; font-size:.94rem; }

.pill-chip{
  background:var(--surface); border:1px solid var(--border); border-radius:50px;
  padding:.55rem 1.1rem; font-weight:600; font-size:.88rem; color:var(--text);
}
.pill-chip--dark{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.16); color:#fff; }

/* ---------- Route Cards ---------- */
.route-card{
  background:var(--surface); border-radius:var(--radius-lg); overflow:hidden;
  height:100%; border:1px solid var(--border); transition:transform .3s ease, box-shadow .3s ease;
}
.route-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); }
.route-card-img{ position:relative; aspect-ratio:16/10; overflow:hidden; }
.route-card-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.route-card:hover .route-card-img img{ transform:scale(1.07); }
.route-card-body{ padding:1.5rem 1.75rem 1.75rem; }
.route-card-top{ display:flex; align-items:center; gap:.7rem; margin-bottom:1.1rem; }
.route-card-top i{
  width:46px; height:46px; border-radius:50%; background:rgba(200,118,58,.12);
  color:var(--copper-dark); display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.route-card-top h4{ margin:0; font-size:1.25rem; }
.route-list{ list-style:none; padding:0; margin:0 0 1.25rem; }
.route-list li{
  display:flex; justify-content:space-between; padding:.55rem 0;
  border-bottom:1px dashed var(--border); font-size:.9rem;
}
.route-list li:last-child{ border-bottom:none; }
.route-list span{ color:var(--text-muted); }
.route-list strong{ color:var(--copper-dark); font-family:var(--font-heading); }
.route-cta{
  font-family:var(--font-heading); font-weight:700; color:var(--dark);
  display:inline-flex; align-items:center; gap:.4rem;
}
.route-cta i{ transition:transform .25s ease; }
.route-cta:hover i{ transform:translateX(4px); }

/* ---------- Fleet ---------- */
.fleet-card{
  background:var(--dark-alt); border-radius:var(--radius-lg); overflow:hidden;
  height:100%; border:1px solid rgba(255,255,255,.06);
  transition:transform .35s ease, box-shadow .35s ease;
}
.fleet-card:hover{ transform:translateY(-8px); box-shadow:0 30px 60px -24px rgba(0,0,0,.55); }
.fleet-img{ position:relative; aspect-ratio: 4/3; overflow:hidden; }
.fleet-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.fleet-card:hover .fleet-img img{ transform:scale(1.07); }
.fleet-tag{
  position:absolute; top:1rem; left:1rem; background:var(--copper); color:#fff;
  font-size:.72rem; font-weight:700; padding:.35rem .8rem; border-radius:50px;
  text-transform:uppercase; letter-spacing:.05em;
}
.fleet-body{ padding:1.5rem; color:#fff; }
.fleet-body h4{ color:#fff; margin-bottom:.15rem; }
.fleet-specs{ display:flex; gap:1.25rem; margin-top:1rem; font-size:.88rem; color:var(--text-on-dark-muted); }
.fleet-specs i{ color:var(--copper); margin-right:.35rem; }

/* ---------- Services ---------- */
.service-card{
  background:var(--surface); border-radius:var(--radius-md); padding:2rem 1.75rem;
  height:100%; border:1px solid var(--border); transition:transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); border-color:transparent; }
.service-icon{
  width:58px; height:58px; border-radius:16px; background:rgba(200,118,58,.12);
  color:var(--copper-dark); display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:1.1rem;
}
.service-card h5{ margin-bottom:.6rem; }
.service-card p{ color:var(--text-muted); margin:0; font-size:.94rem; }

/* ---------- Why Choose ---------- */
.why-item{
  background:var(--surface); border-radius:var(--radius-md); padding:1.5rem;
  height:100%; box-shadow:var(--shadow-soft);
}
.why-item i{ font-size:1.5rem; color:var(--copper); margin-bottom:.7rem; display:inline-block; }
.why-item h6{ font-family:var(--font-heading); margin-bottom:.4rem; }
.why-item p{ color:var(--text-muted); font-size:.88rem; margin:0; }

.check-list{ list-style:none; padding:0; margin:0; }
.check-list li{ display:flex; align-items:flex-start; gap:.7rem; margin-bottom:.8rem; color:var(--text); }
.check-list i{ color:var(--copper); margin-top:.2rem; }

/* ---------- Flight Card ---------- */
.flight-card{
  background:var(--dark); color:#fff; border-radius:var(--radius-lg);
  padding:1.9rem; box-shadow:var(--shadow-soft);
}
.flight-card-head{
  display:flex; justify-content:space-between; align-items:center;
  font-family:var(--font-heading); font-weight:700; margin-bottom:1.75rem; font-size:1.1rem;
}
.status-badge{
  background:rgba(120,200,140,.16); color:#7ddb96; font-size:.75rem; font-weight:700;
  padding:.35rem .8rem; border-radius:50px;
}
.flight-route{ display:flex; align-items:center; justify-content:space-between; margin-bottom:1rem; }
.flight-route strong{ display:block; font-family:var(--font-heading); font-size:1.3rem; }
.flight-route small{ color:var(--text-on-dark-muted); }
.flight-icon{ font-size:1.4rem; color:var(--copper); transform:rotate(90deg); }
.flight-progress{ height:6px; background:rgba(255,255,255,.12); border-radius:50px; margin-bottom:1.5rem; }
.flight-progress .progress-bar{ background:var(--copper); }
.flight-meta{ display:flex; justify-content:space-between; text-align:center; }
.flight-meta small{ display:block; color:var(--text-on-dark-muted); font-size:.72rem; margin-bottom:.2rem; }
.flight-meta strong{ font-family:var(--font-heading); }

/* ---------- Reviews ---------- */
.review-card{
  background:var(--surface); border-radius:var(--radius-md); padding:1.9rem;
  height:100%; border:1px solid var(--border);
}
.review-card p{ color:var(--text); font-style:italic; margin-bottom:1.5rem; min-height:90px; }
.review-author{ display:flex; align-items:center; gap:.8rem; }
.review-author img{ width:46px; height:46px; border-radius:50%; object-fit:cover; }
.review-author strong{ display:block; font-family:var(--font-heading); font-size:.92rem; }
.review-author small{ color:var(--text-muted); }
.carousel-dots{ display:flex; justify-content:center; gap:.5rem; margin-top:2rem; }
.carousel-dots button{
  width:10px; height:10px; border-radius:50%; border:none; background:var(--border); padding:0;
}
.carousel-dots button.active{ background:var(--copper); }

/* ---------- Stats Band ---------- */
.stats-band{
  background:var(--dark); color:#fff; padding: clamp(3rem, 5vw, 5rem) 0;
  position:relative;
}
.stat-big{ font-family:var(--font-heading); font-weight:800; font-size:clamp(2.2rem,4vw,3rem); color:var(--copper); }
.stat-small{ font-size:1.4rem; color:var(--text-on-dark-muted); }
.stats-band p{ color:var(--text-on-dark-muted); margin:.3rem 0 0; font-weight:500; }

/* ---------- CTA / App band ---------- */
.cta-band{ background:linear-gradient(160deg, var(--dark) 0%, var(--dark-alt) 100%); color:#fff; }
.mini-feature{
  background:rgba(255,255,255,.06); border-radius:var(--radius-sm); padding:1rem .8rem;
  text-align:center; font-size:.82rem; font-weight:600; color:#fff; height:100%;
}
.mini-feature i{ display:block; font-size:1.3rem; color:var(--copper); margin-bottom:.5rem; }
.store-badge{
  display:flex; align-items:center; gap:.6rem; border:1.5px solid rgba(255,255,255,.25);
  border-radius:12px; padding:.55rem 1rem; color:#fff; font-size:.72rem;
}
.store-badge i{ font-size:1.5rem; }
.store-badge strong{ display:block; font-size:.92rem; }

.process-card{
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg); padding:.5rem 1.75rem;
}
.process-step{
  display:flex; align-items:flex-start; gap:1.25rem;
  padding:1.4rem 0; border-bottom:1px solid rgba(255,255,255,.08);
}
.process-step:last-child{ border-bottom:none; }
.process-num{
  font-family:var(--font-heading); font-weight:800; font-size:1.5rem;
  color:var(--copper); flex-shrink:0; width:2.2rem; line-height:1;
}
.process-step h6{ color:#fff; font-family:var(--font-heading); margin-bottom:.35rem; }
.process-step p{ color:var(--text-on-dark-muted); font-size:.88rem; margin:0; }

/* ---------- Contact ---------- */
.contact-panel{
  background:var(--surface); border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.contact-info-col{ background:var(--dark); padding:3rem 2.5rem; }
.contact-form-col{ padding:3rem 2.5rem; }
.contact-line{ display:flex; align-items:center; gap:.8rem; margin-bottom:1rem; color:#fff; }
.contact-line i{
  width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; color:var(--copper);
}
.contact-line a{ color:#fff; font-weight:600; }
.social-row{ display:flex; gap:.7rem; }
.social-row a{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; color:#fff; transition:background .2s ease;
}
.social-row a:hover{ background:var(--copper); }
.form-success{ color:#2f9e52; font-weight:600; font-size:.9rem; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--dark); color:var(--text-on-dark-muted); }
.footer-heading{ color:#fff; font-family:var(--font-heading); margin-bottom:1.1rem; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin-bottom:.7rem; font-size:.92rem; }
.footer-links a{ color:var(--text-on-dark-muted); transition:color .2s ease; }
.footer-links a:hover{ color:var(--copper); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.08); font-size:.85rem; }
.footer-legal a{ margin-left:1.25rem; color:var(--text-on-dark-muted); }
.footer-legal a:hover{ color:var(--copper); }

/* ---------- Back to top ---------- */
.back-to-top{
  position:fixed; right:1.5rem; bottom:1.5rem; width:48px; height:48px; border-radius:50%;
  background:var(--dark); color:#fff; border:none; display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:all .3s ease; z-index:1000; box-shadow:var(--shadow-soft);
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--copper); }

/* ---------- Scroll reveal ---------- */
[data-reveal]{
  opacity:0; transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed{ opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}




/* =========================================
   PAGE BANNER - RESPONSIVE
   ========================================= */

.page-banner {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 1rem 6rem;
}

.page-banner .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-banner .hero-overlay {
  position: absolute;
  inset: 0;
}

.page-banner > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  max-width: 1000px;
  margin: .8rem auto 1rem;
}

.breadcrumb-nav {
  justify-content: center;
  margin-bottom: 0;
}

.breadcrumb-nav .breadcrumb-item,
.breadcrumb-nav .breadcrumb-item a {
  color: rgba(255,255,255,.7);
  font-weight: 600;
  font-size: .9rem;
}

.breadcrumb-nav .breadcrumb-item.active {
  color: var(--copper-light);
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.4);
  content: "/";
}


/* =========================================
   DESKTOP CURVE
   ========================================= */

.page-banner .section-curve {
  position: absolute;
  left: -5%;
  bottom: -90px;
  width: 110%;
  height: 150px;
  background: var(--bg);
  border-radius: 50% 50% 0 0;
  z-index: 3;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991.98px) {

  .page-banner {
    min-height: 400px;
    padding: 4rem 1rem 5rem;
  }

  .page-banner h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    max-width: 800px;
  }

  .page-banner .section-curve {
    bottom: -60px;
    height: 100px;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767.98px) {

  .page-banner {
    min-height: 340px;
    height: auto;
    padding: 4rem 1rem 4.5rem;
  }

  .page-banner h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.12;
    max-width: 100%;
    margin: .8rem auto 1rem;
  }

  .page-banner .kicker {
    font-size: .7rem;
    padding: .45rem .8rem;
  }

  .breadcrumb-nav .breadcrumb-item,
  .breadcrumb-nav .breadcrumb-item a {
    font-size: .75rem;
  }

  /* Remove curve on mobile */
  .page-banner .section-curve {
    display: none !important;
  }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

  .page-banner {
    min-height: 320px;
    padding: 3.5rem .9rem 3.5rem;
  }

  .page-banner h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  /* Hide breadcrumb on very small screens */
  .breadcrumb-nav {
    display: none;
  }

  .page-banner .kicker {
    font-size: .65rem;
  }
}
/* ---------- Page Banner (inner pages) ---------- 
.page-banner{
  position:relative; min-height:44vh; display:flex; align-items:center;
  overflow:hidden; padding-top: 2rem;
}
.page-banner .hero-bg img{ width:100%; height:100%; object-fit:cover; }
.breadcrumb-nav{ justify-content:center; margin-bottom:0; }
.breadcrumb-nav .breadcrumb-item, .breadcrumb-nav .breadcrumb-item a{
  color:rgba(255,255,255,.7); font-weight:600; font-size:.9rem;
}
.breadcrumb-nav .breadcrumb-item.active{ color:var(--copper-light); }
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before{
  color:rgba(255,255,255,.4); content:"/";
}
.page-banner h1{ color:#fff; font-size:clamp(2rem,4vw,3rem); margin-bottom:.75rem; }
---*/
/* ---------- Blog ---------- */
.blog-card{
  background:var(--surface); border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--border); height:100%;
  transition:transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); }
.blog-card-img{ position:relative; aspect-ratio: 16/10; overflow:hidden; }
.blog-card-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.blog-card:hover .blog-card-img img{ transform:scale(1.07); }
.blog-category{
  position:absolute; top:1rem; left:1rem; background:var(--copper); color:#fff;
  font-size:.7rem; font-weight:700; padding:.3rem .75rem; border-radius:50px;
  text-transform:uppercase; letter-spacing:.05em;
}
.blog-card-body{ padding:1.5rem; }
.blog-meta{ display:flex; gap:1rem; font-size:.78rem; color:var(--text-muted); margin-bottom:.7rem; }
.blog-meta i{ color:var(--copper); margin-right:.3rem; }
.blog-card-body h5{ margin-bottom:.7rem; font-size:1.1rem; }
.blog-card-body p{ color:var(--text-muted); font-size:.9rem; margin-bottom:1rem; }
.blog-readmore{ font-family:var(--font-heading); font-weight:700; color:var(--copper-dark); display:inline-flex; align-items:center; gap:.4rem; }
.blog-readmore i{ transition:transform .25s ease; }
.blog-readmore:hover i{ transform:translateX(4px); }

.sidebar-widget{
  background:var(--surface); border-radius:var(--radius-md); padding:1.5rem;
  border:1px solid var(--border); margin-bottom:1.5rem;
}
.sidebar-widget h6{ font-family:var(--font-heading); margin-bottom:1.1rem; padding-bottom:.8rem; border-bottom:2px solid var(--border); }
.sidebar-cat-list{ list-style:none; padding:0; margin:0; }
.sidebar-cat-list li{ display:flex; justify-content:space-between; padding:.6rem 0; border-bottom:1px dashed var(--border); font-size:.92rem; }
.sidebar-cat-list li:last-child{ border-bottom:none; }
.sidebar-cat-list a{ color:var(--text); font-weight:500; }
.sidebar-cat-list a:hover{ color:var(--copper-dark); }
.sidebar-cat-list span{ background:var(--bg); border-radius:50px; padding:.05rem .6rem; font-size:.78rem; color:var(--text-muted); }
.sidebar-post{ display:flex; gap:.8rem; margin-bottom:1rem; }
.sidebar-post img{ width:64px; height:64px; border-radius:10px; object-fit:cover; flex-shrink:0; }
.sidebar-post h6{ font-size:.86rem; margin:0 0 .3rem; border:none; padding:0; font-weight:700; }
.sidebar-post small{ color:var(--text-muted); }
.sidebar-tags{ display:flex; flex-wrap:wrap; gap:.5rem; }
.sidebar-tags a{
  background:var(--bg); border-radius:50px; padding:.35rem .85rem; font-size:.8rem;
  color:var(--text); font-weight:500;
}
.sidebar-tags a:hover{ background:var(--copper); color:#fff; }
.newsletter-widget{ background:var(--dark); color:#fff; }
.newsletter-widget h6{ color:#fff; border-color:rgba(255,255,255,.12); }
.newsletter-widget p{ color:var(--text-on-dark-muted); font-size:.88rem; }

/* ---------- Fleet detail (fleet.html) ---------- */
.fleet-detail-card{
  background:var(--surface); border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--border); height:100%;
}
.fleet-detail-img{ aspect-ratio:16/10; overflow:hidden; }
.fleet-detail-img img{ width:100%; height:100%; object-fit:cover; }
.fleet-detail-body{ padding:1.75rem; }
.fleet-feature-list{ list-style:none; padding:0; margin:1rem 0; }
.fleet-feature-list li{ display:flex; align-items:center; gap:.6rem; font-size:.9rem; color:var(--text-muted); margin-bottom:.5rem; }
.fleet-feature-list i{ color:var(--copper); }

.table-fleet{ background:var(--surface); border-radius:var(--radius-md); overflow:hidden; }
.table-fleet th{ font-family:var(--font-heading); background:var(--dark); color:#fff; font-weight:700; border:none; }
.table-fleet td{ vertical-align:middle; border-color:var(--border); }

/* ---------- Accordion (FAQ) ---------- */
.accordion-item{ border:1px solid var(--border); border-radius:var(--radius-sm) !important; overflow:hidden; margin-bottom:1rem; }
.accordion-button{
  font-family:var(--font-heading); font-weight:700; color:var(--text);
  background:var(--surface); box-shadow:none !important;
}
.accordion-button:not(.collapsed){ background:rgba(200,118,58,0.08); color:var(--copper-dark); }
.accordion-button::after{ filter:hue-rotate(0deg); }
.accordion-button:focus{ box-shadow:none; border-color:var(--border); }
.accordion-body{ color:var(--text-muted); font-size:.94rem; }

/* ---------- Pagination ---------- */
.pagination .page-link{ color:var(--text); border-color:var(--border); font-weight:600; }
.pagination .page-item.active .page-link{ background:var(--copper); border-color:var(--copper); }
.pagination .page-link:hover{ color:var(--copper-dark); }

/* ---------- Contact page: map placeholder ---------- */
.map-placeholder{
  background:var(--bg-soft); border-radius:var(--radius-md); min-height:280px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  color:var(--text-muted); border:1px dashed var(--border); text-align:center; padding:2rem;
}
.map-placeholder i{ font-size:2.2rem; color:var(--copper); margin-bottom:.75rem; }

.office-card{
  background:var(--surface); border-radius:var(--radius-md); padding:1.5rem;
  border:1px solid var(--border); height:100%;
}
.office-card i{ font-size:1.4rem; color:var(--copper); margin-bottom:.6rem; display:inline-block; }
.office-card h6{ font-family:var(--font-heading); margin-bottom:.4rem; }
.office-card p{ color:var(--text-muted); font-size:.88rem; margin:0; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px){
  .hero{ min-height:auto; padding-top:2rem; padding-bottom:4rem; }
  .page-banner{ min-height:32vh; }
  .contact-info-col, .contact-form-col{ padding:2.25rem 1.5rem; }
  .about-badge{ position:static; margin-top:1rem; display:inline-flex; }
}

@media (max-width: 575.98px){
  .booking-card{ padding:1.25rem; }
  .hero-title{ font-size:2rem; }
  .process-card{ padding:.25rem 1.25rem; }
  .fleet-body{ padding:1.25rem; }
}
/* now add extra css */
/* =========================
   MOBILE HERO - FORM ONLY
   ========================= */
@media (max-width: 767.98px) {

  /* Hide hero text/content */
  #home .col-lg-6:first-child {
    display: none !important;
  }

  /* Make booking form full width */
  #home .col-lg-6:last-child {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Remove unnecessary top spacing */
  #home .container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  #home .row {
    padding-top: 0 !important;
  }

  /* Make form comfortable on mobile */
  #home .booking-card {
    width: 100%;
    margin: 0 auto;
  }
}