/* ---------- Branding & fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --brand: #3b82f6;         /* blue */
  --brand-dark: #1d4ed8;    /* darker blue */
  --accent: #f59e0b;        /* orange */
  --accent-light: #fbbf24;
  --bg-dark: #0f1419;
  --bg-card: #1a1f26;
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --border-subtle: rgba(255,255,255,0.08);
}

body {
    background-color: #f5f5f7;
    color: #212529;   /* dark gray text */
}

.static-page {
    color: #212529;
}

.static-page h1,
.static-page h2,
.static-page h3 {
    color: #111827;   /* almost black for headings */
}

.static-page p,
.static-page li {
    color: #374151;   /* dark gray for paragraphs and list items */
}

/* Our Services section */
.section.services {
    background-color: #ffffff;          /* keep it light */
}

.section.services h2 {
    color: #111827;                     /* dark heading */
}

.section.services p {
    color: #4b5563;                     /* dark gray text */
}

/* Service cards inside this section */
.section.services .service-card h3 {
    color: #111827;
}

.section.services .service-card p {
    color: #4b5563;
}
/* Our Services section */
.section.services {
    background-color: #ffffff;          /* keep it light */
}

.section.services h2 {
    color: #111827;                     /* dark heading */
}

.section.services p {
    color: #4b5563;                     /* dark gray text */
}

/* Service cards inside this section */
.section.services .service-card h3 {
    color: #111827;
}

.section.services .service-card p {
    color: #4b5563;
}

/* Make all bullet/numbered list text dark and readable */
.static-page ul li,
.static-page ol li,
.static-page .icon-list li {
    color: #374151;   /* dark gray */
}

/* Section description paragraphs (like under Our Services, Clients, etc.) */
.static-page .section p,
.static-page .section .text-muted {
    color: #4b5563;   /* darker gray, not very light */
}


body {
  font-family: 'Poppins', "Segoe UI", Arial, sans-serif;
  color: #222;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 0;
}

.hero .hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1100px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}

.hero p.lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.25rem;
}

.hero .cta-group .btn {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
}

/* small screens */
@media (max-width: 767.98px) {
  .hero { padding: 60px 0; min-height: 48vh; }
  .hero h1 { font-size: 1.8rem; }
}

/* ---------- Services / Features ---------- */
.section {
  padding: 60px 0;
}

.services .service-card {
  border: 0;
  background: #fff;
  border-radius: 12px;
  padding: 1.6rem;
  box-shadow: 0 8px 30px rgba(13,110,253,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}

.services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13,110,253,0.08);
}

.service-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13,110,253,0.12), rgba(13,110,253,0.06));
  color: var(--brand);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

/* ---------- Stats strip ---------- *//* ===========================
   Global site.css (merged)
   - Keeps original dynamic styles
   - Adds landing styles scoped under .static-page
   - Place this file at wwwroot/css/site.css
   =========================== */

/* ---------- Global navbar logo (safe default) ---------- */
.navbar-brand img,
.navbar-brand > img {
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
}
@media (max-width: 576px) {
  .navbar-brand img {
    max-height: 40px;
  }
}

/* ---------- Base font sizing (original) ---------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}
body {
  margin-bottom: 60px;
  background-color: #f8f9fa; /* light gray background */
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ---------- Focus styles (original) ---------- */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* ---------- Navbar (original) ---------- */
.navbar {
  padding: 0.5rem 1rem;
}
.navbar-brand img {
  max-height: 60px;
  width: auto;
  height: auto;
}
@media (max-width: 576px) {
  .navbar-brand img {
    max-height: 40px;
  }
}
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.navbar-text {
  margin-right: 1rem;
  font-weight: 500;
}

/* ---------- Footer (original) ---------- */
.footer {
  background-color: #fff;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* ---------- Card forms (Login/Register/Create User) (original) ---------- */
.card {
  border-radius: 8px;
  border: 1px solid #dee2e6;
}
.card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
form .form-label {
  font-weight: 500;
}
form .btn {
  margin-top: 0.5rem;
}

/* ---------- Alerts (original) ---------- */
.alert {
  border-radius: 6px;
  padding: 0.75rem 1rem;
}

/* ---------- Tables (Users list) (original) ---------- */
.table {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.table th {
  font-weight: 600;
}
.table td, .table th {
  vertical-align: middle;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* ---------- Utility spacing (original) ---------- */
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}

/* ===========================
   Landing page styles (scoped)
   Apply only when <body class="static-page"> is present
   =========================== */

/* Import landing font */

.static-page {
  /* Use Poppins for landing pages while preserving default elsewhere */
  font-family: 'Poppins', "Segoe UI", Arial, sans-serif;
  color: #222;
}

/* Landing-specific navbar logo override (larger on landing only) */
.static-page .navbar-brand img {
  max-height: 110px; /* tweak as needed for landing header */
}

/* ---------- Hero (landing only) ---------- */
.static-page .hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.static-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.45); /* hero overlay */
  z-index: 0;
}

.static-page .hero .hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1100px;
}

.static-page .hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}

.static-page .hero p.lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.25rem;
}

.static-page .hero .cta-group .btn {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
}

/* Responsive hero */
@media (max-width: 767.98px) {
  .static-page .hero { padding: 60px 0; min-height: 48vh; }
  .static-page .hero h1 { font-size: 1.8rem; }
}

/* ---------- Services / Features (landing only) ---------- */
.static-page .section {
  padding: 60px 0;
}

.static-page .services .service-card {
  background: #fff;
  padding: 1.6rem;
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.04);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
}

.static-page .services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13,110,253,0.08);
}

.static-page .service-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(11,58,111,0.18), rgba(11,58,111,0.05));
  color: var(--brand);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

/* ---------- Stats strip (landing only) ---------- */
.static-page .stats-strip {
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
  color: #fff;
  padding: 28px 0;
  border-radius: 8px;
  margin-top: -40px;
  box-shadow: 0 12px 30px rgba(13,110,253,0.08);
}

.static-page .stats-strip .stat {
  text-align: center;
}
.static-page .stats-strip .stat h3 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
}
.static-page .stats-strip .stat p {
  margin: 0;
  color: rgba(255,255,255,0.9);
}

/* ---------- Logos / testimonials (landing only) ---------- */
.static-page .logo-strip {
  padding: 30px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
}
.static-page .logo-strip img {
  max-height: 48px;
  opacity: 0.85;
  filter: grayscale(0.2);
  transition: opacity .15s ease, transform .15s ease;
}
.static-page .logo-strip img:hover { opacity: 1; transform: translateY(-4px); }

/* ---------- Contact / CTA (landing only) ---------- */
.static-page .contact-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-radius: 12px;
  padding: 1.6rem;
  box-shadow: 0 10px 30px rgba(2,6,23,0.04);
}

/* ---------- Footer adjustments (landing only) ---------- */
.static-page .site-footer {
  background: #0f1724;
  color: rgba(255,255,255,0.85);
  padding: 40px 0;
}
.static-page .site-footer a { color: rgba(255,255,255,0.9); text-decoration: none; }

/* ---------- Buttons and utilities (landing only) ---------- */
.static-page .btn-primary {
  background: #0d6efd;
  border-color: #0d6efd;
}
.static-page .btn-primary:hover {
  background: #0a58ca;
  border-color: #0a58ca;
}

.static-page .container-compact { max-width: 1100px; margin: 0 auto; }
.static-page .section-title { margin-bottom: 1.5rem; font-weight: 700; }

/* responsive tweaks for landing */
@media (max-width: 991.98px) {
  .static-page .stats-strip { margin-top: 0; }
}

/* ---------- Small helper: keep hero images responsive on landing only ---------- */
.static-page .hero .hero-inner img,
.static-page .hero img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   Optional small overrides to ensure dynamic pages unaffected
   - Keep login and app pages consistent
   =========================== */

/* Ensure login card width remains comfortable */
@media (max-width: 767.98px) {
  .card { border-radius: 8px; }
}

/* Keep footer style for dynamic site (non-landing) */
.site-footer {
  background: #f8f9fa;
  color: #222;
}

/* End of merged site.css */

.stats-strip {
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 28px 0;
  border-radius: 8px;
  margin-top: -40px;
  box-shadow: 0 12px 30px rgba(13,110,253,0.08);
}

.stats-strip .stat {
  text-align: center;
}
.stats-strip .stat h3 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
}
.stats-strip .stat p {
  margin: 0;
  color: rgba(255,255,255,0.9);
}

/* ---------- Logos / testimonials ---------- */
.logo-strip {
  padding: 30px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
}
.logo-strip img {
  max-height: 48px;
  opacity: 0.85;
  filter: grayscale(0.2);
  transition: opacity .15s ease, transform .15s ease;
}
.logo-strip img:hover { opacity: 1; transform: translateY(-4px); }

/* ---------- Contact / CTA ---------- */
.contact-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-radius: 12px;
  padding: 1.6rem;
  box-shadow: 0 10px 30px rgba(2,6,23,0.04);
}

/* ---------- Footer adjustments ---------- */
.site-footer {
  background: #0f1724;
  color: rgba(255,255,255,0.85);
  padding: 40px 0;
}
.site-footer a { color: rgba(255,255,255,0.9); text-decoration: none; }

/* ---------- Utilities ---------- */
.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

/* small tweaks for consistent spacing */
.container-compact { max-width: 1100px; margin: 0 auto; }
.section-title { margin-bottom: 1.5rem; font-weight: 700; }

/* responsive tweaks */
@media (max-width: 991.98px) {
  .stats-strip { margin-top: 0; }
}

.navbar-user-name {
  font-weight: 500;
  font-size: 14px;
}

.logout-link {
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  padding: 0;
}




/* Generic layout containers */
.static-page .container-narrow {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Two-column layout */
.static-page .two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

/* Section base (works with your existing .static-page .section) */
.static-page .section-title {
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.static-page .section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

/* Card grid for services / clients / info */
.static-page .card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.static-page .card-grid.small {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.static-page .card-simple {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.static-page .card-simple h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.static-page .card-simple p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Icon / bullet lists */
.static-page .icon-list,
.static-page .plain-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding-left: 0;
}

.static-page .icon-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.static-page .icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
   background: var(--accent);
}

.static-page .plain-list li {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact details & form */
.static-page .contact-details p {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.static-page .contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.static-page .contact-form .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.7rem;
}

.static-page .contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.static-page .contact-form input,
.static-page .contact-form select,
.static-page .contact-form textarea {
  border-radius: 6px;
  border: 1px solid #ced4da;
  padding: 0.45rem 0.6rem;
  font-size: 0.95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.static-page .contact-form input:focus,
.static-page .contact-form select:focus,
.static-page .contact-form textarea:focus {
  outline: none;
  border-color: var(--brand, #0d6efd);
  box-shadow: 0 0 0 2px rgba(13,110,253,0.18);
}

.static-page .contact-form .form-status {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Primary button reuse (works with Bootstrap btn or standalone) */
.static-page .btn-primary-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--brand, #0d6efd), var(--brand-dark, #0a58ca));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(13,110,253,0.28);
  transition: transform .18s ease, box-shadow .18s ease;
}

.static-page .btn-primary-soft:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(10,88,202,0.35);
}

/* Hero utility for simple placeholder block if needed */
.static-page .hero-placeholder {
  min-height: 220px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/* ========== Responsive adjustments (mobile / tablet / laptop / desktop) ========== */

@media (max-width: 991.98px) {
  .static-page .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .static-page .two-col {
    grid-template-columns: 1fr;
  }

  .static-page .card-grid,
  .static-page .card-grid.small {
    grid-template-columns: 1fr;
  }

  .static-page .hero .hero-inner {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .static-page .hero .hero-inner {
    max-width: 1100px;
  }
}

/* Keyframes */
@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Start hidden; will be activated via .animate-in class */
.static-page .animate-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.static-page .animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Slight hover animations (cards + buttons) */
.static-page .service-card,
.static-page .card-simple {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.static-page .service-card:hover,
.static-page .card-simple:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(13,110,253,0.10);
}

.static-page .btn,
.static-page .btn-primary,
.static-page .btn-primary-soft {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.static-page .btn:hover,
.static-page .btn-primary:hover,
.static-page .btn-primary-soft:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.static-page .hero {
  background-color: #0b3a6f; /* fallback if hero image is dark/low contrast */
}

.static-page .hero .hero-inner {
  max-width: 1050px;
}

.static-page .hero h1 {
  letter-spacing: 0.02em;
}

.static-page .hero .cta-group .btn-primary {
  background: linear-gradient(135deg, var(--accent), #f97316);
  border-color: transparent;
  color: #1f2933;
}

.static-page .hero .cta-group .btn-outline-light {
  border-color: rgba(255,255,255,0.8);
  color: #e5e7eb;
}

/* Section backgrounds to create rhythm */
.static-page #about,
.static-page #fleet,
.static-page #clients {
  background: #f3f4f6;
}

.static-page #services,
.static-page #covid,
.static-page #contact {
  background: #ffffff;
}

/* Headings */
.static-page h2,
.static-page h3 {
  color: #111827;
}


.static-page .section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin: 12px auto 0;
}

/* Header/nav PMS styling */
.static-page header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.static-page header .nav-link {
  font-weight: 500;
  color: #1f2933;
  position: relative;
  padding-bottom: 0.15rem;
}

.static-page header .nav-link:hover {
  color: var(--brand);
}

.static-page header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.18s ease;
}

.static-page header .nav-link:hover::after {
  width: 100%;
}

/* Footer PMS styling */
.static-page .footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.9);
}

.static-page .footer a {
  color: rgba(255,255,255,0.9);
}

.static-page .footer a:hover {
  color: var(--accent);
}

/* ================= PMS Dark Theme ================= */

/* Base dark background */
.static-page {
  background-color: #0f1419;
  color: #e5e7eb;
}

/* Header - dark with subtle border */
.static-page header {
  background: #1a1f26;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.static-page header .nav-link {
  color: #d1d5db;
}

.static-page header .nav-link:hover {
  color: #f59e0b; /* orange accent */
}

.static-page header .nav-link::after {
  background: #f59e0b;
}

/* Hero section - darker overlay */
.static-page .hero {
  background-color: #0a0e13;
}

.static-page .hero::before {
  background: rgba(0, 0, 0, 0.55);
}

.static-page .hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.static-page .hero p.lead {
  color: rgba(255,255,255,0.85);
}

/* Buttons - orange accent for visibility */
.static-page .btn-primary {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border-color: transparent;
  color: #111;
  font-weight: 600;
}

.static-page .btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.static-page .btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: #e5e7eb;
}

.static-page .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #f59e0b;
  color: #f59e0b;
}

/* Sections - alternating dark shades */
.static-page .section {
  background: #0f1419;
}

.static-page .section.bg-light,
.static-page #about,
.static-page #fleet,
.static-page #clients {
  background: #161b22;
}

/* Headings */
.static-page h2,
.static-page h3 {
  color: #f9fafb;
}

.static-page .section-title::after {
  background: linear-gradient(90deg, #f59e0b, #3b82f6); /* orange to blue gradient */
}

/* Cards - dark with subtle glow */
.static-page .service-card,
.static-page .card-simple {
  background: #1a1f26;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.static-page .service-card:hover,
.static-page .card-simple:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.12);
}

.static-page .service-card h3,
.static-page .card-simple h3 {
  color: #f9fafb;
}

.static-page .service-card p,
.static-page .card-simple p {
  color: #9ca3af;
}

/* Service card icons - PMS colors */
.static-page .service-card .icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(59, 130, 246, 0.15));
  color: #f59e0b;
}

/* Lists */
.static-page .icon-list li,
.static-page .plain-list li {
  color: #9ca3af;
}

.static-page .icon-list li::before {
  background: linear-gradient(135deg, #f59e0b, #3b82f6);
}

/* Contact section */
.static-page .contact-details p {
  color: #9ca3af;
}

.static-page .contact-form {
  background: #1a1f26;
  border: 1px solid rgba(255,255,255,0.06);
}

.static-page .contact-form label {
  color: #d1d5db;
}

.static-page .contact-form input,
.static-page .contact-form select,
.static-page .contact-form textarea {
  background: #0f1419;
  border: 1px solid rgba(255,255,255,0.12);
  color: #e5e7eb;
}

.static-page .contact-form input:focus,
.static-page .contact-form select:focus,
.static-page .contact-form textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.static-page .contact-form input::placeholder,
.static-page .contact-form textarea::placeholder {
  color: #6b7280;
}

/* Footer - darkest */
.static-page .footer {
  background: #0a0e13;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #9ca3af;
}

.static-page .footer a {
  color: #d1d5db;
}

.static-page .footer a:hover {
  color: #f59e0b;
}

/* Text utilities for dark theme */
.static-page .text-muted {
  color: #9ca3af !important;
}

.static-page p {
  color: #d1d5db;
}

.static-page strong {
  color: #f9fafb;
}

/* Compact header */
.static-page header {
    padding: 0.5rem 0;
}

.static-page header .navbar-brand img {
  height: 50px;
    width: auto;
}

.static-page header .nav-link {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.static-page header .btn-sm {
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
}

/* Optional small inline logo near nav (can be hidden) */
.static-page .main-header .logo-inline {
    height: 36px;
    width: auto;
}

/* Mobile: shrink floating logo so it doesn't cover content */
@media (max-width: 767.98px) {
    .static-page .main-header .logo-layer {
        left: 1rem;
        top: -6px;
    }

    .static-page .main-header .logo-floating {
        height: 56px;
    }
}

/* Service images styling */
.static-page .service-card .service-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* ===== Clean PMS header alignment ===== */

.static-page .site-header {
    background: #1a1f26;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    padding: 0.4rem 0;
}

.static-page .site-header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

/* Main logo size – big but keeps header low because height is fixed */
.static-page .site-header .logo-main {
    height: 56px;      /* adjust up/down a little if needed */
    width: auto;
    display: block;
}

/* Nav links */
.static-page .site-header .nav-link {
    font-weight: 500;
    color: #d1d5db;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    position: relative;
}

.static-page .site-header .nav-link:hover {
    color: #f59e0b;
}

.static-page .site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.18s ease;
}

.static-page .site-header .nav-link:hover::after {
    width: 100%;
}

/* Small button in header */
.static-page .site-header .btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
}

/* Mobile – keep logo readable but not huge */
@media (max-width: 767.98px) {
    .static-page .site-header .logo-main {
        height: 48px;
    }
}

/* About section visuals */
.static-page .about-image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    background: radial-gradient(circle at top left, rgba(245,158,11,0.18), transparent),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.2), transparent);
}

.static-page .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.6s ease-out;
}

.static-page .about-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.2), transparent 40%);
    pointer-events: none;
}

.static-page .about-image-wrapper:hover .about-image {
    transform: scale(1.07);
}

/* === Switch PMS landing back to light page, keep dark header === */

/* Light page background and default text */
.static-page {
    background-color: #ffffff;
    color: #111827;
}

/* Sections use light backgrounds by default */
.static-page .section {
    background: #ffffff;
}

/* Remove dark overrides for specific sections */
.static-page #about,
.static-page #services,
.static-page #fleet,
.static-page #clients,
.static-page #covid,
.static-page #contact {
    background: #ffffff;
}

/* Normal text colours */
.static-page p,
.static-page li {
    color: #4b5563;
}

.static-page h2,
.static-page h3 {
    color: #111827;
}
/* Client logo carousel */
.static-page .client-carousel-wrapper {
    padding: 1.25rem 0 0;
}

.static-page .client-swiper {
    padding: 0.75rem 2.5rem 2.25rem;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
}

#gallery .gallery-item img {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#gallery .gallery-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}
.static-page .client-logo {
    max-height: 56px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: grayscale(0.2);
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.static-page .swiper-slide:hover .client-logo {
    opacity: 1;
    transform: translateY(-3px);
    filter: grayscale(0);
}

.static-page .client-swiper .swiper-button-prev,
.static-page .client-swiper .swiper-button-next {
    color: #4b5563;
}

.static-page .client-swiper .swiper-pagination-bullet {
    background: #9ca3af;
    opacity: 0.7;
}

.static-page .client-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

.static-page .client-swiper .swiper-button-prev,
.static-page .client-swiper .swiper-button-next,
.static-page .client-swiper .swiper-pagination {
    display: none !important;
}

/* Prevent client logo slides from shrinking/overlapping */
.static-page .client-swiper .swiper-slide {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.static-page .client-swiper .swiper-slide {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 1. Make all list items in static page dark */
.static-page ul li,
.static-page ol li,
.static-page .icon-list li {
    color: #374151 !important;   /* dark gray, readable */
}

/* 2. Make all section paragraphs dark enough */
.static-page .section p,
.static-page .section .text-muted {
    color: #4b5563 !important;
}


/* Header layout */
.site-header {
    padding: 0.4rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

/* Logo can be larger without breaking nav */
.site-header .navbar-brand img.logo-main {
    height: 56px;          /* increase/decrease as you like */
    width: auto;
}

/* Keep nav links vertically centered and wrapping if needed */
.site-header nav .nav-link,
.site-header nav .btn {
    font-size: 0.95rem;
    white-space: nowrap;
}
.site-header .container.d-flex {
    flex-wrap: wrap;
}
/* Header container can wrap so big logo doesn't crush nav */
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Make logo clearly bigger */
.site-header .navbar-brand .logo-main {
    height: 70px;      /* try 70–80px and adjust to taste */
    width: auto;
}

/* Keep header height comfortable */
.site-header {
    padding: 0.3rem 0;
    background-color: #0f172a;  /* your dark bar */
}
/* FINAL override for landing header logo */
.static-page .site-header .navbar-brand img.logo-main {
    height: 90px !important;   /* adjust 80–100 as you like */
    width: auto;
    max-height: none;
}
/* Let the gallery tile size follow the layout, not force too small */
#gallery .gallery-item {
    max-width: 320px;        /* limit but don’t shrink too hard */
    height: 200px;           /* moderate height */
    overflow: hidden;
    margin: 0 auto;
}

/* Show image at natural resolution as much as possible */
#gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* keep aspect, crop slightly */
    image-rendering: auto;   /* browser default, avoids extra smoothing */
    border-radius: 10px;
    display: block;
}

