/* Reliable Airport Service — Complete Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --dark:    #0a0f1e;
  --dark2:   #111827;
  --dark3:   #1e293b;
  --gold:    #c9a84c;
  --gold2:   #e2c77a;
  --white:   #ffffff;
  --light:   #f8fafc;
  --gray:    #64748b;
  --border:  #e2e8f0;
  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark3);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───── BUTTONS ───── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: var(--radius); border: none;
  cursor: pointer; transition: var(--transition);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: var(--radius); border: 2px solid rgba(255,255,255,.4);
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ───── TOP BAR ───── */
.top-bar {
  background: var(--dark);
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,168,76,.25);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-links { display: flex; gap: 24px; }
.top-bar-links a {
  color: rgba(255,255,255,.75); font-size: 13px;
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.top-bar-links a:hover { color: var(--gold); }
.top-bar-links i { color: var(--gold); font-size: 12px; }
.top-bar-right { font-size: 12px; color: rgba(255,255,255,.4); }

/* ───── NAV ───── */
.navbar {
  background: rgba(10,15,30,.97);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-menu a {
  color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius); transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); background: rgba(201,168,76,.1); }
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  font-weight: 700 !important; padding: 10px 22px !important;
}
.nav-cta:hover { background: var(--gold2) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ───── STATUS BANNERS ───── */
.status-banner { padding: 14px; text-align: center; font-size: 15px; font-weight: 600; display: none; }
.status-banner.show { display: block; }
.status-banner.success { background: #d1fae5; color: #065f46; }
.status-banner.error   { background: #fee2e2; color: #991b1b; }

/* ───── HERO ───── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/banner-bg-1.jpg') center/cover no-repeat;
  opacity: .32;
  animation: slowzoom 22s ease-in-out infinite alternate;
}
@keyframes slowzoom { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(10,15,30,.92) 0%, rgba(10,15,30,.55) 100%);
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 430px;
  gap: 60px; align-items: center;
  padding-top: 40px; padding-bottom: 40px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .6px;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 58px); font-weight: 800;
  color: var(--white); line-height: 1.14; margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,.72); font-size: 17px; margin-bottom: 32px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Form Card */
.hero-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; box-shadow: 0 32px 90px rgba(0,0,0,.45);
}
.hero-form h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.hero-form .form-sub { font-size: 13px; color: var(--gray); margin-bottom: 22px; }
.hero-form .form-sub strong { color: var(--gold); }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--dark3); margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 13.5px; color: var(--dark);
  background: var(--white); outline: none; transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.14); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group textarea { resize: vertical; min-height: 72px; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--dark);
  border: none; border-radius: var(--radius);
  padding: 14px; font-size: 15px; font-weight: 700;
  font-family: 'Poppins', sans-serif; cursor: pointer; transition: var(--transition);
  margin-top: 6px;
}
.form-submit:hover { background: var(--gold2); transform: translateY(-1px); }
.form-note { font-size: 11px; color: var(--gray); text-align: center; margin-top: 10px; }

/* ───── TRUST STATS ───── */
.trust-bar { background: var(--gold); padding: 22px 0; }
.trust-bar .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center;
}
.trust-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--dark); line-height: 1; }
.trust-stat span { font-size: 12px; font-weight: 600; color: rgba(10,15,30,.68); text-transform: uppercase; letter-spacing: .5px; }

/* ───── SECTION HELPERS ───── */
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold); font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 14px;
}
.section-title { font-size: clamp(26px,3vw,38px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-title span { color: var(--gold); }
.section-text { color: var(--gray); font-size: 15px; margin-bottom: 14px; }

/* ───── ABOUT ───── */
.about { padding: 100px 0; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-features { list-style: none; margin: 20px 0 28px; }
.about-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--dark3); margin-bottom: 11px;
}
.about-features li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; max-height: 480px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); border-radius: var(--radius-lg);
  padding: 24px 28px; text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge strong { display: block; font-size: 38px; font-weight: 800; color: var(--dark); line-height: 1; }
.about-badge span { font-size: 12px; font-weight: 600; color: rgba(10,15,30,.65); }

/* ───── SERVICES ───── */
.services { padding: 100px 0; background: var(--light); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px 24px; text-align: center;
  border: 1px solid var(--border); transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-icon {
  width: 62px; height: 62px;
  background: rgba(201,168,76,.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 26px; color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--dark); }
.service-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--gray); line-height: 1.65; }

/* ───── TESTIMONIALS ───── */
.testimonials { padding: 100px 0; background: var(--dark); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-title { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 34px 28px; transition: var(--transition);
}
.testimonial-card:hover { background: rgba(201,168,76,.08); border-color: rgba(201,168,76,.3); }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.8;
  font-style: italic; margin-bottom: 22px;
}
.testimonial-author { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; }
.testimonial-author strong { display: block; color: var(--white); font-size: 14px; font-weight: 600; }
.testimonial-author span { font-size: 12px; color: var(--gold); }

/* ───── POPULAR ROUTES ───── */
.routes { padding: 100px 0; }
.routes-header { text-align: center; margin-bottom: 50px; }
.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
.route-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; transition: var(--transition);
}
.route-card:hover { border-color: var(--gold); background: rgba(201,168,76,.04); transform: translateY(-3px); }
.route-from { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 4px; }
.route-city { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.route-arrow { font-size: 18px; color: var(--gold); margin-bottom: 6px; }
.route-price { font-size: 24px; font-weight: 800; color: var(--gold); }
.route-time { font-size: 12px; color: var(--gray); margin-top: 3px; }
.routes-cta { text-align: center; }

/* ───── CTA ───── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 80px 0; text-align: center;
}
.cta-section h2 { font-size: clamp(26px,3vw,38px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-phone { color: var(--gold); font-size: 22px; font-weight: 700; }

/* ───── CONTACT SECTION ───── */
.contact-section { padding: 100px 0; background: var(--light); }
.contact-section .section-header { text-align: center; margin-bottom: 56px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-card {
  background: var(--dark); border-radius: var(--radius-lg);
  padding: 48px 40px; color: var(--white);
}
.contact-info-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.contact-detail-icon {
  width: 46px; height: 46px; background: rgba(201,168,76,.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 17px; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text p { color: var(--white); font-size: 15px; font-weight: 600; }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px 40px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-form-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.contact-form-card > p { color: var(--gray); font-size: 14px; margin-bottom: 28px; }

/* ───── FOOTER ───── */
.footer { background: var(--dark); padding: 80px 0 0; border-top: 1px solid rgba(201,168,76,.2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 56px; }
.footer-about p { color: rgba(255,255,255,.58); font-size: 13.5px; margin: 16px 0 22px; line-height: 1.8; }
.footer-logo img { height: 48px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-items a {
  color: rgba(255,255,255,.6); font-size: 13px;
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.footer-contact-items a:hover { color: var(--gold); }
.footer-contact-items i { color: var(--gold); width: 14px; }
.footer-col h4 {
  color: var(--white); font-size: 14px; font-weight: 700;
  margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,.58); font-size: 13px; transition: var(--transition);
  display: flex; align-items: center; gap: 0;
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,.38); font-size: 13px; }

/* ───── PAGE HERO (inner pages) ───── */
.page-hero {
  background: var(--dark); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201,168,76,.18) 0%, transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, transparent 60%),
    repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(201,168,76,.03) 14px, rgba(201,168,76,.03) 15px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px,4vw,46px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 16px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 14px; font-size: 13px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ───── RATES PAGE ───── */
.rates-section { padding: 80px 0; }
.rates-intro { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.rates-intro p { color: var(--gray); font-size: 15px; margin-top: 10px; }
.rates-search-wrap { max-width: 460px; margin: 0 auto 44px; position: relative; }
.rates-search-wrap input {
  width: 100%; padding: 14px 20px 14px 48px;
  border: 2px solid var(--border); border-radius: 100px;
  font-family: 'Poppins', sans-serif; font-size: 14px;
  outline: none; transition: var(--transition);
}
.rates-search-wrap input:focus { border-color: var(--gold); }
.rates-search-wrap i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--gray); }
.rates-table-block {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 44px;
}
.rates-block-title {
  background: var(--dark); color: var(--white);
  padding: 16px 26px; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.rates-block-title .badge {
  background: var(--gold); color: var(--dark);
  font-size: 11px; padding: 3px 10px; border-radius: 100px; font-weight: 700;
}
.rates-table { width: 100%; border-collapse: collapse; }
.rates-table thead th {
  background: var(--light); padding: 13px 22px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--dark3); text-align: left; border-bottom: 2px solid var(--border);
}
.rates-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.rates-table tbody tr:hover { background: rgba(201,168,76,.04); }
.rates-table tbody tr:last-child { border-bottom: none; }
.rates-table td { padding: 12px 22px; font-size: 14px; color: var(--dark3); }
.rates-table td:first-child { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: .5px; }
.rates-table td:nth-child(3) { font-weight: 800; color: var(--gold); font-size: 15px; }
.rates-table td:nth-child(4) { color: var(--gray); font-size: 13px; }
.rates-table tr.hidden { display: none; }
.rates-notes {
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius); padding: 24px 28px; margin-bottom: 40px;
}
.rates-notes h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.rates-notes ul { list-style: none; }
.rates-notes ul li {
  font-size: 13.5px; color: var(--gray); margin-bottom: 7px;
  padding-left: 18px; position: relative;
}
.rates-notes ul li::before { content: '★'; color: var(--gold); position: absolute; left: 0; font-size: 10px; top: 3px; }

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-form { max-width: 520px; margin: 0 auto; }
  .about .container { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: 10px; right: 10px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .routes-grid { grid-template-columns: repeat(2,1fr); }
  .trust-bar .container { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  /* Generic 2-col grids on inner pages (services, city pages, reviews CTA, etc.) */
  section[style*="grid-template-columns:1fr 1fr"] > div[style*="display:grid"],
  section[style*="grid-template-columns:1.5fr 1fr"] > div[style*="display:grid"] { grid-template-columns: 1fr !important; gap: 32px !important; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 18px; }
  .top-bar .container { justify-content: center; }
  .top-bar-right { display: none; }
  .top-bar-links { flex-wrap: wrap; justify-content: center; gap: 10px 16px; font-size: 12px; }
  .navbar .nav-inner { padding: 12px 0; }
  .hamburger { display: flex; }
  .nav-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: var(--dark); flex-direction: column;
    padding: 20px; gap: 4px; box-shadow: 0 20px 40px rgba(0,0,0,.4);
    z-index: 200; max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 16px; display: block; font-size: 15px; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .page-hero { padding: 56px 0; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 14px; }
  .breadcrumb { font-size: 12px; flex-wrap: wrap; }
  .section-title { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-about, .footer-col { text-align: center; }
  .footer-contact-items { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form-card { padding: 32px 24px; }

  /* All inner pages — 2-column layouts stack vertically */
  section > .container > div[style*="grid-template-columns:1.5fr 1fr"],
  section > .container > div[style*="grid-template-columns:1fr 1.6fr"],
  section > .container > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
  /* Reviews masonry - single column on mobile */
  .reviews-masonry { columns: 1 !important; }
  /* Services pricing cards - single column */
  section > .container > div[style*="repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  /* City tile groups - 1 column */
  section > .container > div[style*="repeat(auto-fill"] { gap: 10px !important; }
  /* CTA section heading */
  section[style*="text-align:center"] h2 { font-size: 26px !important; line-height: 1.3; }
  /* Inner section padding tighter */
  section[style*="padding:80px 0"] { padding: 48px 0 !important; }
  section[style*="padding:64px 0"] { padding: 40px 0 !important; }
  /* Service feature cards inside dark hero - smaller padding */
  div[style*="background:var(--dark)"][style*="padding:36px"],
  div[style*="background:var(--dark)"][style*="padding:40px"] { padding: 28px 22px !important; }
  /* Trust bar single row */
  .trust-bar .container { gap: 14px; }
  .trust-stat strong { font-size: 20px; }
  .trust-stat span { font-size: 11px; }
  /* Better button stacking */
  .btn-primary, a[href="contact-us.html"][class*="btn"] { padding: 12px 22px; font-size: 14px; }
  /* Tables (rates page) - allow horizontal scroll */
  .rates-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .rates-table { min-width: 540px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .routes-grid { grid-template-columns: 1fr; }
  .trust-bar .container { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .hero-form { padding: 24px 20px; }
  .top-bar-links { flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 11px; }
  .top-bar-links a { font-size: 11px; }
  .nav-logo img { max-height: 38px; }
  .page-hero h1 { font-size: 24px; }
  .section-title { font-size: 22px; }
  /* Force any inline 2-col layout to single column */
  div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  /* Make CTA buttons full width on tiny screens */
  section[style*="text-align:center"] > .container > div[style*="display:flex"][style*="flex-wrap:wrap"] > a {
    width: 100%; justify-content: center;
  }
}
