/*
  Elite Auto Group Logistics — Styles
  Brand colors: white, #1b3b50 (navy), #cf2f27 (red)
*/

:root {
  --brand-navy: #1b3b50;
  --brand-red: #cf2f27;
  --white: #ffffff;
  --text: #0f2430;
  --muted: #6b8595;
  --bg: #f6f8fa;
  /* Gradient tuning */
  --brand-navy-dark: #142a3a;
  --brand-navy-light: #2d5a78;
  --blue-grad-angle: 140deg;
  --tint-blue: #eef5ff;
  --tint-red: #fff2f1;
  --blue-section: var(--brand-navy);
  --blue-section-soft: var(--brand-navy);
  --blue-grad-start: var(--brand-navy-dark);
  --blue-grad-mid: var(--brand-navy);
  --blue-grad-end: var(--brand-navy-light);
  --container: 1120px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 24px rgba(28, 61, 80, 0.08);
  --shadow-lg: 0 12px 36px rgba(28, 61, 80, 0.14);
  --shadow-xl: 0 20px 50px rgba(27, 59, 80, 0.2);
  --spacing: clamp(16px, 1.6vw, 24px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  height: 100%;
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
}
h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: var(--brand-navy);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 16px;
}
h2 {
  font-size: clamp(22px, 3.6vw, 32px);
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 12px;
}
h3 {
  font-weight: 600;
  color: var(--brand-navy);
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
}

p {
  line-height: 1.7;
  margin: 0 0 16px;
  font-weight: 450;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(28,61,80,0.08);
  animation: slideDown 0.5s ease-out;
  transition: all 0.3s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.brand:hover {
  opacity: 0.8;
}
.brand-logo {
  height: 84px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.site-nav { display: flex; align-items: center; gap: 36px; white-space: nowrap; }
.site-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
  padding: 4px 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: width 0.3s ease;
}
.site-nav a:hover::after {
  width: 100%;
}
.site-nav a:hover {
  color: var(--brand-red);
  text-decoration: none;
}
.site-nav .btn-primary {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  background: var(--brand-red);
  border: none;
  box-shadow: 0 2px 8px rgba(207, 47, 39, 0.25);
  transition: all 0.3s ease;
  color: white;
}
.site-nav a.btn-primary,
.site-nav a.btn-primary:visited,
.site-nav a.btn-primary:hover,
.site-nav a.btn-primary:active,
.site-nav a.btn-primary.active { color: #ffffff; }
.site-nav .btn-primary::after {
  display: none;
}
.site-nav .btn-primary::before {
  display: none;
}
.site-nav .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(207, 47, 39, 0.35);
  background: var(--brand-red);
  color: white;
}

/* Center nav on desktop */
@media (min-width: 981px) {
  .header-inner { position: relative; }
  /* Nudge nav further right for visual balance */
  .site-nav { position: absolute; left: 53%; transform: translateX(-50%); }
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 0;
}
.language-switcher .lang-select { position: relative; }
.language-switcher .lang-trigger {
  display: inline-block;
  padding: 4px 0;
  background: transparent;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  color: var(--text);
  font: 700 28px/1.3 inherit;
  cursor: pointer;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  outline: none;
}
.language-switcher .lang-trigger:focus,
.language-switcher .lang-trigger:focus-visible { outline: none; box-shadow: none; }
.language-switcher .lang-trigger .label { position: relative; }
.language-switcher .lang-trigger .label::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--brand-red); transition: width 0.3s ease; }
.language-switcher .lang-trigger:hover { color: var(--brand-red); }
.language-switcher .lang-trigger:hover .label::after,
.language-switcher .lang-select.open .lang-trigger .label::after { width: 100%; }
.language-switcher .lang-select.open .lang-trigger { color: var(--brand-red); }
/* small chevron indicator */
.language-switcher .lang-trigger::after {
  content: '';
  display: inline-block;
  width: 20px; height: 20px;
  margin-left: 6px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  transform: translateY(5px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 10 10'%3E%3Cpath fill='%231b3b50' d='M5 7L1.5 3.5h7z'/%3E%3C/svg%3E");
}
.language-switcher .lang-trigger:hover::after,
.language-switcher .lang-select.open .lang-trigger::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 10 10'%3E%3Cpath fill='%23cf2f27' d='M5 7L1.5 3.5h7z'/%3E%3C/svg%3E");
}
.language-switcher .lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid rgba(27,59,80,0.12);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(27,59,80,0.12);
  min-width: 180px;
  padding: 6px;
  z-index: 1000;
  display: none;
}
.language-switcher .lang-select.open .lang-menu { display: block; animation: langMenuIn 140ms ease forwards; }
@keyframes langMenuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.language-switcher .lang-option {
  list-style: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
}
.language-switcher .lang-option:focus,
.language-switcher .lang-option:focus-visible { outline: none; }
.language-switcher .lang-option:hover { background: rgba(207,47,39,0.06); color: var(--brand-red); }
.language-switcher .lang-option.selected { background: rgba(27,59,80,0.06); }
.language-dropdown {
  appearance: none;
  background-color: var(--white);
  color: var(--text);
  border: 1px solid rgba(27,59,80,0.15);
  padding: 6px 28px 6px 10px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%231b3b50' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.language-dropdown:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23cf2f27' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
}
.language-dropdown:focus,
.language-dropdown:active,
.language-dropdown:focus-visible {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(207,47,39,0.1);
  background-color: var(--white) !important;
  color: var(--text);
}
.language-dropdown option {
  background: var(--white);
  color: var(--text);
  padding: 8px;
}

.nav-toggle { display: none; background: none; border: 0; padding: 8px; border-radius: 8px; }
.nav-toggle:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 2px; }
.nav-toggle-bar { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }

/* Hero */
.hero {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
/* Blue gradient variant for homepage hero */
.hero.hero-blue { background: var(--white); }
.hero.hero-blue::before { background: none; }
.hero.hero-blue::after { background: none; }
.hero::before,
.hero::after { display: none; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 64px 0;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* Make rental page hero image a bit larger without cropping */
.rental-hero .hero-inner { grid-template-columns: 1fr 1.1fr; }
/* Make sales page hero image a bit larger */
.sales-hero .hero-inner { grid-template-columns: 0.95fr 1.15fr; }
.hero-text h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--brand-navy);
  animation: slideInLeft 0.8s ease-out;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  animation: slideInLeft 0.8s ease-out 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 18px 0 10px;
  flex-wrap: wrap;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}
.hero-highlights {
  display: flex;
  gap: 16px;
  color: var(--muted);
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
  flex-wrap: wrap;
}
.hero-highlights li {
  animation: fadeInUp 0.6s ease-out both;
}
.hero-highlights li:nth-child(1) { animation-delay: 0.6s; }
.hero-highlights li:nth-child(2) { animation-delay: 0.7s; }
.hero-highlights li:nth-child(3) { animation-delay: 0.8s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-highlights li::before {
  content: "✓";
  color: var(--brand-red);
  margin-right: 8px;
  font-weight: 700;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.hero-art {
  display: grid;
  place-items: center;
  animation: slideInRight 0.8s ease-out 0.3s both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-svg {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
  border-radius: 24px;
  transition: all 0.5s ease;
}
.hero-svg:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 48px;
  box-shadow: 0 20px 60px rgba(27,59,80,0.2), 0 8px 20px rgba(207,47,39,0.1);
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: floatImage 6s ease-in-out infinite;
}
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(27,59,80,0.25), 0 12px 30px rgba(207,47,39,0.15);
  animation-play-state: paused;
}

/* Contact channels panel (removed) */

/* Rental hero image crop variant */
.hero-art.hero-crop { overflow: hidden; border-radius: 48px; }
.hero-image.hero-crop {
  width: 130%;
  height: 460px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 980px) {
  .hero-image.hero-crop { width: 120%; height: 380px; }
}
@media (max-width: 720px) {
  .hero-image.hero-crop { width: 115%; height: 300px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn-primary {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
  box-shadow: 0 4px 12px rgba(207, 47, 39, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(207, 47, 39, 0.45);
  text-decoration: none;
  background: var(--brand-red);
}
.btn-primary:active {
  transform: translateY(0) scale(1);
}
.btn-outline {
  color: var(--brand-navy);
  border-color: var(--brand-navy);
  background: transparent;
}
.btn-outline::before {
  background: var(--brand-navy);
}
.btn-outline:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 59, 80, 0.3);
  text-decoration: none;
}
.btn-inverse {
  background: var(--white);
  color: var(--brand-navy);
  border-color: var(--white);
}
.btn-inverse:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

/* Sections */
.section { padding: 64px 0; position: relative; }
.section-alt { background: var(--bg); position: relative; }

/* Blue section (full color with subtle luminous glow) */
.section.theme-blue {
  background:
    radial-gradient(900px 360px at 15% -10%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(800px 300px at 95% 110%, rgba(255,255,255,0.08), transparent 65%),
    linear-gradient(var(--blue-grad-angle), var(--blue-grad-start) 0%, var(--blue-grad-mid) 55%, var(--blue-grad-end) 100%);
  color: #e9f2f9;
}
.section.theme-blue::before { display: none; }
.section.theme-blue .section-title { color: #ffffff; }
.section.theme-blue .section-title::after { background: #ffffff; opacity: 0.85; }
.section.theme-blue h3 { color: #ffffff; }
.section.theme-blue .section-lead { color: #d1e3ee; }
.section.theme-blue p { color: #d6e6f0; }
.section.theme-blue .checklist li { color: #c9dbe7; }
.section.theme-blue .checklist li:hover { color: #ffffff; }
.section.theme-blue .checklist li::before { background: #ffffff; box-shadow: 0 0 0 4px rgba(255,255,255,0.14); }
.section.theme-blue .checklist li::after { color: var(--blue-section); }

.section.theme-blue .card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-top: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.section.theme-blue .card h3 { color: #ffffff; }
.section.theme-blue .card:hover h3 { color: #cfe8ff; }
.section.theme-blue .card p { color: #d6e6f0; }
.section.theme-blue .card a { color: #ffffff; font-weight: 600; }
.section.theme-blue .card a:visited { color: #ffffff; }
.section.theme-blue .card a:hover { color: #cfe8ff; text-decoration: underline; }
.section.theme-blue .card-icon-pro { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }
.section.theme-blue .card-icon-pro svg { stroke: #ffffff; }
.section.theme-blue .card-icon-pro svg .accent { stroke: #cfe8ff; }
.section.theme-blue .chip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); color: #e9f2f9; }
.section.theme-blue .chip:hover { background: rgba(255,255,255,0.12); color: #ffffff; }
.section.theme-blue .kpi { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }
.section.theme-blue .kpi::before { background: #ffffff; }
.section.theme-blue .kpi-num { color: #ffffff; }
.section.theme-blue .kpi:hover { border-color: #ffffff; }

/* Gradient blue card variant (for Services grid items) */
.card-blue-gradient {
  background: linear-gradient(var(--blue-grad-angle), var(--blue-grad-start) 0%, var(--blue-grad-mid) 55%, var(--blue-grad-end) 100%);
  color: #e9f2f9;
  border: 1px solid rgba(255,255,255,0.16);
  position: relative;
}
.card-blue-gradient h3 { color: #ffffff; }
.card-blue-gradient p { color: #dbe8f3; }
.card-blue-gradient .card-icon-pro { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }
.card-blue-gradient .card-icon-pro svg { stroke: #ffffff; }
.card-blue-gradient .card-icon-pro svg .accent { stroke: #cfe8ff; }

/* checklist inside blue gradient card */
.card-blue-gradient .checklist li { color: #dbe8f3; }
.card-blue-gradient .checklist li::before { background: #ffffff; box-shadow: 0 0 0 4px rgba(255,255,255,0.14); }
.card-blue-gradient .checklist li::after { color: var(--brand-navy); }

/* chip variant with solid brand-blue gradient */
.chip-blue {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy) 100%);
  color: #ffffff;
  border-color: transparent;
}
.chip-blue:hover { background: #22384b; color: #ffffff; }

/* subtle diagonal sheen overlay for screenshot-like style */
.card-blue-gradient::before { display: none; }
.card-blue-gradient:hover {
  box-shadow: 0 18px 42px rgba(0,0,0,0.24);
  transform: translateY(-6px) scale(1.015);
}
.card-blue-gradient { border-top: 0; }
.section-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3.6vw, 32px);
  color: var(--brand-navy);
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--brand-red);
  border-radius: 2px;
}
.section-lead { color: var(--muted); margin: 0 0 24px; font-size: 17px; line-height: 1.6; }

/* Contact connect (removed) */

/* Trust bar */
.trustbar {
  background: #1b3b50;
  color: #e9f0f4;
  position: relative;
  overflow: hidden;
}
.trustbar::before { display: none; }
.trustbar-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.trustbar-title {
  opacity: 0.9;
  font-weight: 600;
  animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.9; }
}
.trust-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-logo {
  background: rgba(255,255,255,0.12);
  color: #e9f0f4;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  animation: fadeInScale 0.5s ease-out both;
}
.trust-logo:nth-child(1) { animation-delay: 0.1s; }
.trust-logo:nth-child(2) { animation-delay: 0.2s; }
.trust-logo:nth-child(3) { animation-delay: 0.3s; }
.trust-logo:nth-child(4) { animation-delay: 0.4s; }
.trust-logo:nth-child(5) { animation-delay: 0.5s; }
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.trust-logo:hover {
  background: rgba(207,47,39,0.3);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Grids & cards */
.grid { display: grid; gap: 18px; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-center-2 { grid-template-columns: repeat(2, minmax(280px, 360px)); justify-content: center; }
.card {
  background: var(--white);
  border: 1px solid rgba(28,61,80,0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(207,47,39,0.04);
  transition: left 0.5s ease;
}
.card:hover::before {
  left: 100%;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(207,47,39,0.2);
}
.card h3 {
  margin: 8px 0 8px;
  color: var(--brand-navy);
  transition: color 0.3s ease;
}
.card:hover h3 {
  color: var(--brand-red);
}
.card p { margin: 0; color: var(--muted); }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(28,61,80,0.08);
  border: 1px solid rgba(28,61,80,0.14);
  position: relative;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.card:hover .card-icon {
  transform: scale(1.1);
  background: rgba(207,47,39,0.12);
}
.card-icon::after {
  content: attr(data-icon);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--brand-navy);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Ensure blue-gradient cards override base .card styles */
.card.card-blue-gradient {
  background: linear-gradient(var(--blue-grad-angle), var(--blue-grad-start) 0%, var(--blue-grad-mid) 55%, var(--blue-grad-end) 100%);
  color: #e9f2f9;
  border: 1px solid rgba(255,255,255,0.16);
  position: relative;
}
.card.card-blue-gradient::before { display: none; }
.card.card-blue-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(255,255,255,0.06), transparent 60%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.card.card-blue-gradient h3 { color: #ffffff; }
.card.card-blue-gradient p { color: #dbe8f3; }
.card.card-blue-gradient .card-icon-pro { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }
.card.card-blue-gradient .card-icon-pro svg { stroke: #ffffff; }
.card.card-blue-gradient .card-icon-pro svg .accent { stroke: #cfe8ff; }
.card.card-blue-gradient:hover {
  box-shadow: 0 18px 42px rgba(0,0,0,0.24);
  transform: translateY(-6px) scale(1.015);
}

/* Minimal icon badge (SVG) */
.card-icon-pro {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid rgba(27,59,80,0.18);
  box-shadow: 0 2px 6px rgba(27,59,80,0.08);
  margin-bottom: 18px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
/* removed decorative red dot */
.card-icon-pro svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand-navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.card-icon-pro svg .accent { stroke: var(--brand-red); }
.card:hover .card-icon-pro {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(27,59,80,0.18);
  border-color: rgba(27,59,80,0.28);
}

/* Utility */
.text-center { text-align: center; }

/* Card photo */
.card-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  display: block;
  box-shadow: 0 6px 18px rgba(27,59,80,0.12);
}

/* Colored Card Variants */
.card-blue {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.2);
}
.card-blue:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}
.card-blue h3 {
  color: #1e40af;
}
.card-blue:hover h3 {
  color: #2563eb;
}
.card-blue .card-icon-pro { border-color: rgba(37,99,235,0.28); }
.card-blue:hover .card-icon-pro { border-color: rgba(37,99,235,0.4); }

.card-orange {
  background: #ffffff;
  border-color: rgba(249, 115, 22, 0.2);
}
.card-orange:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.15);
}

/* Brand-only card variants (navy and red) */
.card-brand-navy {
  background: #ffffff;
  border-color: rgba(27, 59, 80, 0.18);
}
.card-brand-navy:hover {
  border-color: rgba(27, 59, 80, 0.32);
  box-shadow: 0 12px 40px rgba(27, 59, 80, 0.18);
}
.card-brand-navy h3 { color: var(--brand-navy); }
.card-brand-navy:hover h3 { color: var(--brand-red); }
.card-brand-navy .card-icon-pro { border-color: rgba(27,59,80,0.28); }
.card-brand-navy:hover .card-icon-pro { border-color: rgba(27,59,80,0.4); }

.card-brand-red {
  background: #ffffff;
  border-color: rgba(207, 47, 39, 0.22);
}
.card-brand-red:hover {
  border-color: rgba(207, 47, 39, 0.36);
  box-shadow: 0 12px 40px rgba(207, 47, 39, 0.18);
}
.card-brand-red h3 { color: var(--brand-red); }
.card-brand-red:hover h3 { color: var(--brand-navy); }
.card-brand-red .card-icon-pro { border-color: rgba(207,47,39,0.32); }
.card-brand-red:hover .card-icon-pro { border-color: rgba(207,47,39,0.45); }
.card-orange h3 {
  color: #c2410c;
}
.card-orange:hover h3 {
  color: #f97316;
}
.card-orange .card-icon-pro { border-color: rgba(249,115,22,0.28); }
.card-orange:hover .card-icon-pro { border-color: rgba(249,115,22,0.42); }

.thumb-open {
  background: rgba(207,47,39,0.08);
  height: 120px;
  border-radius: 12px;
  border: 2px dashed rgba(28,61,80,0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.thumb-open::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(207,47,39,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.card:hover .thumb-open { border-color: var(--brand-red); background: rgba(207,47,39,0.12); }
.card:hover .thumb-open::before {
  width: 80px;
  height: 80px;
}
.thumb-enclosed {
  background: rgba(28,61,80,0.08);
  height: 120px;
  border-radius: 12px;
  border: 2px dashed rgba(28,61,80,0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.thumb-enclosed::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(28,61,80,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.card:hover .thumb-enclosed { border-color: var(--brand-navy); background: rgba(28,61,80,0.12); }
.card:hover .thumb-enclosed::before {
  width: 80px;
  height: 80px;
}
.thumb-flatbed {
  background: rgba(28,61,80,0.08);
  height: 120px;
  border-radius: 12px;
  border: 2px dashed rgba(28,61,80,0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.thumb-flatbed::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(207,47,39,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.card:hover .thumb-flatbed { border-color: var(--brand-red); background: rgba(207,47,39,0.12); }
.card:hover .thumb-flatbed::before {
  width: 80px;
  height: 80px;
}

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.chip {
  background: #ffffff;
  border: 2px solid rgba(27,59,80,0.18);
  border-radius: 100px;
  padding: 8px 16px;
  color: var(--text);
  box-shadow: var(--shadow);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.chip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(207,47,39,0.1);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}
.chip:hover::before {
  width: 200px;
  height: 200px;
}
.chip:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(207,47,39,0.2);
}

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 10px 0 0; }
.checklist li {
  margin: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--muted);
  transition: all 0.3s ease;
}
.checklist li:hover {
  color: var(--text);
  padding-left: 36px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(207,47,39,0.15);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.checklist li:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(207,47,39,0.2);
}
.checklist li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 8px;
  color: white;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.checklist li:hover::after {
  opacity: 1;
}



/* KPIs */
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kpi {
  background: var(--white);
  border: 2px solid rgba(28,61,80,0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.kpi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.kpi:hover::before {
  transform: scaleX(1);
}
.kpi:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-red);
}
.kpi-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-navy);
  transition: all 0.3s ease;
  display: inline-block;
}
.kpi:hover .kpi-num {
  color: var(--brand-red);
  transform: scale(1.1);
}
.kpi-label {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

/* Blue gradient KPI style */
.kpi-blue-gradient {
  background: linear-gradient(var(--blue-grad-angle), var(--blue-grad-start) 0%, var(--blue-grad-mid) 55%, var(--blue-grad-end) 100%);
  color: #e9f2f9;
  border: 1px solid rgba(255,255,255,0.16);
}
.kpi-blue-gradient .kpi-num { color: #ffffff; }
.kpi-blue-gradient .kpi-label { color: #dbe8f3; }
.kpi-blue-gradient::before { background: #ffffff; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 12px;
}
.steps li:hover {
  background: rgba(207,47,39,0.03);
  transform: translateX(8px);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(207,47,39,0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}
.step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--brand-red);
  opacity: 0;
  transition: all 0.4s ease;
}
.steps li:hover .step-num {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(207,47,39,0.4);
}
.steps li:hover .step-num::before {
  opacity: 1;
  inset: -8px;
}

/* CTA */
.cta {
  background: #1b3b50;
  color: #e9f0f4;
  position: relative;
  overflow: hidden;
}
.cta::before,
.cta::after { display: none; }
.cta-inner {
  text-align: center;
  padding: 64px 0;
  position: relative;
  z-index: 1;
}
.cta h2 {
  margin: 0 0 8px;
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.cta p {
  margin: 0 0 20px;
  color: #cfe0ea;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* About */
.about-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.about-card {
  background: var(--white);
  border: 2px solid rgba(28,61,80,0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-red);
}
.about-card:hover::before {
  transform: scaleY(1);
}
.about-card strong {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.about-card span {
  font-weight: 800;
  color: var(--brand-navy);
  transition: color 0.3s ease;
  font-size: 18px;
}
.about-card:hover span {
  color: var(--brand-red);
}

/* Contact */
.contact { align-items: stretch; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
label span { display: inline-block; font-weight: 700; margin-bottom: 6px; }
input, textarea { width: 100%; padding: 12px 12px; border-radius: 10px; border: 1px solid rgba(28,61,80,0.18); background: var(--white); color: var(--text); font: inherit; }
input:focus, textarea:focus { outline: 2px solid rgba(203,49,41,0.35); border-color: var(--brand-red); }
label.full { grid-column: 1 / -1; }
label.consent { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--muted); }
.form-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.form-hint { color: var(--muted); margin: 0 12px 0 0; }
.form-status { min-height: 20px; font-weight: 700; }

.contact-card { background: var(--bg); border: 1px solid rgba(28,61,80,0.08); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }

/* Footer */
.site-footer {
  background: #0f2430;
  color: #dce7ee;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  min-height: 180px;
  position: relative;
  overflow: hidden;
}
.site-footer::before { display: none; }
.site-footer::after { display: none; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 32px;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
}
.footer-brand img {
  width: 60px;
  height: 60px;
  padding: 5px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #dce7ee;
  opacity: 0.85;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}
.footer-nav a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}
.footer-meta {
  text-align: right;
  color: #adc3d1;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  padding-top: 8px;
}
.footer-credit {
  font-size: 13px;
  opacity: 0.8;
  color: #adc3d1;
}
.footer-credit a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.footer-credit a:hover {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--brand-red);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 16px 0;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(207,47,39,0.05);
  line-height: 1;
  transition: all 0.4s ease;
}
.testimonial:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-xl);
  border-left-width: 6px;
}
.testimonial:hover::before {
  color: rgba(207,47,39,0.1);
  transform: scale(1.1);
}
.testimonial p {
  font-style: italic;
  color: var(--text);
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.testimonial cite {
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

/* Premium effects */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(27,59,80,0.15), 0 8px 20px rgba(207,47,39,0.1);
}

/* Page transitions */
.page-content { animation: fadeInPage 0.5s ease; }
@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Content Images */
.content-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f5f7fa;
  border: 2px dashed rgba(27,59,80,0.15);
  position: relative;
  transition: all 0.4s ease;
}
.content-image:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.content-image svg,
.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Small Content Images */
.content-image-small {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f5f7fa;
  border: 2px dashed rgba(27,59,80,0.15);
  position: relative;
  transition: all 0.4s ease;
}
.content-image-small:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.content-image-small svg,
.content-image-small img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Image Row (2 images side by side) */
.image-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Split Image (for split sections) */
.split-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder Icon Shimmer Effect */
.content-image::before,
.content-image-small::before { display: none; }
.placeholder-icon {
  width: 100%;
  height: 100%;
}

/* Active nav link */
.site-nav a.active:not(.btn-primary) {
  color: var(--brand-red);
}
.site-nav a.active:not(.btn-primary)::after {
  width: 100%;
}

/* 404 hero centered layout */
.hero-inner-centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.hero-actions-centered {
  justify-content: center;
}

/* Ensure chip-blue wins over base .chip styles */
.chip.chip-blue {
  background: linear-gradient(var(--blue-grad-angle), var(--blue-grad-start) 0%, var(--blue-grad-mid) 55%, var(--blue-grad-end) 100%);
  color: #ffffff;
  border-color: rgba(255,255,255,0.12);
}
.chip.chip-blue:hover { background: linear-gradient(var(--blue-grad-angle), var(--blue-grad-mid) 0%, var(--blue-grad-end) 100%); color: #ffffff; }

/* Global touch target */
.btn { min-height: 44px; }

/* Responsive — Tablets & below */
@media (max-width: 980px) {
  /* Layout stacking */
  .hero-inner { grid-template-columns: 1fr; }
  .rental-hero .hero-inner { grid-template-columns: 1fr; }
  .sales-hero .hero-inner { grid-template-columns: 1fr; }
  .hero-art { justify-self: stretch; width: 100%; }
  .split { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-center-2 { grid-template-columns: 1fr; justify-content: stretch; }
  .image-row { grid-template-columns: 1fr; gap: 16px; }
  .split-image { order: -1; margin-bottom: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .card-photo { height: 160px; }

  /* Mobile navigation */
  .site-nav {
    position: absolute;
    inset: 64px 0 auto 0;
    background: var(--white);
    display: grid;
    gap: 6px;
    padding: 10px;
    border-bottom: 1px solid rgba(28,61,80,0.08);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 100;
  }
  .site-nav a { padding: 12px; min-height: 44px; display: flex; align-items: center; }
  .site-header.open .site-nav { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-toggle { display: inline-block; }

  /* Language switcher */
  .language-switcher { margin-left: 0; margin-top: 8px; justify-content: center; }
  .language-dropdown { width: 100%; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer-brand { justify-content: center; }
  .footer-meta { text-align: center; align-items: center; }
  .footer-nav a { min-height: 44px; display: inline-flex; align-items: center; }

  /* Trust bar */
  .trustbar-inner { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .trust-logos { justify-content: center; }
}

/* Small phones */
@media (max-width: 540px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero-inner { gap: 20px; padding: 40px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-actions-centered { align-items: center; }
  .kpis { grid-template-columns: 1fr; }
  .card-photo { height: 140px; }
  .chips { justify-content: center; }
  .brand-logo { height: 64px; }
  .footer-inner { gap: 20px; }
  .trustbar-title { font-size: 14px; }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .hero-image { animation: none; }
  .hero-highlights li { animation: none; opacity: 1; transform: none; }
  .hero-highlights li::before { animation: none; }
  .page-content { animation: none; }
  .site-header { animation: none; }
  .trust-logo { animation: none; opacity: 1; transform: none; }
}

/* Print styles */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero-actions, .language-switcher { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { background: #fff !important; }
  .section.theme-blue { background: #f5f5f5 !important; color: #000 !important; }
  .section.theme-blue h3, .section.theme-blue .section-title { color: #000 !important; }
  .section.theme-blue p, .section.theme-blue .section-lead { color: #333 !important; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  .card { box-shadow: none; border: 1px solid #ccc; }
}
