:root {
  --blue: #073b79;
  --blue-dark: #031f40;
  --blue-deep: #052a57;
  --blue-bright: #0d5db8;
  --gold: #f5b800;
  --text: #172235;
  --muted: #526173;
  --light: #f4f7fb;
  --white: #ffffff;
  --border: #e1e8f1;
  --shadow: 0 12px 34px rgba(16, 40, 77, 0.11);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--gold); color: #10284d; padding: 10px 14px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 12px; }

.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.98); box-shadow: 0 2px 18px rgba(0,0,0,.12); backdrop-filter: blur(10px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: flex-start; flex: 0 0 auto; }
.brand img { width: 178px; height: 58px; object-fit: contain; }
.brand sup { margin-left: 2px; color: var(--blue); font-weight: 800; }
.nav { display: flex; align-items: center; gap: 18px; margin-left: auto; font-size: 14px; font-weight: 800; }
.nav a { position: relative; white-space: nowrap; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--gold); transition: right .2s ease; }
.nav a:hover, .nav a:focus-visible { color: var(--blue-bright); }
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }
.menu-btn { display: none; margin-left: auto; border: 0; background: none; color: var(--blue); font-size: 27px; cursor: pointer; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; border: 0; border-radius: 9px; background: var(--gold); color: #10284d; font-weight: 900; cursor: pointer; transition: transform .2s ease, filter .2s ease, box-shadow .2s ease; }
.btn:hover, .btn:focus-visible { transform: translateY(-1px); filter: brightness(1.03); box-shadow: 0 8px 22px rgba(245,184,0,.27); }
.btn-small { min-height: 42px; padding: 10px 15px; font-size: 14px; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.9); }
.btn-outline:hover, .btn-outline:focus-visible { background: var(--white); color: var(--blue); box-shadow: none; }

.hero { position: relative; min-height: 690px; overflow: hidden; color: var(--white); isolation: isolate; }
.slides, .slide, .hero-overlay { position: absolute; inset: 0; }
.slide { opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { z-index: 1; background: linear-gradient(90deg, rgba(1,19,43,.93) 0%, rgba(5,42,84,.78) 48%, rgba(0,20,45,.28) 100%); }
.hero-content { position: relative; z-index: 2; padding-top: 130px; padding-bottom: 100px; }
.hero-content > * { max-width: 880px; }
.eyebrow, .kicker { display: inline-block; color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: 1.45px; text-transform: uppercase; }
h1 { margin: 18px 0; font-size: clamp(36px, 3.5vw, 49px); line-height: 1.1; text-wrap: balance; }
h2 { margin: 8px 0 16px; color: var(--blue); font-size: clamp(31px, 3.2vw, 41px); line-height: 1.15; text-wrap: balance; }
h3 { margin: 8px 0; color: var(--blue); line-height: 1.25; }
.hero p { max-width: 850px; margin: 0; font-size: clamp(17px, 1.5vw, 20px); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.slider-controls { position: absolute; z-index: 3; left: 50%; bottom: 25px; display: flex; gap: 9px; transform: translateX(-50%); }
.slider-dot { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; }
.slider-dot.active { background: var(--gold); box-shadow: 0 0 0 4px rgba(245,184,0,.18); }

.section { padding: 86px 0; }
.section-light { background: var(--light); }
.section-dark { background: linear-gradient(135deg, #062b57, #031f40); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { max-width: 840px; margin-bottom: 38px; }
.section-head-compact { margin-bottom: 34px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-dark .section-head p { color: rgba(255,255,255,.78); }
.grid { display: grid; gap: 22px; }

.cards-six { grid-template-columns: repeat(3, minmax(0,1fr)); }
.feature-card, .service-card, .info-card, .license-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); padding: 26px; box-shadow: var(--shadow); }
.feature-card b { color: #b4c5da; font-size: 34px; line-height: 1; }
.feature-card p, .service-card p, .info-card p { margin-bottom: 0; color: var(--muted); }

.services-grid { grid-template-columns: repeat(4, minmax(0,1fr)); align-items: stretch; }
.service-card { display: flex; flex-direction: column; min-height: 285px; }
.service-icon { display: block; min-height: 45px; font-size: 34px; line-height: 1; }
.service-card h3 { min-height: 50px; }
.service-card p { flex: 1; }
.service-card a { display: inline-flex; gap: 5px; margin-top: 18px; color: var(--blue-bright); font-weight: 900; }
.service-card a:hover, .service-card a:focus-visible { text-decoration: underline; }

.about-grid { display: grid; grid-template-columns: minmax(360px, 500px) minmax(0, 1fr); gap: 56px; align-items: start; }
.about-photo { width: 100%; max-width: 500px; justify-self: center; }
.about-photo img { width: 100%; height: auto; aspect-ratio: 1123 / 1401; object-fit: cover; border-radius: var(--radius); box-shadow: 0 16px 42px rgba(0,0,0,.14); }
.about-copy p { color: #334254; }
.about-copy blockquote { margin: 24px 0 0; padding: 15px 20px; border-left: 4px solid var(--gold); background: var(--white); color: var(--blue-dark); font-weight: 800; }
.mission-grid { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 54px; }
.two-columns { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 22px; }
.values-card strong { display: inline-block; min-width: 18px; color: var(--blue); }

.fleet-list { display: grid; gap: 20px; }
.fleet-card { display: grid; grid-template-columns: 285px 1fr; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 6px 20px rgba(16,40,77,.06); }
.fleet-card img { width: 100%; height: 190px; object-fit: cover; }
.fleet-card > div { padding: 26px; }
.fleet-card p { margin-bottom: 0; color: var(--muted); }
.fleet-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.fleet-tags span { padding: 10px 16px; border-radius: 999px; background: #e9f2ff; color: var(--blue); font-weight: 900; }

.licenses-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.license-card { background: rgba(12,59,112,.78); border-color: rgba(255,255,255,.16); box-shadow: none; }
.license-card p { margin-bottom: 0; color: rgba(255,255,255,.82); }

.region-panel { padding: 40px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(120deg, #f7faff, #eef5ff); }
.region-panel .section-head { margin-bottom: 0; }

.blog-grid { width: 100%; max-width: 100%; grid-template-columns: repeat(3, minmax(0,1fr)); }
.blog-card { min-width: 0; max-width: 100%; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 190px; object-fit: cover; }
.blog-card > div { padding: 24px; }
.blog-card h3 { margin-top: 0; }
.blog-card p { color: var(--muted); }
.blog-card a { color: var(--blue-bright); font-weight: 900; }
.blog-card a:hover, .blog-card a:focus-visible { text-decoration: underline; }
.blog-more { margin-top: 28px; }

.quote-section { background: linear-gradient(135deg, #eef5ff, #fff); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }
.contact-list { display: grid; gap: 8px; margin-top: 24px; font-style: normal; }
.contact-list a { color: var(--blue-bright); font-weight: 800; }
form { display: grid; gap: 14px; padding: 28px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
form label { display: grid; gap: 6px; color: var(--blue-dark); font-size: 14px; font-weight: 800; }
input, textarea { width: 100%; padding: 13px 14px; border: 1px solid #cbd6e4; border-radius: 8px; color: var(--text); background: var(--white); font-weight: 400; }
input:focus, textarea:focus { outline: 3px solid rgba(13,93,184,.14); border-color: var(--blue-bright); }
textarea { min-height: 128px; resize: vertical; }

.footer { padding: 56px 0 20px; background: var(--blue-dark); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; align-items: start; }
.footer h3 { color: var(--white); }
.footer a:hover, .footer a:focus-visible { text-decoration: underline; }
.footer-brand { width: max-content; padding: 6px 10px; border-radius: 10px; background: var(--white); }
.footer-brand img { width: 178px; height: 58px; }
.social-links { display: flex; gap: 10px; }
.social-links a { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--white); color: var(--blue); transition: transform .2s ease, background .2s ease; }
.social-links a:hover, .social-links a:focus-visible { transform: translateY(-2px); background: var(--gold); text-decoration: none; }
.social-links svg { display: block; width: 21px; height: 21px; }
.copyright { margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.65); font-size: 13px; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f2937;
  font-weight: 800;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.2));
  animation: whatsapp-float 2.4s ease-in-out infinite;
}
.whatsapp-float-label {
  padding: 11px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0,0,0,.12);
}
.whatsapp-float-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-float-icon img { width: 34px; height: 34px; }
.whatsapp-float:hover .whatsapp-float-icon,
.whatsapp-float:focus-visible .whatsapp-float-icon { transform: scale(1.08); background: #1fbd59; }
.whatsapp-float:focus-visible { outline: 3px solid rgba(37,211,102,.35); outline-offset: 5px; border-radius: 16px; }
@keyframes whatsapp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1080px) {
  .nav { gap: 13px; font-size: 13px; }
  .header-cta { display: none; }
}

@media (max-width: 920px) {
  html { scroll-padding-top: 82px; }
  .nav-wrap { min-height: 76px; }
  .menu-btn { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 76px; margin: 0; padding: 20px 32px 26px; flex-direction: column; align-items: flex-start; gap: 17px; background: var(--white); box-shadow: 0 14px 22px rgba(0,0,0,.14); }
  .nav.open { display: flex; }
  .cards-six, .services-grid, .licenses-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-grid, .quote-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 520px; margin-inline: auto; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 650px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand img, .footer-brand img { width: 148px; height: auto; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 95px; padding-bottom: 110px; }
  h1 { font-size: 32px; }
  h2 { font-size: 31px; }
  .hero p { font-size: 17px; }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { width: 100%; }
  .section { padding: 64px 0; }
  .cards-six, .services-grid, .mission-grid, .two-columns, .licenses-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 440px; }
  .service-card { min-height: 0; }
  .service-card h3 { min-height: 0; }
  .fleet-card { grid-template-columns: 1fr; }
  .fleet-card img { height: 220px; }
  .region-panel { padding: 28px 22px; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .whatsapp-float-label { display: none; }
  .whatsapp-float-icon { width: 56px; height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
