@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #0b1020;
  --surface: rgba(11, 16, 32, 0.72);
  --surface-soft: rgba(255, 255, 255, 0.08);
  --surface-strong: #ffffff;
  --text: #eef2ff;
  --muted: #b6c0dc;
  --dark: #10182f;
  --primary: #7c3aed;
  --primary-2: #a855f7;
  --accent: #f59e0b;
  --accent-2: #22c55e;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.28), transparent 32%),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 24%),
    linear-gradient(180deg, #090d1a 0%, #111933 54%, #0a1020 100%);
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(70px);
}

.page-shell::before {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.26);
  top: 10%;
  left: -4rem;
}

.page-shell::after {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.18);
  bottom: 8%;
  right: -5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(8, 12, 25, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
  width: var(--container);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.brand-text strong,
.brand-text span {
  display: block;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

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

.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 40px rgba(124, 58, 237, 0.38);
}

.button-secondary {
  color: white;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 14px 40px rgba(245, 158, 11, 0.24);
}

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

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.mobile-menu-button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 5.4rem 0 3.2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #efe9ff;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0 1rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
}

.hero p,
.page-hero p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

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

.stat-card {
  padding: 1.1rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat-card strong {
  font-size: 1.35rem;
  display: block;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-visual .main-media {
  border-radius: 30px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual .main-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-badge,
.floating-card {
  position: absolute;
  border-radius: 22px;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-badge {
  left: -1rem;
  bottom: 2rem;
  padding: 1rem 1.1rem;
  max-width: 220px;
}

.floating-card {
  right: -1rem;
  top: 2.5rem;
  padding: 1.15rem;
  max-width: 240px;
}

.hero-badge strong,
.floating-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-badge span,
.floating-card span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.section {
  padding: 2rem 0 5rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-header h2 {
  margin: 0.2rem 0 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
}

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

.feature-card,
.service-card,
.value-card,
.contact-card,
.legal-card,
.timeline-card,
.fleet-card,
.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.value-card,
.contact-card,
.legal-card,
.timeline-card,
.info-card {
  padding: 1.4rem;
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(245, 158, 11, 0.22));
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-card h3,
.service-card h3,
.value-card h3,
.contact-card h3,
.legal-card h3,
.timeline-card h3,
.info-card h3,
.media-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
}

.feature-card p,
.service-card p,
.value-card p,
.contact-card p,
.legal-card p,
.timeline-card p,
.info-card p,
.media-card p,
.list-card li,
.quote-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.media-stack,
.copy-panel,
.quote-card,
.video-panel,
.form-panel,
.side-panel {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.copy-panel,
.quote-card,
.form-panel,
.side-panel {
  padding: 1.6rem;
}

.media-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  padding: 0.65rem;
}

.media-stack img,
.media-card img,
.service-media img,
.video-panel video,
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-stack .tall {
  grid-row: span 2;
  min-height: 100%;
}

.media-stack img {
  min-height: 220px;
  border-radius: 22px;
}

.bullet-list,
.contact-list,
.legal-list,
.value-list,
.facts-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.bullet-list li,
.contact-list li,
.legal-list li,
.value-list li,
.facts-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
}

.bullet-list li::before,
.contact-list li::before,
.legal-list li::before,
.value-list li::before,
.facts-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
}

.service-grid,
.values-grid,
.timeline-grid,
.contact-grid,
.footer-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

.service-card {
  overflow: hidden;
}

.service-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
  background: #131c38;
}

.service-media img {
  min-height: 220px;
}

.service-body {
  padding: 1.5rem;
}

.service-tag,
.inline-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: #efe9ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

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

.media-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.media-card .media-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1rem;
}

.video-panel {
  padding: 0.6rem;
}

.video-panel video {
  border-radius: 24px;
  min-height: 100%;
  max-height: 520px;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.quote-card .quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  color: white;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.form-panel form {
  display: grid;
  gap: 0.95rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 18px;
  padding: 1rem 1rem;
  outline: none;
}

.input::placeholder,
.textarea::placeholder {
  color: #91a0c3;
}

.textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-card a.inline-link,
.inline-link {
  color: #f7c66f;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 360px;
  display: grid;
  align-items: end;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.page-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.18), rgba(8, 12, 24, 0.88));
  z-index: 1;
}

.page-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 760px;
}

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

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

.info-banner {
  padding: 1.35rem;
  border-radius: 26px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(124, 58, 237, 0.15));
}

.notice {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  color: var(--muted);
}

.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 9, 18, 0.72);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}

.footer h3,
.footer h4 {
  margin: 0 0 0.9rem;
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
  line-height: 1.8;
}

.footer-links,
.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8c9bbd;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.small {
  font-size: 0.92rem;
}

.center {
  text-align: center;
}

@media (max-width: 1100px) {
  .hero-layout,
  .split-layout,
  .video-grid,
  .contact-grid,
  .footer-grid,
  .service-grid,
  .timeline-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual .main-media,
  .hero-visual .main-media img {
    min-height: 420px;
  }

  .hero-badge {
    left: 1rem;
    bottom: 1rem;
  }

  .floating-card {
    right: 1rem;
    top: 1rem;
  }
}

@media (max-width: 820px) {
  .mobile-menu-button {
    display: inline-flex;
  }

  .nav-actions .button,
  .nav-actions .button-secondary {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: grid;
    padding: 1rem;
    gap: 0.4rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(8, 12, 25, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

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

  .hero {
    padding-top: 3.5rem;
  }

  .hero-stats,
  .gallery-grid,
  .values-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .media-stack .tall,
  .media-stack img,
  .service-media img,
  .media-card img,
  .media-card video {
    min-height: 220px;
  }

  .page-hero-content,
  .copy-panel,
  .quote-card,
  .form-panel,
  .side-panel {
    padding: 1.35rem;
  }

  .section {
    padding-bottom: 4rem;
  }
}

@media (max-width: 560px) {
  .navbar {
    min-height: 74px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero h1,
  .page-hero h1 {
    line-height: 1.02;
  }

  .hero-visual .main-media,
  .hero-visual .main-media img,
  .page-hero-card {
    min-height: 320px;
  }

  .hero-badge,
  .floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
