:root {
  --navy-950: #061525;
  --navy-900: #0b1f35;
  --navy-800: #0f2744;
  --navy-700: #163456;
  --blue-600: #1e5f8a;
  --blue-500: #2a7ab0;
  --orange-500: #e87722;
  --orange-600: #d56a18;
  --orange-400: #f59a4a;
  --sand-50: #faf8f5;
  --sand-100: #f3f0eb;
  --gray-100: #eef2f6;
  --gray-200: #dde4ec;
  --gray-400: #8b9bb0;
  --gray-600: #526277;
  --gray-800: #243447;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(6, 21, 37, 0.06);
  --shadow-md: 0 18px 48px rgba(6, 21, 37, 0.1);
  --shadow-lg: 0 28px 70px rgba(6, 21, 37, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.container-wide {
  width: min(1320px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), height 0.35s var(--ease);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(15, 39, 68, 0.06);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(6, 21, 37, 0.12);
}

.brand-text strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--navy-900);
}

.brand-text span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--navy-900);
  background: rgba(15, 39, 68, 0.05);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(232, 119, 34, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(232, 119, 34, 0.34);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--sand-50);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.34);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-sm {
  padding: 0.72rem 1.15rem;
  font-size: 0.84rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 7rem;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-ken-burns 18s ease-in-out infinite alternate;
}

@keyframes hero-ken-burns {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(42, 122, 176, 0.28), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(232, 119, 34, 0.14), transparent 28%),
    linear-gradient(115deg, rgba(6, 21, 37, 0.88) 0%, rgba(11, 31, 53, 0.78) 45%, rgba(15, 39, 68, 0.62) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-400);
  box-shadow: 0 0 0 6px rgba(232, 119, 34, 0.18);
}

.hero h1 {
  margin: 0 0 1.2rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.75rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.metric-card span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.hero-panel {
  position: relative;
}

.hero-panel-card {
  position: relative;
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.hero-panel-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.04));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.hero-panel-image {
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.hero-panel-image img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.hero-quote {
  margin: 0;
  padding: 0 0.35rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.hero-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-float {
  position: absolute;
  right: -0.75rem;
  bottom: -1.25rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
  max-width: 210px;
}

.hero-float strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.hero-float span {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.45;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
  padding-bottom: 1rem;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 39, 68, 0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0.5rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(30, 95, 138, 0.12), rgba(232, 119, 34, 0.08));
  color: var(--blue-600);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-900);
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* Sections */
section {
  padding: 6.5rem 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 3.25rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-500);
}

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

.section-head.center .eyebrow::before {
  display: none;
}

.section-head h2 {
  margin: 0 0 1rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.section-head p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--gray-600);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* About */
.about {
  background: linear-gradient(180deg, var(--sand-50), var(--white));
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: -1.25rem;
  bottom: 2rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.about-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: var(--orange-400);
}

.about-badge span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.about-content p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--gray-600);
}

.about-list {
  display: grid;
  gap: 0.95rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.06);
  box-shadow: var(--shadow-sm);
}

.about-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  flex-shrink: 0;
}

/* Services */
.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.08), transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-card {
  position: relative;
  padding: 2rem 1.75rem 1.85rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.07);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--orange-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 95, 138, 0.14);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(30, 95, 138, 0.12), rgba(30, 95, 138, 0.04));
  color: var(--blue-600);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-number {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gray-400);
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.22rem;
  color: var(--navy-900);
}

.service-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.96rem;
}

/* Fleet */
.fleet {
  background: var(--gray-100);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.95fr;
  gap: 1.25rem;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fleet-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.fleet-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.6rem;
}

.fleet-card-body h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  color: var(--navy-900);
}

.fleet-card-body p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.fleet-card-highlight {
  background: linear-gradient(160deg, var(--navy-900), var(--blue-600));
  color: var(--white);
}

.fleet-card-highlight .fleet-card-body h3,
.fleet-card-highlight .fleet-card-body p {
  color: var(--white);
}

.fleet-card-highlight .fleet-card-body p {
  opacity: 0.86;
}

.fleet-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.35rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.fleet-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
}

.fleet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-400);
}

.fleet-card-highlight .btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

/* Values */
.values {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}

.values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(42, 122, 176, 0.22), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(232, 119, 34, 0.12), transparent 26%);
  pointer-events: none;
}

.values .container {
  position: relative;
  z-index: 1;
}

.values .section-head h2,
.values .section-head p {
  color: var(--white);
}

.values .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.value-index {
  display: inline-flex;
  margin-bottom: 1.25rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange-400);
}

.value-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

/* Instagram */
.instagram-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-item:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 3;
}

.gallery-item:nth-child(3) {
  grid-column: span 3;
}

.gallery-item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 2;
}

.fleet-card img,
.about-image img,
.hero-panel-image img {
  transition: transform 0.6s var(--ease);
}

.fleet-card:hover img,
.about-image:hover img {
  transform: scale(1.04);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 21, 37, 0.82));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.gallery-overlay svg {
  width: 16px;
  height: 16px;
}

.gallery-item a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Quote */
.quote {
  background: linear-gradient(180deg, var(--sand-50), var(--gray-100));
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.quote-benefits {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.quote-benefits li {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.06);
  font-weight: 600;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.quote-benefits li svg {
  width: 18px;
  height: 18px;
  color: var(--orange-500);
  flex-shrink: 0;
}

.quote-form {
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.07);
  box-shadow: var(--shadow-md);
}

.quote-form-header {
  margin-bottom: 1.5rem;
}

.quote-form-header h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: var(--navy-900);
}

.quote-form-header p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  color: var(--gray-800);
  background: var(--sand-50);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(30, 95, 138, 0.45);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 95, 138, 0.1);
}

.quote-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-card,
.contact-actions {
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  background: var(--sand-50);
  border: 1px solid rgba(15, 39, 68, 0.06);
}

.contact-actions {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.contact-actions h3 {
  margin: 0 0 0.5rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.contact-actions > p {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.05);
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(30, 95, 138, 0.08);
  color: var(--blue-600);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-900);
}

.contact-item span,
.contact-item a {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--orange-500);
}

.cta-box {
  display: grid;
  gap: 0.85rem;
}

.cta-box .btn {
  width: 100%;
  justify-content: flex-start;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1da851);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.btn-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
  box-shadow: 0 14px 30px rgba(221, 42, 123, 0.18);
}

/* Location */
.location {
  padding-top: 0;
  background: var(--gray-100);
}

.map-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.25rem;
  align-items: stretch;
}

.map-info {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.06);
  box-shadow: var(--shadow-sm);
}

.map-info h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--navy-900);
}

.map-info p {
  margin: 0 0 1.5rem;
  color: var(--gray-600);
}

.map-info .btn {
  width: 100%;
}

.map-wrap {
  min-height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 39, 68, 0.06);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.68);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer-brand p {
  margin: 0;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.92rem;
  transition: color 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--orange-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .quote-grid,
  .map-shell {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .values-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-float {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-bottom: 6rem;
  }

  .hero-metrics,
  .form-row,
  .trust-strip-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    position: static;
    margin-top: 1rem;
  }

  section {
    padding: 5rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== INTRO — Vídeo de abertura ===== */
body.intro-playing {
  overflow: hidden;
}

.page-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  background: #000;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.page-intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-skip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s var(--ease);
}

.intro-skip:hover {
  background: rgba(255, 255, 255, 0.14);
}

.intro-unmute {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 3;
  transform: translateX(-50%);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 21, 37, 0.72);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.25s var(--ease);
}

.intro-unmute:hover {
  background: rgba(6, 21, 37, 0.88);
}

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

  .page-intro {
    display: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
