:root {
  --volant-blue: #1182c5;
  --volant-gold: #e6ad3a;
  --dark: #0b1620;
  --dark-2: #13222f;
  --light: #f7f8fa;
  --white: #ffffff;
  --text: #d9e2ea;
  --muted: #9eb0bf;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 4px 6px rgba(0,0,0,0.07), 0 10px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 12px rgba(0,0,0,0.08), 0 20px 50px rgba(0,0,0,0.18);
  --radius: 16px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: #111;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9998;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.emergency-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  z-index: 1000;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.emergency-bar a {
  color: var(--volant-gold);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top);
  margin-top: calc(-1 * env(safe-area-inset-top));
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease,
    opacity 0.2s ease;
  will-change: transform;
}

.site-header.nav--hidden {
  transform: translateY(-120%);
  opacity: 0;
}

.site-header.nav--pinned {
  transform: translateY(0);
  opacity: 1;
}

.site-header.scrolled {
  background: rgba(8, 18, 29, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  margin-top: calc(-1 * env(safe-area-inset-top));
  padding-top: calc(env(safe-area-inset-top) + 0px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  height: 150px;
  padding-top: 10px;
  padding-bottom: 0;
}

.logo {
  position: relative;
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

.logo img {
  width: 270px;
  max-width: none;
  position: relative;
  top: 0;
  transform: none;
}

.desktop-nav,
.desktop-cta {
  position: relative;
  z-index: 2;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active-link {
  color: var(--volant-gold);
}

.site-header.scrolled .desktop-nav a {
  color: var(--white);
}

.site-header.scrolled .desktop-nav a:hover,
.site-header.scrolled .desktop-nav a.active-link {
  color: var(--volant-gold);
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-arrow {
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 2px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  min-width: 290px;
  background: rgba(8, 16, 26, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 0.45rem 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  z-index: 1005;
  display: flex;
  flex-direction: column;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 0.9rem 1.1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    padding-left 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(230, 173, 58, 0.06);
  color: var(--volant-gold);
  border-left-color: var(--volant-gold);
  padding-left: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.desktop-cta {
  margin-left: auto;
  border-radius: 4px;
}

.btn-primary {
  background: var(--volant-gold);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 173, 58, 0.38);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  border: 2px solid var(--dark);
  color: var(--dark);
  background: transparent;
  border-radius: 4px;
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.15)),
    url("/images/EnhancedHeroImageDesktop.png")
      center top/cover no-repeat;
  background-attachment: scroll;
  color: var(--white);
  overflow: hidden;
  margin-bottom: -2px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 10, 10, 0.60) 0%,
    rgba(10, 10, 10, 0.38) 50%,
    rgba(10, 10, 10, 0.40) 100%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(230, 173, 58, 0) 0%,
    rgba(230, 173, 58, 0.6) 40%,
    rgba(230, 173, 58, 0) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 13rem;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  color: var(--volant-gold);
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.5rem, 8.5vw, 8rem);
  line-height: 0.88;
  max-width: 900px;
  margin-bottom: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero h1 span {
  color: var(--volant-gold);
}

.hero-subtext {
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 1.72;
  color: rgba(217, 226, 234, 0.88);
  margin-bottom: 2.25rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat h3 {
  font-size: 2.6rem;
  margin-bottom: 0.3rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.stat p {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

/* ============================================================
   INTRO SECTION
============================================================ */
.intro {
  background: linear-gradient(160deg, #f5f7fa 0%, #edf1f7 100%);
  position: relative;
}

.intro::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(11, 22, 32, 0.1) 50%, transparent 100%);
  position: absolute;
  top: 0;
}

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

.section-label {
  display: inline-block;
  color: var(--volant-gold);
  background: repeating-linear-gradient(
    45deg,
    rgba(230, 173, 58, 0.07),
    rgba(230, 173, 58, 0.07) 3px,
    rgba(230, 173, 58, 0.13) 3px,
    rgba(230, 173, 58, 0.13) 6px
  );
  border: 1px solid rgba(230, 173, 58, 0.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  padding: 0.3rem 0.85rem;
  border-radius: 3px;
  margin-bottom: 1.1rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  line-height: 1.0;
  margin-bottom: 1.1rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.section-heading p {
  color: #4d5d6b;
  line-height: 1.75;
  font-size: 1.06rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(160deg, #0f1e2d 0%, var(--dark) 100%);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12), 0 20px 40px rgba(0,0,0,0.18);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--volant-gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18), 0 30px 60px rgba(0,0,0,0.22);
}

.service-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: rgba(230, 173, 58, 0.1);
  border: 1px solid rgba(230, 173, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--volant-gold);
  margin-bottom: 1.35rem;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.65rem;
  letter-spacing: 0.01em;
}

.service-card p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1.5rem;
  font-size: 0.96rem;
}

.service-card a {
  color: var(--volant-gold);
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.service-card a::after {
  content: "→";
  font-size: 1rem;
}

.service-card a:hover {
  gap: 0.65rem;
}

/* ── Image Service Card overrides ── */
.service-card--image {
  padding: 0;
  border: none;
  border-left: none;
  background: #111;
  border-radius: 12px;
  position: relative;
  height: 340px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12), 0 20px 40px rgba(0,0,0,0.18);
}

.service-card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  display: block;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.service-card--image:hover img {
  opacity: 0.75;
  transform: scale(1.03);
}

/* Per-card image positioning */
.service-card--image:nth-child(1) img { object-position: left center; }
.service-card--image:nth-child(2) img { object-position: center; }
.service-card--image:nth-child(3) img { object-position: right center; }

/* Crossfade animation */
.img-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: none;
}

.img-slide--1 {
  animation: fade-out 8s infinite;
}

.img-slide--2 {
  animation: fade-in 8s infinite;
}

@keyframes fade-out {
  0%   { opacity: 0.85; }
  40%  { opacity: 0.85; }
  50%  { opacity: 0;    }
  90%  { opacity: 0;    }
  100% { opacity: 0.85; }
}

@keyframes fade-in {
  0%   { opacity: 0;    }
  40%  { opacity: 0;    }
  50%  { opacity: 0.85; }
  90%  { opacity: 0.85; }
  100% { opacity: 0;    }
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.service-card-eyebrow {
  color: #e8a84c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.service-card--image h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.2;
}

.service-card--image p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  margin: 0 0 14px;
  line-height: 1.5;
}

.service-card-link {
  color: #e8a84c;
  font-size: 13px;
  font-weight: 600;
}

/* Typography */
h1,
h2,
h3,
h4,
.hero-eyebrow,
.stat h3,
.desktop-nav a,
.mobile-menu nav a,
.btn,
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
}

/* ============================================================
   WHY VOLANT
============================================================ */
.why-strip {
  background: linear-gradient(160deg, #0d1a25 0%, #0b1620 60%, #09131d 100%);
  padding: 6rem 0;
  position: relative;
}

.why-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,173,58,0.4), transparent);
}

.why-strip::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.why-heading {
  margin-bottom: 3.5rem;
}

.why-label {
  color: var(--volant-gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.why-heading h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(230, 173, 58, 0.08);
  border: 1px solid rgba(230, 173, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--volant-gold);
  box-shadow: 0 0 20px rgba(230, 173, 58, 0.08);
}

.why-text h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}

.why-text p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

/* ============================================================
   ABOUT PREVIEW
============================================================ */
.about-preview {
  background: var(--white);
  position: relative;
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview-content .section-label,
.safety-preview-content .section-label {
  margin-bottom: 0.75rem;
  color: var(--volant-blue);
  background: repeating-linear-gradient(
    45deg,
    rgba(17, 130, 197, 0.05),
    rgba(17, 130, 197, 0.05) 3px,
    rgba(17, 130, 197, 0.11) 3px,
    rgba(17, 130, 197, 0.11) 6px
  );
  border-color: rgba(17, 130, 197, 0.22);
}

.about-preview-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.0;
  margin-bottom: 1.25rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.about-preview-content p {
  color: #4d5d6b;
  line-height: 1.78;
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.about-preview-content .btn-outline-dark {
  margin-top: 0.75rem;
}

.about-preview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.about-stat {
  background: transparent;
  border: none;
  border-left: 4px solid var(--volant-gold);
  border-radius: 0;
  padding: 1rem 0 1rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  position: relative;
}

.about-stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e8edf2;
}

.about-stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--volant-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-label {
  color: #6a7f8e;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
   SAFETY PREVIEW
============================================================ */
.safety-preview {
  background: linear-gradient(160deg, #edf1f7 0%, #e8eef5 100%);
  position: relative;
}

.safety-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.safety-preview-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.0;
  margin-bottom: 1.25rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.safety-preview-content p {
  color: #4d5d6b;
  line-height: 1.78;
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
}

.safety-certs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a7f8e;
  margin-bottom: 1rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.cert-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid #dde3ec;
  border-left: 3px solid var(--volant-blue);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
}

.cert-badge svg {
  color: var(--volant-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   CONTACT CTA
============================================================ */
.contact-cta {
  background: linear-gradient(135deg, #0f1e2d 0%, #0b1620 60%, #091219 100%);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(230, 173, 58, 0) 0%,
    rgba(230, 173, 58, 0.7) 50%,
    rgba(230, 173, 58, 0) 100%
  );
}

.contact-cta::after {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,173,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.contact-cta-label {
  display: block;
  color: var(--volant-gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.contact-cta-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 0.9rem;
  max-width: 22ch;
  letter-spacing: -0.01em;
}

.contact-cta-text p {
  color: rgba(217, 226, 234, 0.75);
  font-size: 1rem;
  line-height: 1.78;
  max-width: 48ch;
}

.contact-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

.contact-cta-actions .btn-primary {
  border-radius: 4px;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.contact-cta-actions .btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: transparent;
  border-radius: 4px;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.contact-cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: linear-gradient(180deg, #091219 0%, #060e14 100%);
  color: var(--text);
  position: relative;
}

.site-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(230, 173, 58, 0) 0%,
    rgba(230, 173, 58, 0.9) 50%,
    rgba(230, 173, 58, 0) 100%
  );
}

.footer-main {
  padding: 5rem 0 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  padding-right: 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.35rem;
}

.footer-logo img {
  width: 200px;
}

.footer-description {
  color: var(--muted);
  line-height: 1.88;
  font-size: 0.95rem;
  max-width: 34ch;
  margin-bottom: 1.75rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link:hover {
  background: rgba(230, 173, 58, 0.1);
  border-color: rgba(230, 173, 58, 0.35);
  color: var(--volant-gold);
  box-shadow: 0 0 16px rgba(230, 173, 58, 0.12);
}

.footer-column h3 {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.footer-column li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.footer-column a {
  color: var(--muted);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--volant-gold);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--volant-gold);
  opacity: 0.75;
}

.footer-contact-list a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--volant-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.22);
}

.footer-bottom-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.footer-bottom p {
  color: #4a6070;
  font-size: 0.86rem;
  line-height: 1.5;
}