/* ====== GLOBAL ====== */

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

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #050505, #0a0a0f 60%, #0b0e14);
  color: #e8e8e8;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ====== ACCESSIBILITY ====== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #0d6efd;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid #4a9eff;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ====== GLASS EFFECT ====== */

.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
  border-radius: 18px;
}

/* ====== NAV ====== */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 10px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s;
  background: rgba(0, 0, 0, 0);
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-container img {
  height: 70px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a73e8;
  border-radius: 2px;
  transition: width 0.25s;
}

.nav-links a:hover {
  color: #4a9eff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  font-size: 1.6em;
  background: none;
  border: none;
  color: #f2f2f2;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ====== LANGUAGE SWITCH ====== */

.lang-switch {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 20px;
}

.lang-btn {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.lang-btn:hover {
  transform: scale(1.1);
}

.lang-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(0, 74, 173, 0.4);
  transform: scale(0);
  transition: transform 0.25s ease;
  z-index: 0;
}

.lang-btn.active::before {
  transform: scale(1);
}

.lang-btn img {
  width: 20px;
  height: auto;
  z-index: 1;
}

/* ====== HERO ====== */

.hero {
  height: 100vh;
  background: url('../images/hero.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-gradient {
  height: 100%;
  max-width: 560px;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.hero-gradient img {
  width: 220px;
  margin-bottom: 18px;
}

.hero-gradient h1 {
  font-size: 3em;
  margin: 0;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.hero-gradient p {
  font-size: 1.2em;
  margin: 6px 0 0 0;
  color: #e0e0e0;
}

.hero-desc {
  margin-top: 10px;
  font-size: 1.05em;
  line-height: 1.5;
  max-width: 460px;
  color: #dcdcdc;
}

/* CTA button in hero */
.hero-cta {
  margin-top: 24px;
  align-self: flex-start;
  font-size: 0.95em;
  padding: 12px 28px;
  border-radius: 30px;
  letter-spacing: 0.03em;
}

/* Scroll hint arrow */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ====== SECTION ====== */

.section {
  max-width: 1200px;
  margin: 120px auto 0 auto;
  padding: 0 20px;
}

.section h2 {
  text-align: center;
  font-size: 2.4em;
  margin-bottom: 40px;
  font-weight: 700;
  color: #fff;
}

.section,
.hero {
  scroll-margin-top: 90px;
}

/* ====== ABOUT ====== */

.about-text {
  flex: 1;
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.about-text p {
  margin: 0 0 16px 0;
  line-height: 1.7;
  color: #e6e6e6;
  font-size: 0.85em;
}

.about-text .mission {
  margin-top: 12px;
  font-style: italic;
  color: #8ab4ff;
}

.about-image {
  flex: 0 0 45%;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.about-tabs {
  display: flex;
  gap: 0;
  justify-content: flex-start;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-tab {
  padding: 10px 24px;
  cursor: pointer;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
  font-weight: 600;
  color: #6a7080;
  user-select: none;
}

.about-tab.active {
  background: transparent;
  box-shadow: none;
  color: #4a9eff;
  border-bottom-color: #1a73e8;
}

.about-tab:hover:not(.active) {
  color: #ccc;
}

.about-slider {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.about-content {
  display: none;
  align-items: stretch;
  height: 280px;
}

.about-content.show {
  display: flex;
  opacity: 1;
}

.about-text h3 {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .about-image {
    flex: 0 0 auto;
    height: 200px;
    border-radius: 0 0 18px 18px;
  }
}

/* ====== FACTS ====== */

.facts-wrap {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.fact {
  padding: 14px 12px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  border-radius: 12px;
}

.fact-number {
  font-size: 1.3em;
  font-weight: 700;
  color: #1a73e8;
}

.fact-text {
  margin-top: 3px;
  font-size: 0.75em;
  color: #d0d0d0;
}

.fact:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.35);
}

.fact.wide {
  grid-column: 1 / -1;
}

/* ====== MISSION ====== */

.mission-blue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 25px;
}

.mission-blue-card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  padding: 26px 24px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  cursor: default;
}

.mission-blue-card:hover {
  background: rgba(13, 110, 253, 0.14);
  border-color: rgba(13, 110, 253, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13, 110, 253, 0.2), 0 0 0 1px rgba(13, 110, 253, 0.15);
}

/* Stagger entrance animation */
.mission-stagger {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--stagger-i, 0) * 90ms);
}

.mission-stagger.stagger-visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-blue-card span {
  font-size: 1em;
  font-weight: 500;
  color: #fff;
  transition: opacity 0.25s;
}

.mission-blue-card:hover span,
.mission-blue-card:hover svg {
  opacity: 0;
}

.mission-desc {
  position: absolute;
  inset: 0;
  padding: 20px;
  font-size: 0.85em;
  line-height: 1.5;
  color: #e6e6e6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mission-blue-card:hover .mission-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ====== SERVICES ====== */

#services-widget {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sw-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
}

.sw-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  transition: opacity 0.4s ease;
  display: block;
}

.sw-photo-wrap img.sw-fade {
  opacity: 0;
}

.sw-photo-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 20px;
}

.sw-photo-label h3 {
  margin: 0 0 4px 0;
  font-size: 1.1em;
  font-weight: 700;
  color: #fff;
}

.sw-photo-label p {
  margin: 0;
  font-size: 0.78em;
  color: #aac4f0;
}

.sw-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sw-card {
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.sw-card.open {
  border-color: rgba(26, 115, 232, 0.5);
  background: rgba(13, 110, 253, 0.07);
  box-shadow: 0 6px 24px rgba(13, 110, 253, 0.15);
}

.sw-card:not(.open):hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
}

.sw-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  user-select: none;
}

.sw-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(13, 110, 253, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.sw-card.open .sw-icon {
  background: rgba(13, 110, 253, 0.25);
}

.sw-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.sw-title {
  flex: 1;
}

.sw-t1 {
  margin: 0 0 3px 0;
  font-size: 0.92em;
  font-weight: 600;
  color: #f0f0f0;
}

.sw-t2 {
  margin: 0;
  font-size: 0.73em;
  color: #7a90a8;
}

.sw-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s, background 0.3s, border-color 0.3s;
}

.sw-card.open .sw-arrow {
  transform: rotate(180deg);
  background: rgba(13, 110, 253, 0.22);
  border-color: rgba(13, 110, 253, 0.4);
}

.sw-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.sw-card.open .sw-body {
  max-height: 200px;
}

.sw-body-inner {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sw-accent {
  width: 3px;
  flex-shrink: 0;
  background: #1a73e8;
}

.sw-desc {
  padding: 14px 18px;
  font-size: 0.83em;
  color: #c8d8ed;
  line-height: 1.65;
}

.sw-desc p {
  margin: 0 0 10px 0;
}

.sw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sw-tags span {
  font-size: 0.72em;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(13, 110, 253, 0.13);
  border: 1px solid rgba(13, 110, 253, 0.3);
  color: #7eb8ff;
}

/* ====== GEOGRAPHY MAP ====== */

#chartdiv {
  width: 100%;
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
}

/* ====== GEO LIST ====== */

.geo-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.geo-list span {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.95em;
  transition: background 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.geo-list span:hover {
  background: #0d6efd;
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.35);
}

/* ====== CONTACT ====== */

.contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.contact-info {
  font-size: 1em;
  color: #dcdcdc;
  text-align: center;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Pulsing "online" dot */
.contact-pulse {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.contact-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.6); opacity: 0; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 500px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.field label {
  font-size: 0.9em;
  color: #d7e3f5;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: inherit;
  font-size: 0.95em;
  outline: none;
  transition: border 0.2s, background 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
  border: 1px solid rgba(0, 74, 173, 0.75);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.15);
}

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

.field input.invalid,
.field textarea.invalid {
  border-color: rgba(255, 77, 77, 0.7);
}

.error {
  color: #ff6b6b;
  font-size: 0.82em;
  min-height: 16px;
  font-weight: 500;
}

.form-success {
  text-align: center;
  color: #86efac;
  font-size: 0.95em;
  padding: 12px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.btn {
  border: none;
  cursor: pointer;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d6efd, #1a73e8);
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  font-family: inherit;
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.45);
}

.btn:active {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ====== FOOTER ====== */

footer {
  margin-top: 80px;
  padding: 50px 20px;
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #888;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.footer-logo {
  height: 50px;
  object-fit: contain;
  opacity: 0.75;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #4a9eff;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
}

.footer-socials a:hover {
  background: #0d6efd;
  transform: translateY(-2px);
}

.footer-socials img {
  width: 18px;
  height: 18px;
}

.footer-copy {
  font-size: 0.82em;
  color: #555;
}

/* ====== FLOATING SOCIALS ====== */

.floating-socials {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-btn:hover {
  background: #0d6efd;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.social-btn img {
  width: 22px;
  height: 22px;
}

/* ====== ANIMATIONS ====== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */

@media (max-width: 1024px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-blue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section h2 {
    font-size: 1.9em;
  }

  .hero-gradient h1 {
    font-size: 2.2em;
  }

  #services-widget {
    gap: 12px;
  }

  .sw-photo-wrap {
    height: 280px;
  }

  .sw-card.open .sw-body {
    max-height: 260px;
  }

  .sw-header {
    padding: 12px 14px;
  }

  .sw-desc {
    padding: 12px 14px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(5, 5, 10, 0.95);
    padding: 16px;
    border-radius: 0 0 14px 14px;
    width: 220px;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

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

  .mission-blue-grid {
    grid-template-columns: 1fr;
  }

  .hero-gradient {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
  }

  .hero-gradient h1 {
    font-size: 2em;
  }

  .hero-cta {
    display: none;
  }

  .footer-links {
    gap: 16px;
  }
}

/* ====== SCROLLBAR ====== */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
  background: #1a73e8;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4a9eff;
}
/* ====== PREMIUM ANIMATIONS ====== */

/* Fact cards — subtle shimmer sweep on scroll-in */
.facts-wrap .fact {
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.facts-wrap .fact::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
}

.facts-wrap.visible .fact::after {
  animation: shimmer 2.4s ease 0.6s forwards;
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 160%;  }
}

/* Service card open — animated left accent */
.sw-accent {
  width: 3px;
  background: linear-gradient(180deg, #0d6efd, #4a9eff);
  border-radius: 3px;
  align-self: stretch;
  flex-shrink: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sw-card.open .sw-accent {
  transform: scaleY(1);
}

/* Section headings — subtle underline draw on scroll-in */
.section > h2 {
  position: relative;
  display: block;
  text-align: center;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0d6efd, #4a9eff);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.fade-up.visible h2::after {
  width: 48px;
}

/* Hero CTA button — shimmer on hover */
.btn.hero-cta {
  position: relative;
  overflow: hidden;
}

.btn.hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn.hero-cta:hover::before {
  left: 125%;
}

/* Facts position relative fix for shimmer */
.facts-wrap .fact {
  position: relative;
}
/* ====== FLEET GALLERY ====== */

.fleet-subtitle {
  text-align: center;
  color: #8ab4ff;
  font-size: 0.95em;
  margin-top: -28px;
  margin-bottom: 32px;
  font-style: italic;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}

/* Item 1: top-left, normal */
.fleet-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

/* Item 2: top-right + bottom-right, tall (spans 2 rows) */
.fleet-item--tall {
  grid-column: 3;
  grid-row: 1 / 3;
}

/* Item 3: bottom-left */
.fleet-item:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

/* Item 4: bottom-middle, wide (spans 2 cols if needed) — just center col */
.fleet-item--wide {
  grid-column: 2;
  grid-row: 1 / 3;
}

.fleet-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: #111;
}

.fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
  filter: brightness(0.92);
}

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 110, 253, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s;
}

.fleet-overlay svg {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.fleet-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.fleet-item:hover .fleet-overlay {
  background: rgba(13, 110, 253, 0.18);
}

.fleet-item:hover .fleet-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Focus ring for keyboard nav */
.fleet-item:focus-visible {
  outline: 2px solid #4a9eff;
  outline-offset: 3px;
}

/* ====== LIGHTBOX ====== */

.fleet-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-in 0.22s ease;
}

.fleet-lightbox[hidden] {
  display: none;
}

@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  transition: opacity 0.18s;
}

#lb-img.lb-fade {
  opacity: 0;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 26px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.6em;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}

.lb-close:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.1);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2.2em;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-nav:hover {
  background: rgba(13, 110, 253, 0.4);
  border-color: rgba(13, 110, 253, 0.6);
  transform: translateY(-50%) scale(1.08);
}

.lb-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.lb-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.lb-dot.active {
  background: #1a73e8;
  transform: scale(1.3);
}

/* ====== FLEET MOBILE ====== */

@media (max-width: 768px) {
  .fleet-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }

  .fleet-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .fleet-item--wide        { grid-column: 2; grid-row: 1; }
  .fleet-item:nth-child(3) { grid-column: 1; grid-row: 2; }
  .fleet-item--tall        { grid-column: 2; grid-row: 2; }

  .lb-nav { display: none; }
}

@media (max-width: 480px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .fleet-item:nth-child(1),
  .fleet-item--wide,
  .fleet-item:nth-child(3),
  .fleet-item--tall {
    grid-column: 1;
    grid-row: auto;
  }
}