:root {
  --bg: #f4f4f2;
  --white: #ffffff;
  --text: #1d2430;
  --muted: #697181;
  --dark: #0f1721;
  --dark-2: #18202c;
  --line: rgba(16, 23, 33, 0.1);
  --accent: #9fb5d3;
  --accent-2: #d7dde4;
  --shadow: 0 20px 60px rgba(17, 23, 31, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

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

.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.86);
  font-size: 0.88rem;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar a { font-weight: 700; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}
.lang-switch a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lang-switch a.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.lang-switch.dark a {
  border-color: rgba(16,23,33,.14);
}
.lang-switch.dark a.active {
  background: var(--dark);
  color: var(--white);
}


.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(244,244,242,0.88);
  border-bottom: 1px solid rgba(16, 23, 33, 0.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.brand strong,
.footer-brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 0.9;
  font-weight: 600;
}
.brand span,
.footer-brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-size: 0.94rem;
  font-weight: 600;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; background: none; border: 0; padding: 0; }
.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(244,244,242,0.02) 55%, rgba(244,244,242,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
  padding: 84px 0;
}
.eyebrow,
.section-tag,
.mini-label {
  display: inline-block;
  margin: 0 0 14px;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow,
.mini-label { color: rgba(255,255,255,0.92); }
.section-tag { color: #536278; }
.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: .96;
  color: var(--white);
  max-width: 720px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.hero .lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}
.hero-actions,
.cta-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions { margin-top: 32px; }
.hero-badges { margin-top: 24px; }
.hero-badges span,
.fleet-badges span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 700;
  font-size: .9rem;
}
.hero-card {
  display: flex;
  justify-content: flex-end;
}
.hero-card-inner {
  max-width: 420px;
  background: rgba(14,20,28,0.76);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.2;
}
.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--white);
  color: var(--dark);
}
.btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
}
.btn-light {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.32);
}
.btn-block { width: 100%; }

.section {
  padding: 98px 0;
}
.section-soft { background: linear-gradient(180deg, #eef1f4 0%, #f7f7f5 100%); }
.section-dark { background: linear-gradient(135deg, #131a24 0%, #1e2835 100%); }
.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
}
.section p,
.service-card p,
.contact-list a,
.contact-form label,
.contact-form input,
.contact-form textarea {
  line-height: 1.8;
}
.section-copy p:last-child { margin-bottom: 0; }
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.about-visual img {
  border-radius: 32px;
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.feature-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: 0 12px 32px rgba(17, 23, 31, 0.05);
}
.feature-list strong {
  display: block;
  margin-bottom: 8px;
}
.feature-list span { color: var(--muted); font-size: .94rem; }

.cards-grid,
.social-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}
.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(16, 23, 33, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 36px rgba(17, 23, 31, 0.06);
}
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--dark);
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.service-card h3 { margin: 0 0 10px; font-size: 1.16rem; }
.service-card p { margin: 0; color: var(--muted); }

.fleet-section {
  background: linear-gradient(120deg, #141b24 0%, #1c2633 44%, #33465d 100%);
  color: var(--white);
}
.fleet-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.fleet-wrap .section-tag,
.cta-band .section-tag { color: rgba(255,255,255,0.7); }
.fleet-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.fleet-badges span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  padding: 0;
  background: none;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 16px 30px rgba(17, 23, 31, 0.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.02);
}

.video-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.video-frame {
  background: var(--white);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 20px;
}

.social-grid {
  grid-template-columns: repeat(3, 1fr);
}
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(17, 23, 31, 0.05);
}
.social-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 700;
}
.social-card span { display: block; color: var(--muted); margin-top: 4px; }

.cta-band-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-band h2 { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.contact-list a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(17, 23, 31, 0.05);
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.contact-form {
  display: grid;
  gap: 16px;
}
.form-row { display: grid; gap: 8px; }
.contact-form label { font-weight: 600; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(16, 23, 33, 0.12);
  padding: 14px 16px;
  background: #fbfbfa;
  color: var(--text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: #8197b3;
  box-shadow: 0 0 0 4px rgba(129,151,179,.14);
}

.footer {
  padding: 30px 0 44px;
  border-top: 1px solid rgba(16, 23, 33, 0.08);
  background: #efefeb;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer p { margin: 0; color: var(--muted); }
.footer a { font-weight: 700; color: var(--dark); }

.floating {
  position: fixed;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 16px 30px rgba(17, 23, 31, 0.2);
  z-index: 45;
}
.floating.whatsapp { bottom: 20px; background: #17b364; }
.floating.call { bottom: 88px; background: var(--dark); }

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6,10,15,0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 100;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 2rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1060px) {
  .hero-content,
  .grid-2,
  .video-wrap,
  .contact-grid,
  .cards-grid,
  .social-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-list { grid-template-columns: 1fr; }
  .fleet-wrap,
  .cta-band-wrap,
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 820px) {
  .topbar-inner { flex-direction: column; justify-content: center; padding: 10px 0; }
  .lang-switch { margin-left: 0; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    background: rgba(244,244,242,0.98);
    border: 1px solid rgba(16,23,33,.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height .3s ease, opacity .3s ease;
  }
  .nav.open {
    max-height: 340px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(16,23,33,.06);
  }
  .nav a:last-child { border-bottom: 0; }
  .hero { min-height: auto; }
  .hero-content,
  .grid-2,
  .video-wrap,
  .contact-grid,
  .cards-grid,
  .social-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-content { padding: 72px 0 80px; }
  .hero-card { justify-content: flex-start; }
  .about-visual img { min-height: auto; }
  .gallery-item { aspect-ratio: 4 / 3; }
  .brand strong,
  .footer-brand strong { font-size: 1.7rem; }
}

@media (max-width: 560px) {
  .section { padding: 78px 0; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero h1 { font-size: 2.9rem; }
  .hero .lead { font-size: .98rem; }
  .hero-card-inner,
  .service-card,
  .contact-card { padding: 22px; }
  .cta-actions,
  .hero-actions,
  .hero-badges { width: 100%; }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .floating { right: 14px; }
}
