:root{
  --ink:#0f172a;       /* navy/charcoal */
  --muted:#475569;     /* slate */
  --line:#e2e8f0;
  --bg:#ffffff;
  --alt:#f8fafc;
  --blue:#1d4ed8;
  --gold:#b0892f;
  --shadow: 0 12px 28px rgba(2,6,23,.12);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  background:var(--bg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
.container{width:min(1160px, 92vw); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 260px}
.brand__logo{
  width:32px; height:32px; object-fit:contain;   /* smaller logo */
}

.brand__tag{font-size:.86rem; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--ink); font-weight:600; font-size:.95rem}
.nav a:hover{color:var(--blue)}
.menu{display:none; background:transparent; border:0; padding:8px; cursor:pointer}
.menu span{display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; opacity:.9}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:10px;
  padding:10px 14px;
  font-weight:700;
  border:1px solid var(--line);
}
.btn--primary{
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
  box-shadow: var(--shadow);
}
.btn--secondary{
  background:#fff;
  color:var(--ink);
}
.btn--block{width:100%}

.hero{
  position:relative;
  border-bottom:1px solid var(--line);
}
.hero__media img{
  width:100%;
  height:min(68vh, 640px);
  object-fit:cover;
  display:block;
}
.hero__content{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
}
.hero__box{
  width:min(640px, 92vw);
  margin:0 0 26px 0;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-left:6px solid var(--ink);
  border-radius:14px;
  padding:18px 18px 16px;
  box-shadow: var(--shadow);
}
.kicker{
  font-weight:800;
  font-size:.82rem;
  letter-spacing:.6px;
  color:var(--muted);
  text-transform:uppercase;
}
.hero h1{
  margin:10px 0 8px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(1.8rem, 2.9vw, 2.55rem);
  line-height:1.15;
}
.hero p{margin:0 0 14px; color:var(--muted); font-size:1.02rem}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px}

.trust{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
  border-top:1px solid var(--line);
  padding-top:12px;
}
.trust__item strong{display:block; font-size:.95rem}
.trust__item span{display:block; color:var(--muted); font-size:.9rem; margin-top:2px}

.section{padding:70px 0}
.section--alt{background:var(--alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.head{margin-bottom:18px}
.head h2{
  margin:0 0 6px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
}
.head p{margin:0; color:var(--muted); max-width:72ch}
.head--tight{margin-bottom:10px}

.cards{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.card h3{margin:0 0 8px; font-size:1.05rem; font-weight:800}
.card p{margin:0 0 10px; color:var(--muted)}
.card ul{margin:0; padding-left:18px; color:var(--muted)}
.card li{margin:6px 0}

.gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.shot{
  margin:0;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
}
.shot img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.two{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.areas{display:flex; flex-wrap:wrap; gap:10px; margin:12px 0 14px}
.areas span{
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:8px 10px;
  font-weight:700;
  color:var(--muted);
  font-size:.92rem;
}
.note{
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:14px;
}
.note strong{display:block; margin-bottom:8px}
.note ul{margin:0; padding-left:18px; color:var(--muted)}
.note li{margin:6px 0}

.quote{
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:16px;
  box-shadow: var(--shadow);
}
.quote h3{margin:0 0 10px}
label{display:grid; gap:6px; margin:10px 0; font-weight:700; color:var(--muted); font-size:.92rem}
input, textarea{
  border:1px solid var(--line);
  border-radius:10px;
  padding:11px 12px;
  font:inherit;
  color:var(--ink);
  background:#fff;
}
input:focus, textarea:focus{outline:2px solid rgba(29,78,216,.18); border-color: rgba(29,78,216,.35)}
.fine{margin:10px 0 0; color:var(--muted); font-size:.86rem}

.footercta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footercta h2{margin:0 0 6px; font-family:Montserrat,Inter,sans-serif}
.footercta p{margin:0; color:var(--muted); max-width:70ch}

.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
}
.footer__inner{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
}
.footbrand{font-weight:900; color:var(--ink)}
.footmuted{font-size:.95rem}

@media (max-width: 980px){
  .cards{grid-template-columns:repeat(2, minmax(0,1fr))

  .hero__content{position:absolute; inset:0; align-items:flex-end; padding:0 0 14px 0;}
  .hero__box{margin:0 auto 14px; width:min(680px, 94vw);}
}
.gallery{grid-template-columns:repeat(2, minmax(0,1fr))}
  .two{grid-template-columns:1fr}
  .nav{display:none}
  .menu{display:block}
  .topbar.is-open .nav{
    display:flex;
    position:absolute;
    left:0; right:0;
    top:66px;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:14px 4vw 18px;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .hero__content{position:static}
  .hero__box{margin:16px auto 26px; width:min(760px, 92vw)}
}
@media (max-width: 560px){
  .hero__media img{height:min(70vh, 520px)}
  .trust{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
}

/* Hero slideshow (auto-change) */
.hero__media{position:relative}
.hero__media img{
  transition: opacity 700ms ease;
}
.hero__media img.is-fading{opacity:0.15}

/* Partner marquee */
.marquee{
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:12px 0;
}
.marquee__track{
  display:flex;
  gap:18px;
  width:max-content;
  animation: marquee 26s linear infinite;
  align-items:center;
}
.marquee__item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width: 180px;
  padding: 6px 12px;
}
.marquee__item img{
  height:52px;
  width:auto;
  object-fit:contain;
  filter: none;
  opacity:0.95;
}
@keyframes marquee{
  from{transform: translateX(0)}
  to{transform: translateX(-50%)}
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .marquee__track{animation:none}
}


/* ===== PRO POLISH: forms, quote hero, footer ===== */
.pro-form .form-label{display:block;font-size:12px;letter-spacing:.10em;text-transform:uppercase;color:rgba(107,114,128,1);margin:10px 0 6px}
.pro-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media(max-width:900px){.pro-form .form-row{grid-template-columns:1fr}}

.quote-hero{padding:40px 0 26px;background:linear-gradient(135deg, rgba(11,19,32,.98), rgba(30,58,138,.90))}
.quote-hero h1{color:#fff;margin-top:10px}
.quote-hero p{color:rgba(229,231,235,1)}
.quote-hero__wrap{display:grid;grid-template-columns:1.05fr 1fr;gap:22px;align-items:start}
@media(max-width:900px){.quote-hero__wrap{grid-template-columns:1fr}}
.quote-hero__bullets{margin-top:14px;display:grid;gap:8px}
.q-bullet{color:rgba(243,244,246,1);font-size:14px}
.quote-hero__card{background:rgba(255,255,255,.96);border-radius:18px;padding:18px;box-shadow:0 16px 40px rgba(0,0,0,.18)}
.quote-card__title{font-weight:800;margin-bottom:8px}
.quote-card__hint{margin-top:10px;font-size:13px;color:rgba(75,85,99,1)}
.quote-card__hint a{text-decoration:none}

.soft-card{background:rgba(255,255,255,.92)}

/* Footer */
.footer-pro{background:#0b1320;color:#fff;margin-top:40px}
.footer-pro__grid{display:grid;grid-template-columns:1.2fr 1fr 1.1fr;gap:34px;padding:44px 0}
@media(max-width:900px){.footer-pro__grid{grid-template-columns:1fr;padding:34px 0}}
.footer-pro__logo{font-weight:900;font-size:18px;letter-spacing:.02em}
.footer-pro__tag{color:rgba(209,213,219,1);margin-top:10px}
.footer-pro__mini{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
.pill{display:inline-block;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);font-size:12px;color:rgba(229,231,235,1)}
.footer-pro h4{margin-bottom:12px}
.footer-pro__links ul{list-style:none;padding:0;margin:0;display:grid;gap:8px}
.footer-pro__links a{color:rgba(209,213,219,1);text-decoration:none}
.footer-pro__links a:hover{color:#fff;text-decoration:underline}
.footer-pro__contact .contact-row{display:flex;gap:10px;align-items:flex-start;color:rgba(209,213,219,1);margin:8px 0}
.footer-pro__contact a{color:rgba(209,213,219,1);text-decoration:none}
.footer-pro__contact a:hover{color:#fff;text-decoration:underline}
.contact-ico{width:20px;opacity:.9}
.footer-pro__cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.footer-pro__bottom{border-top:1px solid rgba(255,255,255,.12);padding:14px 0;color:rgba(156,163,175,1);font-size:13px}
.footer-pro__bottomInner{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap}
.footer-pro__muted{opacity:.9}

/* Service Areas hero background */
.service-areas-hero{
  padding:46px 0 34px;
  background:
    linear-gradient(135deg, rgba(11,19,32,.92), rgba(30,58,138,.78)),
    url('../images/fleet_09.jpg');
  background-size:cover;
  background-position:center;
}
.service-areas-hero h1{color:#fff;margin-top:10px}
.service-areas-hero p{color:rgba(229,231,235,1);max-width:720px}
.service-areas-hero .hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* Services hero background */
.services-hero{
  padding:46px 0 34px;
  background:
    linear-gradient(135deg, rgba(11,19,32,.92), rgba(30,58,138,.78)),
    url('../images/fleet_09.jpg');
  background-size:cover;
  background-position:center;
}
.services-hero h1{color:#ffffff;margin-top:10px}
.services-hero p{color:rgba(229,231,235,1);max-width:720px}
.services-hero .hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* Improve hero CTA button visibility on dark overlay backgrounds */
.services-hero .btn,
.service-areas-hero .btn{
  color:#ffffff !important;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.services-hero .btn:hover,
.service-areas-hero .btn:hover{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.75);
}
.services-hero .btn.primary,
.service-areas-hero .btn.primary{
  background:linear-gradient(135deg, #f59e0b, #fbbf24) !important;
  color:#111827 !important;
  border:none !important;
}
.services-hero .btn.primary:hover,
.service-areas-hero .btn.primary:hover{
  filter:brightness(.96);
}

/* Match Contact page buttons with hero CTA styling */
.contact-page .btn{
  color:#ffffff;
  background:rgba(11,19,32,.85);
  border:1px solid rgba(11,19,32,.25);
}
.contact-page .btn:hover{
  background:rgba(11,19,32,.95);
}
.contact-page .btn.primary{
  background:linear-gradient(135deg, #f59e0b, #fbbf24);
  color:#111827;
  border:none;
}
.contact-page .btn.primary:hover{
  filter:brightness(.96);
}

/* Top utility bar */
.topbar{background:#0b1320;color:#e5e7eb;font-size:14px}
.topbar a{color:#e5e7eb;text-decoration:none}
.topbar-inner{display:flex;justify-content:space-between;align-items:center;padding:8px 0}
.topbar-left span{margin-right:16px}
.btn-small{padding:6px 12px;font-size:13px}

/* Trust strip */
.trust-strip{background:#f4f6fa;border-top:1px solid #e5e7eb}
.trust-inner{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;padding:14px 0;font-size:14px;color:#374151}

/* Form note */
.form-note{margin-top:10px;font-size:13px;color:#6b7280}

/* ===== PHASE 1: Authority & Conversion (homepage) ===== */
.phase1-card{border:1px solid rgba(0,0,0,.06)}
.cap-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:12px}
@media(max-width:900px){.cap-grid{grid-template-columns:1fr}}
.cap-item{display:flex;gap:10px;align-items:flex-start;padding:12px 14px;border-radius:16px;background:rgba(255,255,255,.7);border:1px solid rgba(0,0,0,.06)}
.cap-ico{width:32px;height:32px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(30,58,138,.10)}
.steps{padding-left:18px}
.steps li{margin:8px 0}

/* Trusted By section */
.trusted-by{padding:18px 0 28px}
.trusted-by-inner{border:1px solid rgba(0,0,0,.06);border-radius:22px;padding:22px 18px;background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,246,250,.92))}
.trusted-by-head{max-width:820px}
.trusted-by-head h2{margin-top:10px}
.logo-grid{display:grid;grid-template-columns:repeat(6, 1fr);gap:12px;margin-top:16px;align-items:center}
@media(max-width:1100px){.logo-grid{grid-template-columns:repeat(4, 1fr)}}
@media(max-width:700px){.logo-grid{grid-template-columns:repeat(2, 1fr)}}
.logo-card{display:flex;align-items:center;justify-content:center;padding:14px;border-radius:18px;background:rgba(255,255,255,.8);border:1px solid rgba(0,0,0,.05);min-height:78px;box-shadow:0 10px 25px rgba(0,0,0,.04)}
.logo-card img{max-width:160px;max-height:48px;width:auto;height:auto;filter:grayscale(100%);opacity:.85;transition:filter .25s ease, opacity .25s ease, transform .25s ease}
.logo-card:hover img{filter:grayscale(0%);opacity:1;transform:translateY(-2px)}

/* Partner marquee logo sizing */
.marquee__item img{max-height:46px;width:auto;height:auto;object-fit:contain;opacity:1;transition:transform .25s ease}
.marquee__item:hover img{transform:translateY(-2px)}

/* Blue contact form container */
.blue-form-wrap{
  background:linear-gradient(135deg, #0b3c7a, #0e4fa3);
  padding:28px 26px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(11,60,122,.25);
}
.blue-form-wrap label,
.blue-form-wrap h2,
.blue-form-wrap h3{
  color:#ffffff;
}
.blue-form-wrap .input,
.blue-form-wrap textarea,
.blue-form-wrap select{
  background:#ffffff;
}
.blue-form-wrap .btn.primary{
  background:#f5b301;
  color:#0b3c7a;
  font-weight:600;
}

/* Fix hero text visibility on Services + Service Areas */
.services-hero, .service-areas-hero{position:relative}
.services-hero::before, .service-areas-hero::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(11,19,32,.70), rgba(11,19,32,.55));
  pointer-events:none;
}
.services-hero > * , .service-areas-hero > *{position:relative; z-index:1}

.services-hero h1, .services-hero h2, .services-hero .hero-title,
.service-areas-hero h1, .service-areas-hero h2, .service-areas-hero .hero-title{
  color:#ffffff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.services-hero p, .services-hero .hero-subtitle,
.service-areas-hero p, .service-areas-hero .hero-subtitle{
  color:rgba(243,244,246,.96) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

/* Center submit buttons on forms */
.center-submit{
  display:block;
  margin:24px auto 0 auto;
}

/* Header logo size adjustment */
header .logo img,
.navbar .logo img,
.site-header .logo img{
  max-height:64px;
}
@media(max-width:768px){
  header .logo img,
  .navbar .logo img,
  .site-header .logo img{
    max-height:52px;
  }
}

/* ===== HEADER LOGO BIGGER + NAV RIGHT ===== */
header .logo img,
.site-header .logo img,
.navbar .logo img{
  max-height:82px;
}

@media(max-width:768px){
  header .logo img,
  .site-header .logo img,
  .navbar .logo img{
    max-height:60px;
  }
}

/* Move navigation to the right */
header .nav,
header nav,
.navbar nav,
.site-header nav{
  margin-left:auto;
}

header .nav ul,
header nav ul,
.navbar nav ul{
  justify-content:flex-end;
}

.header-flex{
  display:flex;
  align-items:center;
}

/* ===== FORCE LARGE HEADER LOGO ===== */
header .logo img,
.site-header .logo img,
.navbar .logo img,
header img[alt*="logo" i]{
  max-height:110px !important;
  height:110px !important;
  width:auto !important;
}

header{
  padding-top:12px;
  padding-bottom:12px;
}

@media(max-width:768px){
  header .logo img,
  .site-header .logo img,
  .navbar .logo img,
  header img[alt*="logo" i]{
    max-height:80px !important;
    height:80px !important;
  }
}

/* Brand font: TeX Gyre Pagella (italic) */
@font-face{
  font-family:'TeX Gyre Pagella';
  src: local('TeX Gyre Pagella'), local('TeXGyrePagella');
  font-style: italic;
  font-weight: 400;
}

header .brand-name,
header .site-title,
header .logo-text{
  font-family:'TeX Gyre Pagella', 'Times New Roman', serif;
  font-style: italic;
}

/* Brand name typography */


/* ===== Brand typography scaling ===== */

/* Company name */
.brand__name {
  font-family: "TeX Gyre Pagella",
               "Palatino Linotype",
               "Book Antiqua",
               Palatino,
               serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2em;
  line-height: 1.1;
}

/* Tagline */
.brand__tagline,
.tagline,
.header-tagline {
  font-size: 0.8em;
  font-weight: 400;
  opacity: 0.9;
}

/* ===== MOBILE HEADER BACKGROUND FIX ===== */
header, .site-header, .navbar{
  background:#0b3c7a;
}
header a, header .brand__name, header .brand__tagline,
.site-header a, .site-header .brand__name, .site-header .brand__tagline,
.navbar a{
  color:#ffffff;
}

@media(max-width:768px){
  header, .site-header, .navbar{
    background:#0b3c7a !important;
  }
  /* mobile menu panel if any */
  .mobile-menu, .nav-menu, .nav-links, nav ul{
    background:#0b3c7a;
  }
  header a, header .brand__name, header .brand__tagline,
  .navbar a, .navbar .brand__name, .navbar .brand__tagline{
    color:#ffffff !important;
  }
}

/* ===== MOBILE CARDS RESPONSIVE (Homepage Services) ===== */
@media (max-width: 980px){
  .cards{grid-template-columns:repeat(2, minmax(0,1fr));}
}
@media (max-width: 620px){
  .cards{grid-template-columns:1fr;}
}

/* ===== MOBILE NAV DROPDOWN BLUE ===== */
@media (max-width: 860px){
  .topbar.is-open .nav{
    background:#0b3c7a !important;
  }
  .topbar.is-open .nav a{
    color:#ffffff !important;
  }
}
/* Brand name font enforced site-wide */
.brand-font{
  font-family: "TeX Gyre Pagella","Palatino Linotype","Book Antiqua",Palatino,serif !important;
  font-style: italic !important;
}
