:root {
  --bg: #f4f8fc;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #153352;
  --text-muted: #607792;
  --line: rgba(15, 56, 92, 0.12);
  --blue: #0d5ea8;
  --blue-deep: #083968;
  --orange: #f28c28;
  --orange-soft: #fff1df;
  --shadow: 0 24px 60px rgba(12, 52, 87, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max-width: 1180px;
  --font-heading: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  --font-body: "Avenir", "Helvetica Neue", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 140, 40, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(13, 94, 168, 0.18), transparent 24%),
    linear-gradient(180deg, #eef5fb 0%, #f8fbfe 45%, #f3f7fb 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
iframe {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(16, 51, 87, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
}

.language-switch {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.is-active {
  background: white;
  color: var(--blue-deep);
  box-shadow: 0 8px 20px rgba(16, 51, 87, 0.12);
}

.section {
  padding: 56px 0;
}

.hero {
  padding-top: 20px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.content-card,
.accent-card,
.service-card,
.fleet-card,
.contact-card,
.map-card,
.stat-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: 36px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.content-card p,
.service-card p,
.fleet-copy p,
.contact-card p,
.accent-card p,
.feature-list li {
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), #f6a13f);
  box-shadow: 0 12px 25px rgba(242, 140, 40, 0.32);
}

.button-light {
  color: var(--blue-deep);
  background: white;
  width: 100%;
}

.hero-panel-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 100%;
  padding: 48px;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(7, 43, 76, 0.9) 0%, rgba(8, 57, 104, 0.8) 32%, rgba(8, 57, 104, 0.28) 58%, rgba(8, 57, 104, 0.02) 100%);
  color: white;
}

.hero-panel-inner > * {
  width: min(100%, 520px);
}

.hero-panel-inner .feature-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-panel-inner .feature-list li {
  width: 100%;
  color: rgba(255, 255, 255, 0.92);
}

.hero-panel-inner .feature-list li {
  padding-left: 28px;
  padding-right: 0;
}

.hero-panel-inner .feature-list li + li {
  margin-top: 18px;
}

.hero-panel-inner .panel-label {
  width: min(100%, 520px);
}

.hero-panel-inner h2 {
  width: min(100%, 520px);
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.panel-label {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-panel-inner .hero-actions {
  width: min(100%, 520px);
}

.hero-panel-inner .button {
  min-width: 220px;
}

@media (max-width: 1080px) {
  .hero-shell {
    min-height: auto;
  }

  .hero-visual {
    min-height: 720px;
  }

  .hero-panel-inner {
    padding: 36px;
  }
}

@media (max-width: 760px) {
  .hero-visual {
    min-height: 620px;
  }

  .hero-panel-inner {
    justify-content: flex-end;
    padding: 24px;
  }

  .hero-panel-inner > *,
  .hero-panel-inner .panel-label,
  .hero-panel-inner h2,
  .hero-panel-inner .hero-actions {
    width: 100%;
  }

  .hero-panel-inner h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li + li {
  margin-top: 16px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ffd39c);
  box-shadow: 0 0 0 6px rgba(242, 140, 40, 0.16);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 0 8px;
}

.stat-card {
  padding: 24px 26px;
}

.stat-value {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--blue-deep);
}

.stat-label {
  color: var(--text-muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.content-card,
.accent-card,
.contact-card,
.map-card {
  padding: 30px;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 223, 0.92));
}

.accent-card-dark {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(242, 140, 40, 0.3), transparent 30%),
    linear-gradient(160deg, #0d5ea8 0%, #083968 100%);
}

.accent-card-dark p,
.accent-card-dark strong,
.accent-card-dark .accent-title {
  color: white;
}

.accent-title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.feature-list-compact li::before {
  top: 10px;
}

.card-grid,
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  padding: 28px;
}

.service-card:nth-child(odd) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 248, 255, 0.94));
}

.service-card:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 231, 0.94));
}

.fleet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-card {
  overflow: hidden;
}

.fleet-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(180deg, #ebf4fb, #dceaf6);
}

/* Reflectors overlay for fleet images (subtle decorative highlights) */
.fleet-image {
  position: relative;
  display: block;
}
.fleet-image .reflector {
  position: absolute;
  width: 18px;
  height: 10px;
  background: linear-gradient(90deg, rgba(255,246,168,0.95), rgba(255,211,156,0.95));
  border-radius: 3px;
  box-shadow: 0 8px 18px rgba(16,51,87,0.12);
  opacity: 0.95;
  pointer-events: none;
}
.fleet-image .reflector.r1 {
  right: 12px;
  bottom: 18px;
  transform: rotate(6deg);
}
.fleet-image .reflector.r2 {
  left: 16px;
  bottom: 20px;
  width: 12px;
  height: 8px;
  transform: rotate(-8deg);
}

.fleet-copy {
  padding: 24px;
}

.career-section {
  padding-top: 72px;
}

.career-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.career-column .accent-title {
  margin-bottom: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.contact-block + .contact-block {
  margin-top: 22px;
}

.contact-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.contact-line + .contact-line {
  margin-top: 12px;
}

.contact-line-values p {
  margin: 0;
}

.contact-line-values p + p {
  margin-top: 6px;
}

.map-card {
  padding: 14px;
}

.map-card iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
  border-radius: 22px;
}

.site-footer {
  margin-top: 36px;
  padding: 20px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-card {
  padding: 28px 30px;
  background: rgba(11, 46, 79, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.82);
}

.footer-card p {
  margin: 0;
  line-height: 1.7;
}

.footer-card p + p {
  margin-top: 8px;
}

.footer-card strong,
.footer-title {
  color: white;
}

.footer-title {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-quote-card {
  background:
    radial-gradient(circle at top right, rgba(242, 140, 40, 0.28), transparent 34%),
    linear-gradient(160deg, rgba(13, 94, 168, 0.96), rgba(8, 57, 104, 1));
}

.footer-quote {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  padding: 18px 4px 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-credits {
  padding: 8px 0 0;
}

.footer-credits p {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 550ms ease,
    transform 550ms ease;
}

@media (max-width: 1080px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .split-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .topbar {
    position: static;
    padding: 16px;
  }

  .main-nav {
    gap: 12px;
    font-size: 0.92rem;
  }

  .hero-panel-inner,
  .content-card,
  .accent-card,
  .service-card,
  .fleet-copy,
  .contact-card {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .stats-row,
  .card-grid,
  .fleet-grid,
  .career-columns {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .map-card iframe {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
